From 0fc1dc0e6a2525eb8060455cc991971b1b687580 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 11 Nov 2024 12:42:53 -0300 Subject: [PATCH] Update invidious docker compose files (Now more clean than ever --- invidious/README.md | 6 + .../invidious-external/docker-compose.yml | 60 + invidious/invidious-external/haproxy.cfg | 38 + invidious/invidious-vpn-2/docker-compose.yml | 217 +- .../invidious-vpn-2/gluetun/servers.json | 303403 +++++++++++++++ invidious/invidious-vpn-2/haproxy.cfg | 45 + invidious/invidious-vpn-2/haproxy/haproxy.cfg | 150 - invidious/invidious-vpn/docker-compose.yml | 216 +- invidious/invidious-vpn/gluetun/servers.json | 303403 +++++++++++++++ invidious/invidious-vpn/haproxy.cfg | 43 + invidious/invidious-vpn/haproxy/haproxy.cfg | 149 - invidious/invidious/docker-compose.yml | 160 +- invidious/invidious/haproxy.cfg | 39 + invidious/invidious/haproxy/haproxy.cfg | 123 - invidious/reload-config.sh | 6 + invidious/restart-all-backends.sh | 6 + 16 files changed, 607280 insertions(+), 784 deletions(-) create mode 100644 invidious/README.md create mode 100644 invidious/invidious-external/docker-compose.yml create mode 100644 invidious/invidious-external/haproxy.cfg create mode 100644 invidious/invidious-vpn-2/gluetun/servers.json create mode 100644 invidious/invidious-vpn-2/haproxy.cfg delete mode 100644 invidious/invidious-vpn-2/haproxy/haproxy.cfg create mode 100644 invidious/invidious-vpn/gluetun/servers.json create mode 100644 invidious/invidious-vpn/haproxy.cfg delete mode 100644 invidious/invidious-vpn/haproxy/haproxy.cfg create mode 100644 invidious/invidious/haproxy.cfg delete mode 100644 invidious/invidious/haproxy/haproxy.cfg create mode 100755 invidious/reload-config.sh create mode 100755 invidious/restart-all-backends.sh diff --git a/invidious/README.md b/invidious/README.md new file mode 100644 index 0000000..733e0f3 --- /dev/null +++ b/invidious/README.md @@ -0,0 +1,6 @@ +- ./invidious: Backend 1 without VPN +- ./invidious-vpn: Backend 2 with VPN +- ./invidious-vpn2: Backend 3 with VPN +- ./invidious-external: Backend 4 without VPN + +(invidious-external is not any different from invidious, is just the name that I used when I created the backend 4, I don't remember why but as they say: "If it works, don't touch it") diff --git a/invidious/invidious-external/docker-compose.yml b/invidious/invidious-external/docker-compose.yml new file mode 100644 index 0000000..19baa84 --- /dev/null +++ b/invidious/invidious-external/docker-compose.yml @@ -0,0 +1,60 @@ +# Docker compose file for Backend 4 of inv.nadeko.net + +services: + # INVIDIOUS CLEARNET + invidious: + env_file: + # Env file containing variables like TAG, INV_MEM_* + - .env + # Env file containing INVIDIOUS_* variables + - ../.env + image: "git.nadeko.net/fijxu/invidious:${TAG}" + restart: unless-stopped + mem_limit: ${INV_MEM_LIMIT} + mem_reservation: ${INV_MEM_RESERVATION} + cpus: ${INV_CPU} # Limit to X% of the CPU + deploy: + replicas: 4 + volumes: + - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw + - ./config.yml:/etc/invidious/config.yml:ro + environment: + INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" + depends_on: + - haproxy + healthcheck: + test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 + interval: 300s + timeout: 5s + retries: 2 + + # Without depends because haproxy is smart + haproxy: + image: haproxy:lts-alpine + restart: always + ports: + # Invidious + - "127.0.0.1:20100:8001" + # TOR + #- "127.0.0.1:20102:8002" + # I2P + #- "127.0.0.1:20103:8003" + # HTTP3-PROXY + # - "127.0.0.1:10061:8004" + # METRICS + - "127.0.0.1:20104:8404" + volumes: + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg + + ptgen: + image: git.nadeko.net/fijxu/youtube-po-token-generator:latest + cpus: 0.1 + restart: unless-stopped + environment: + - HOST=valkey-external + depends_on: + - haproxy + +networks: + default: + name: invidious-external diff --git a/invidious/invidious-external/haproxy.cfg b/invidious/invidious-external/haproxy.cfg new file mode 100644 index 0000000..fd2dfed --- /dev/null +++ b/invidious/invidious-external/haproxy.cfg @@ -0,0 +1,38 @@ +global + # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom + maxconn 8192 + # 777 perms for all sockets + unix-bind mode 777 + stats socket ipv4@0.0.0.0:8405 level admin + +resolvers docker + # To be able to use multiple replicas of invidious + # using domains + nameserver dns1 127.0.0.11:53 + +defaults + mode http + # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ + # Use another server if one takes too long to reply + retries 2 + option redispatch + timeout client 30s + timeout connect 30s + timeout server 120s + timeout queue 10s + http-reuse always + +# Prometheus for graphs +frontend prometheus + bind *:8404 + mode http + http-request use-service prometheus-exporter if { path /metrics } + no log + +frontend invidious + bind *:8001 + default_backend invidious + +backend invidious + balance roundrobin + server-template invidious 8 invidious:3000 check resolvers docker init-addr libc,none diff --git a/invidious/invidious-vpn-2/docker-compose.yml b/invidious/invidious-vpn-2/docker-compose.yml index 382ee0f..2489482 100644 --- a/invidious/invidious-vpn-2/docker-compose.yml +++ b/invidious/invidious-vpn-2/docker-compose.yml @@ -1,155 +1,77 @@ -# Docker compose file for ${DOMAIN} - +# Docker compose file for Backend 3 of inv.nadeko.net +# services: + invidious-extend: + env_file: + # Env file containing variables like TAG, INV_MEM_* + - .env + # Env file containing INVIDIOUS_* variables + - ../.env + image: "git.nadeko.net/fijxu/invidious:${TAG}" + restart: unless-stopped + mem_limit: ${INV_MEM_LIMIT} + mem_reservation: ${INV_MEM_RESERVATION} + cpus: ${INV_CPU} # Limit to X% of the CPU + network_mode: "service:gluetun" + volumes: + - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw + - ./config.yml:/etc/invidious/config.yml:ro + depends_on: + # - inv_sig_helper + - haproxy + environment: + INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" + healthcheck: + test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 + interval: 300s + timeout: 5s + retries: 2 + # INVIDIOUS CLEARNET invidious: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3000" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - # INVIDIOUS CLEARNET - invidious-2: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + invidious2: + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3001" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - # INVIDIOUS CLEARNET - invidious-3: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + invidious3: + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3002" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - # INVIDIOUS TOR - invidious-tor: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion" - INVIDIOUS_PORT: "3010" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - - # INVIDIOUS I2P - invidious-i2p: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.zzls.i2p" - INVIDIOUS_PORT: "3011" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 + invidious4: + extends: + service: invidious-extend + INVIDIOUS_PORT: "3003" # SIGNATURE HELPER - inv_sig_helper: - image: quay.io/invidious/inv-sig-helper - restart: unless-stopped - network_mode: "service:gluetun" - mem_limit: "512m" - init: true - command: ["--tcp", "0.0.0.0:12999"] - environment: - - RUST_LOG=info - depends_on: - - gluetun + # inv_sig_helper: + # image: quay.io/invidious/inv-sig-helper + # restart: unless-stopped + # network_mode: "service:gluetun" + # mem_limit: "512m" + # init: true + # command: ["--tcp", "0.0.0.0:12999"] + # environment: + # - RUST_LOG=info + # depends_on: + # - gluetun - http3-proxy: - image: git.nadeko.net/fijxu/http3-proxy:latest - restart: unless-stopped - network_mode: "service:gluetun" - environment: - DISABLE_WEBP: 1 - depends_on: - - gluetun + # http3-proxy: + # image: git.nadeko.net/fijxu/http3-ytproxy:latest + # restart: unless-stopped + # network_mode: "service:gluetun" + # depends_on: + # - haproxy + # - gluetun - # Without depends because haproxy is smart haproxy: image: haproxy:lts-alpine restart: unless-stopped @@ -157,15 +79,15 @@ services: # Invidious - "127.0.0.1:10080:8001" # TOR - - "127.0.0.1:10082:8002" + #- "127.0.0.1:10082:8002" # I2P - - "127.0.0.1:10083:8003" + #- "127.0.0.1:10083:8003" # HTTP3-PROXY - # - "127.0.0.1:10081:8004" + #- "127.0.0.1:10081:8004" # METRICS - "127.0.0.1:10084:8404" volumes: - - ./haproxy:/usr/local/etc/haproxy + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg networks: gluetun_network_2: depends_on: @@ -174,11 +96,6 @@ services: gluetun: image: qmcgaw/gluetun restart: unless-stopped - ports: - # THIS IS ACTUALLY THE PORT OF HTTP3-PROXY - # SINCE THE HTTP3-PTOXY SERVICE IS RUNNING - # UNDER GLUETUN NETWORK. - - "127.0.0.1:10081:8080" env_file: - .env cap_add: @@ -197,6 +114,16 @@ services: networks: gluetun_network_2: + ptgen: + image: git.nadeko.net/fijxu/youtube-po-token-generator:latest + cpus: 0.1 + restart: unless-stopped + network_mode: "service:gluetun" + environment: + - HOST=valkey-vpn-2 + depends_on: + - gluetun + networks: default: name: invidious-vpn-2 diff --git a/invidious/invidious-vpn-2/gluetun/servers.json b/invidious/invidious-vpn-2/gluetun/servers.json new file mode 100644 index 0000000..6527e65 --- /dev/null +++ b/invidious/invidious-vpn-2/gluetun/servers.json @@ -0,0 +1,303403 @@ +{ + "version": 1, + "airvpn": { + "version": 1, + "timestamp": 1721997873, + "servers": [ + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:5::2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.9.19.106" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:5::5" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.109" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:5::6" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.110" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:53:b08a:68c7:fb3b:ec5f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.155.178" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:53:2751:b011:52b5:b3ed" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.181" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:53:5513:3e06:b9a2:598a" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.182" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:b:faa9:4fd1:4875:e276" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.64.127.194" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:b:87a4:f86:450:7fd5" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.197" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:b:56a1:1cee:cbae:e194" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.198" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:a:78f8:16af:14f6:17f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.90" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:a:eb24:ad41:1640:8511" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.93" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:a:7fd9:2d41:32f9:6e1b" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.94" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:f:9ff8:eafb:3bb8:3c4f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.207.57.114" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:f:80eb:9a7b:3c0f:e4cf" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.117" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:f:fbe4:6628:e869:84f8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.118" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:9:49d9:6608:eceb:6822" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.114" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:9:28ca:421c:1d6:d189" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.117" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:9:8136:29d7:563f:9c7a" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.118" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:8:9b5f:d788:39c5:3301" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.162" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:8:1730:6aa8:4347:b506" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.165" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:8:a224:de0d:b5a7:d90a" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.166" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:7:1a57:eb84:b379:a27c" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.154" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:7:4e0d:f09c:900:fed8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.157" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:7:8d2d:ea10:2093:e495" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.158" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:75:25:722d:86d3:4565:bf1a" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.163.90" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:75:25:17cb:500a:be02:bc89" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.163.93" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:75:25:710:4ad1:8bb8:162d" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.163.94" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:30:d:6df1:6c92:a457:db3f" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.23.130" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:d:8c6:2ca6:8c95:3efd" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.133" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:d:4081:60c:298d:9f65" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.134" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:30:e:f5ff:9736:27b0:1afd" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.23.138" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:e:1b5f:6a17:ae55:6af3" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.141" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:e:cc9f:8a2c:11a9:6da0" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.142" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7145:0:1:e924:6de2:b32e:28a9" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.46.117.89" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:0:1:8df7:aef3:7cfa:9359" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.92" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:0:1:601e:256e:23ad:cab7" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.93" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:9:9:aed0:e223:e8dd:d27f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "87.101.92.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:9:b626:eb74:bd39:7646" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:9:6552:59d9:a42a:8cf0" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.174" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:9:3f:5db9:e0be:3d00:c0e7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "139.28.218.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:3f:14e4:ec70:70be:3dd5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:3f:1a41:aac3:5dbe:63c2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:6:ddb0:6fe6:c526:9e8a" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:6:c5ce:4032:c367:dc3a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:6:3dd6:5e5e:e452:4c1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.214" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:3:deae:466b:161e:2d24" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "162.219.176.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:3:d56f:433c:230f:b0ac" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:3:f19e:5185:3202:819e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:16:8a24:a1d6:81d5:caf" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:16:a6bd:92ac:ac9:cc2f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:16:b22a:c24f:69ca:7e42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:7:f062:3298:851e:7cd8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:7:7b23:837f:22f6:9b60" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:7:ec7c:8f59:8e13:e4e4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:30:84f1:1858:f60c:8ea" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:30:c97f:abf1:715d:18f4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.109" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:30:d8db:3034:e4a8:5fd2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:13:2b9b:7d03:9679:33d3" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:13:4f5e:882e:f2b6:df9f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:13:f9a2:1a35:a8ee:6cad" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.174" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:12:a847:3338:53bb:e8d3" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:12:65be:a5e:9919:2cbc" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:12:29c2:859:c15c:c453" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.166" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:17:621b:590c:ee14:76e8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:17:f090:f5ea:51bc:97b6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:17:728c:4b13:5bdd:fbfa" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.214" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:9:ad5d:f490:3982:a40" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:9:1485:1277:203c:bc91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:9:a765:215d:2bec:311" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:c:fab7:78e8:4f3a:6eda" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.214.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:c:6040:990d:db42:5d85" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.214.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:c:7a49:ae32:17cf:bd5a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.214.166" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:8:82ac:e2c1:7cf8:371c" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:8:43f8:ec8:f49b:9a51" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:8:b86d:25a1:7287:b273" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:9:15a2:d969:773f:e2be" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:9:9fe2:f306:be43:48a2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.245" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:9:c233:4906:ffba:a7d2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.246" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:a:7b9c:6b1:caf1:56e2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.250" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:a:58ba:4d7a:8cbf:b2b9" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.253" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:a:8f46:8400:31d5:677b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.254" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:d:8ee7:3366:303e:c465" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:d:ad00:5cdf:2c6:8210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:d:a233:590a:2a85:cc93" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:7:6ccc:a3ce:93d0:a3c7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:7:f2a9:8074:eabb:24d0" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.221" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:7:bae7:e11f:4555:149a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.222" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:e:df81:90c9:1699:6cd0" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:e:a723:7ad1:f110:39a4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:e:f7fb:a1a6:d988:f9ca" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.38" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:5:1855:336:8fe5:c428" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.186" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:5:b8b4:1d0b:765c:eb0d" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:5:20dc:5109:4d0c:2556" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.190" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:14:148c:a80:695e:b3db" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.178" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:14:2c8c:b6f2:37cb:b213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.181" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:14:1000:29ff:3b7e:58a7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:8:a57f:4e14:3b7d:e114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.226" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:8:6143:2b38:61c2:192e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.229" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:8:5392:5560:3d86:c8f1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.230" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:4:e7c:c2df:261c:492f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:4:5ac4:ddf:50b:2339" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:4:2061:3845:8659:db7f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:6:99d7:1e07:2e9f:c203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:6:d799:80af:36f1:1847" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:6:e003:1927:3fb:927e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:f:2121:4068:2c46:5bae" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:f:65e2:b4c1:9d9:c1fd" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.45" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:f:5524:b2c9:5779:4a8a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.46" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:18:e41c:3b51:1e8:2f77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.208.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:18:b4e4:894c:a64c:c8c4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.208.244" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:18:3a6c:bcca:1bbc:506e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.208.245" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:15:dc3c:532c:3a38:ebb8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:15:bd9f:c09d:fa78:85e6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:15:5ed5:e4f9:4090:ce16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:5:7faa:b55a:a5ee:f79f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:5:8e8c:6c8d:b249:3a6b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:5:71e0:4725:b7ad:6f09" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:10:1e9d:9651:27be:dda0" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:10:f9ce:bc25:b363:501b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.61" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:10:9944:af90:d4a6:e523" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:550:907:23:151c:dfa8:39e1:3319" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "199.189.27.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:550:907:23:8e06:9684:b4b:55d" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "199.189.27.125" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:550:907:23:5e78:2b3:1c09:95ce" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "199.189.27.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:103:13:994:7791:5e6e:49bb" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.193.135.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:13:8d0b:dd75:bd89:9bb3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.245" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:13:5417:bfd4:e093:8c54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.246" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:e:660c:f5c5:214d:b950" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.66" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:e:a3a9:bd8a:793d:1c49" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.69" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:e:a135:140f:4cf:90eb" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.70" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:103:a:89b1:7558:84db:a2f6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:a:780:76d3:5172:4961" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.29" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:a:481b:9c3e:1890:fb34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.30" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:f:35b5:d1d1:8647:8e42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:f:c3a0:fe2b:6311:5aa2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:f:544d:680e:116d:1f2a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.78" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:c:5f66:c4ab:1f9f:2f13" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:c:a525:824c:a571:53d1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:c:1d47:abf6:6651:4189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.54" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:d:f80d:dfc8:66e3:6635" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:d:2342:142:134b:8478" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.61" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:d:c191:a9da:1689:55db" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.62" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:5:a575:5312:9d46:8c58" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.174.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:5:f529:45a0:e2b8:7494" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.29" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:5:396d:3a49:83eb:7c91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.30" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:9:3758:d987:4043:a5" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.174.154" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:9:aa94:8a80:1498:7904" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.157" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:9:289a:c0e1:e8c5:3e11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.158" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:15:670:796c:cf97:d57b" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.238.166.234" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:15:91af:eb57:2fdf:c9f9" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.166.237" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:15:ca8a:888d:5c48:4812" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.166.238" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:2" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.195.237.202" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:5" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.195.237.205" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:6" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.195.237.206" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:36:3:d8b1:962a:170d:6639" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.217.242" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:36:3:2935:d57f:fc05:83e0" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.217.245" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:36:3:f40e:7b16:64d6:d4e" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.217.246" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:225:ca29:7f52:5a20:829d" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "83.143.245.50" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:225:1b06:18f:a622:b2af" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.53" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:225:cf65:ed0d:1e1a:812b" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.54" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:5:6000:4b07:7b1c:4c0" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.104.184.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:5:623e:50fc:8023:a65" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:5:68b8:f9de:d736:eb9b" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.46" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:97:ec6c:776:1763:3ee7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.186" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:97:dad1:f205:28f1:bff5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.189" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:97:346e:fd9:50df:ed4e" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.190" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:9a:9a5a:d9af:457a:bae8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.242" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:9a:13e6:576a:41cb:a5f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.245" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:9a:3e58:5f60:4e82:b316" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.246" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:9a5:8bac:eb1d:d313" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:a571:6e7e:29e0:abf6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.236" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:94d4:7902:d543:928a" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.237" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:98:5307:a6cf:d139:d129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.226" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:98:ba0a:dabc:45a8:c67c" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.229" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:98:3571:836c:c67:41c7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.230" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:99:744e:9a79:9f43:89c7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.234" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:99:fbf6:b62a:86df:b560" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.237" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:99:97c3:b668:de04:c4da" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.238" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:96:b054:682e:3392:c1ff" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:96:226a:3a84:c3d8:dba8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:96:7326:32c4:28fb:e568" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.182" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:b240:4a82:7fb6:af29" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.219" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:dbf9:52a9:a0e2:77f1" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.212.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:f0a5:80ba:ef48:de2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.212.217" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:d4fa:1823:c0b2:2a77" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.222" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:da70:5acb:fd13:14a0" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:b138:138c:df70:8c61" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.241" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:c205:0:1031:79f8:734d:afb7:43c" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.143.191.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:c205:0:1031:c1d7:aa8c:4a26:1d03" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.238.229.56" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:c205:0:1031:9d9a:a34e:a732:8ce4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.238.229.57" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:88:82:9a09:c44:b107:b4e9" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.94.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:88:82:2d52:54b8:3cac:f460" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:88:82:600e:6ed9:495b:57d7" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.94.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:96:e2ec:6fe7:32b6:9cd6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "45.87.213.82" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:96:f2f:2a9a:97a5:85ec" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "45.87.213.85" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:96:b6e1:1f94:3b03:ddb1" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "45.87.213.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:ca:3ad8:8644:96a6:af07" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.76.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:ca:26f1:427b:b581:da6b" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.45" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:ca:595e:8e3c:d86e:4f7" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.46" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:c9:1b4a:ae20:2a46:c924" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.76.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:c9:f9ca:4c15:a65c:a3e1" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.37" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:c9:f194:8d7a:3065:a3b0" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.38" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:47:4ee1:cdb5:f557:af47" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.210.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:47:5111:20cb:5fef:56c6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.213" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:47:9aa3:223e:5855:f5d6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.214" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:2:d7fb:2673:f554:6a5e" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.252.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:2:3158:5f3e:e17f:87fc" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.252.125" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:2:5ac0:4030:9411:2802" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.252.126" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:8:1268:44e:9318:a772" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.28.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:8:c8fe:8acd:4880:8d64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.109" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:8:6e2e:89db:741:eecb" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:48:80d0:7484:9c02:3800" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.210.218" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:48:3fca:64b4:5472:7b27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.221" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:48:367b:f5ef:9f5c:15f" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.222" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:12:368d:8acf:125d:8d69" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.148.16.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:12:a578:168a:48eb:3b95" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.148.16.213" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:12:9757:de3b:4967:7d25" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.148.16.214" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:226:fb67:aedb:24aa:1132" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "46.183.217.98" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:226:cb2d:9bdf:4fc8:7f2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.217.100" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:226:1f25:a667:d999:a795" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.217.101" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:238:1899:59ea:5b22:45dc" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "109.248.148.242" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:238:4cd3:f033:ece5:5b0a" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "109.248.148.244" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:238:ea40:7f5e:53c5:7b0" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "109.248.148.245" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:237:9487:5d:6cf8:e1a4" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "46.183.218.146" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:237:a1fb:cb4e:7bc4:34d8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.218.148" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:237:b6db:30d5:1d92:40fb" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.218.149" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:239:104f:d330:da5b:78f5" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.38.135.2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:239:5837:4b2:a15c:3e4c" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.38.135.4" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:239:9ae5:7b53:15c3:eb06" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.38.135.5" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:19:8893:6bd5:2100:e298" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:19:7bf4:e654:150e:ab82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:19:72c9:e006:1e27:c1ba" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:24:a413:5ebd:c707:c896" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.116" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:24:6cca:8384:e253:7a06" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:24:fffa:7669:642a:e166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.120" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1111:c424:6a46:2d7f:e74a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.170" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1111:c591:12bd:c401:e819" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.173" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1111:e737:d280:709c:2e1d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.174" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a19:a85d:ab42:5a64:356d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a19:14c6:1:cc77:9ce9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a19:ec92:7e10:b10b:311c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.203" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a18:8388:c010:29e2:f0b3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a18:5f0e:f803:bdfb:990c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a18:8270:b974:cc65:9211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1212:bb81:398d:be57:5862" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.242" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1212:b6c0:ce3e:c42d:28ff" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.245" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1212:6b1e:c39:8bd:14d9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.246" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a22:492d:1cbd:c5aa:5ee3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a22:bbd9:de4e:f4b:84a2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.217" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a22:c6c5:5d39:54a2:bbf8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:29:63e7:28f7:d677:bc91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:29:1636:4986:4c28:ca88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:29:1354:d6fb:b5c1:7a50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:37:801b:661c:47b5:7b5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:37:98e9:10:e8d6:d4d8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:37:1de2:6a0f:a5cd:d88f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:2:587c:48ab:9c4c:3e58" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2:60aa:96cd:7e99:dcd" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2:5384:303b:6bb8:ac44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.173" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a20:4ecc:3a41:7adb:f632" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a20:5860:e135:af08:94c2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.207" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a20:d5b6:2a67:7784:c7b7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:16:f876:b7fb:a4dc:613d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:16:46b2:3237:652b:4584" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:16:2570:ade3:292f:f2fe" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.168" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:46:bace:c512:7a73:fdc8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:46:7ed0:3ba6:ba90:6c6b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.231" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:46:c942:50ff:977e:5a61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.232" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:1911:dfe8:8ae6:5ae7:bf7e" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1911:97d2:d489:5267:5e6e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1911:a8c0:6dba:ff3a:71f4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.22" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a21:d76d:58a7:1b12:c79d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.209" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a21:b752:a4b3:ebaf:1614" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.212" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a21:751d:64f9:71e4:5e03" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.213" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1101:2c68:6c38:1f47:c621" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1101:421c:bbb6:d39f:f91c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1101:2141:817d:cef3:5311" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:38:f845:34ab:88a9:ee3d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:38:397a:7d3:3124:9dc3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:38:23e6:624b:1d5:9335" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:52:de5e:a549:85d6:7ce0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:52:6fe6:1b06:cf66:b79c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.221" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:52:27e:cda6:7718:b18e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:bbbb:6895:15dd:75c0:cc0a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:bbbb:b07a:c2e:d3fe:a074" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.141" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:bbbb:88b1:167d:93be:e585" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.142" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:18:f3eb:d923:5818:7e13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:18:5ac5:3314:8260:3523" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:18:f9df:11aa:ce10:952e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.173" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:12:260b:e1ba:da6e:503b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:12:62e5:f415:5aee:5632" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:12:a912:7997:679c:60a6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a23:819a:3845:c56b:4176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a23:a62b:b2af:1770:f465" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a23:6c11:c840:c42a:2a38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.223" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2427:6120:4f03:ee61:bc16" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2427:62d8:873d:55e4:a4d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.165" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2427:2ad7:4c2b:5338:2312" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.166" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:55:aac9:ec32:f385:e6af" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:55:f5d0:88df:14b8:45fc" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:55:2127:e0b4:deb:c5aa" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:49:4958:5797:6ca3:7b01" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:49:cee8:8539:eb6:2633" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:49:95e2:979b:5ad5:acc7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2838:d65a:1aea:b85f:ba9b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2838:2ec2:d4c7:9b9c:9b95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.213" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2838:f6d5:ddc:1be9:b29f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1:f617:fb36:c2fc:b12a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1:1c5b:4c60:d126:8ad5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1:6054:ef81:b787:2f52" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.168" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:51:3623:6c3b:102f:1bb0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:51:4a50:89b7:f8c1:1943" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.213" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:51:9528:fb9:3102:4a7a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2329:e5f:35d4:4404:ef9f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.39" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2329:cf6c:1a64:36c3:d8f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2329:189d:8b46:414b:7fc6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.43" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:cccc:77c3:d29c:6866:bf5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.146" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:cccc:d09c:258d:5606:a5fe" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.149" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:cccc:1c34:7e0b:dc89:7a7d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.150" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:28:954d:b058:9910:9359" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:28:2857:2aa3:4f9f:10e4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:28:6671:1594:b03:75f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:2a:9029:4313:5ab0:b295" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2a:d462:e87d:f991:40b7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2a:d9f:931a:80b5:2314" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.104" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:32:eacf:9278:e835:706d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.93" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:32:729f:5efe:fdc9:6a8c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:32:b03e:51a4:1fba:6567" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:44:56:9663:8c15:434" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.39" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:44:a01e:d1ec:1f2:569" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:44:da97:aa89:2b5:6449" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.43" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:53:7606:2294:c831:199a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:53:fb26:6:808e:1af3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:53:7263:21de:a64d:11ce" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:43:118f:9a4d:f657:84bc" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:43:fa9c:f373:dd9d:328" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:43:d1e6:37a:4cc5:3853" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.38" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:54:cbd3:a081:844f:51cb" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:54:6f94:29e4:55c6:bd1c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:54:2f21:670:8b15:169c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:1936:ecb4:560a:11c0:9616" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.23" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1936:3ec2:989e:875f:31a9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1936:95bb:b395:345b:ea92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.27" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:17:559f:bc01:4a0b:38b0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:17:902b:1d37:c2a6:f611" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.87" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:17:f895:acc:42b8:9bf" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:11:36de:7576:8bb7:f679" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:11:8e36:2ae7:895f:a750" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:11:aed1:73d0:cc7f:a8dc" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1010:69af:95fa:4f45:5483" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1010:c605:13fd:8817:ea47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.181" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1010:2321:240:dd97:9f45" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.182" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2429:ce5c:4a68:65d1:f2ca" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2429:a53d:15e4:f299:703" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.170" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2429:dd04:a55:c742:c801" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.171" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:34:5e9a:62db:20c7:365c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:34:c9a:4741:fb26:a732" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:34:f876:c501:12d9:955f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a24:d063:dc07:bfbf:ad9c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a24:fa8e:3d94:7292:f00e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a24:db60:c5df:21d8:ee62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.228" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:eeee:3806:8681:cc0f:fff4" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:eeee:cee4:e14f:289b:fc03" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.165" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:eeee:a80f:5c4d:bdc0:370d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.166" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:88:237c:f86f:2662:84a6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.176.134" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:88:65db:a2fb:8419:e15e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.176.140" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:88:9f4a:7bcf:6a0f:bc00" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.176.141" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:42:3891:bb85:78df:984" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:42:efac:2ed7:d1db:755c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:42:41f:dac6:f08b:a6ed" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:27:a25b:9b24:661:38eb" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:27:6058:f06:87bd:8396" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:27:e008:9772:9a50:556a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:31:d489:331e:bd10:fa04" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:31:5c9d:417b:4b59:337" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:31:a2a0:e500:47f5:14a7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.92" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1414:dd22:1f73:62ba:917" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1414:f3e3:2b3e:f599:26a0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.205" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1414:7541:6c01:3452:ba8f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.206" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:5:9d:b529:46dd:97c3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.153" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:5:c3f2:a35b:10ce:5e53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:5:c116:3c20:d3a:baeb" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.157" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:50:7c70:8611:c3d4:4ad5" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.248" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:50:36:8f37:ebb9:c75e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.251" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:50:1fdc:2bca:7f4f:86de" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.252" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:41:ecca:3296:1054:804e" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:41:5fc:e9c5:4a11:86b9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.27" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:41:bd2b:d6a4:aa27:ff8e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.28" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:48:6802:1269:faa0:14a0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.238" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:48:8aae:32d1:a3e1:894a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:48:a851:8e4e:a689:6674" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.242" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a25:6b7c:a435:93a7:fc12" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.229" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a25:2a92:45f5:9035:6032" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.232" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a25:4a60:bc90:1337:c507" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.233" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:99:5294:9bb7:8fe7:b255" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.178.166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:99:dc6f:5902:eea5:8e43" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.178.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:99:1276:b9a3:2b0e:a241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.178.170" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:8:7cdd:c8f0:208a:a6c0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:8:cb15:cd59:8603:230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.151" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:8:4f8d:4e26:8217:2a34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.152" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:47:a1a1:7fe0:f3d3:6900" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.233" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:47:3945:3974:9f70:4e43" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.236" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:47:b7e6:1020:aa99:5527" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.237" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:3a:7846:1698:644a:f794" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3a:404b:8023:f06f:c9a7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.86" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3a:2107:ac45:8bea:d885" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.87" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a26:23d9:8019:fdf1:dfc8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a26:840d:35ca:d39b:7d65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.237" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a26:5b47:455c:8e8f:7984" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:4a:7919:e379:a5a4:bfda" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.19" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4a:66a3:65a1:d1d5:e86b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4a:189c:e096:21e:ca6e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.23" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:dddd:1fc:e122:2dc8:9377" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.154" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:dddd:e685:18e2:17fd:c42b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.157" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:dddd:59ab:78fe:39d7:f8bb" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.158" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2330:6c2d:ae93:7dc3:4a73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2330:f0c8:18af:75f6:baec" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2330:8a48:66ef:74a1:2fb0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.38" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:39:1e5d:c299:3e8b:f26c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:39:ebff:5ba1:f41b:fab0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:39:d3a9:6767:1c31:2aa" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:33:92d6:e4ab:4c6b:140f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:33:d704:c857:4207:c202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:33:2be6:88b:a705:448b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.102" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1001:15e5:255f:91b1:acf2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1001:ec33:a378:62ad:7300" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.189" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1001:7019:a8c4:16cc:36ee" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.190" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:6:78ae:4387:607b:1c31" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.137" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:6:f60e:9883:2474:478f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.140" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:6:34ec:1a83:d7a2:d993" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.141" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:4:23d6:1351:861c:d5a9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.132" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4:67ed:f103:150d:105d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.135" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4:e2fd:b74f:bc7c:df54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.136" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1616:eecf:fa10:bebc:3f8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1616:4380:8834:bddf:3f21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.237" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1616:431:92b6:e9a:2bb0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2430:644c:e7f6:5cf7:562b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2430:463e:d601:697b:a2f0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.175" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2430:e19a:8f8b:4174:75f3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:3:3631:b8e:fa96:434" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3:dbe1:c320:4986:a891" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.151" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3:1e35:d062:9b5b:33a9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.152" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2400:fa80:4:f:3f4:322f:1abd:ede4" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "103.231.91.58" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2400:fa80:4:f:1db5:74df:4bb2:c121" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "103.231.91.61" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2400:fa80:4:f:a2f2:5a7:b8a6:d930" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "103.231.91.62" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2403:7000:8000:160::6" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "120.138.16.100" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2403:7000:8000:160::8" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "120.138.16.103" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2403:7000:8000:160::4" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "120.138.16.104" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:21:f50:6e6a:4419:b1de" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.194" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:21:5956:4255:41cb:da30" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.197" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:21:d4e4:add8:99:3fd1" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.198" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:22:9f73:11d5:96d8:f0bc" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.170" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:22:4340:77ed:b03a:e954" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.173" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:22:3cfe:32ad:92e0:4ceb" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.174" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:3:b8e5:e794:cf69:4139" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.206.225.50" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:3:ee14:ac76:6ff7:136f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.53" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:3:d567:a112:313e:7f6b" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.54" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:23:db1b:cad:90c0:c5b3" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.162" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:23:3295:eb16:e20d:90bc" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.165" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:23:48dc:ce06:9f17:d462" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.166" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:4:47d2:9c39:d8e2:98da" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.206.225.58" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:4:4f25:c151:3f62:dec6" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.61" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:4:d11d:2534:27be:f0dc" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.62" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a04:9dc0:c1:53:cff3:6078:912d:4031" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.207.102.162" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a04:9dc0:c1:53:d4f2:d93:d52d:8627" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.102.165" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a04:9dc0:c1:53:fd97:f6a8:9606:1356" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.102.166" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:7d:1e11:7105:2f2:a334:918a" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "152.89.160.130" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:1e11:769e:2617:a577:b9c4" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.133" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:1e11:3a31:3516:7420:69e5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.134" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:7d:41:7ec9:76d3:9223:96e8" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.111.18" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:41:5947:48ee:cbd2:c8c3" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.111.21" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:41:79cb:753c:3dbb:4e6a" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.111.22" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:3:4bc7:5ce2:aa37:7f12" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.210" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:3:fa8:57a8:89fe:cbe9" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.213" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:3:f1b8:e5d2:5aa3:fdbf" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.214" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:2:37d1:e955:6117:151e" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.202" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:2:8271:420:424f:8efe" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.205" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:2:5b46:a787:f556:3b6b" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:4:bc8c:6f80:9d39:d338" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.218" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:4:245:77d5:936e:5f61" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.221" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:4:59d9:aa3a:eecc:8e1" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.222" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:5:fbe4:e700:c096:b77c" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.117.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:5:c0cb:7dc5:5aa7:84c6" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.117.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:5:dd09:d6a8:ea67:9fd7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.117.134" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:df1:800:a00e:4::fbe7" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "209.58.173.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a00e:4::8976" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.173.159" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a00e:4::bd28" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.173.160" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:c:9770:897a:948b:e484" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "92.119.178.2" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:c:fd83:58bb:e443:8a8c" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "92.119.178.5" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:c:b1ae:9d33:b667:9a8f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "92.119.178.6" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:df1:800:a007:4::ebe8" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "209.58.183.86" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a007:4::2f8c" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.183.81" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a007:4::6cdf" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.183.83" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:0:183e:1c9a:e881:1d46" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:0:ee2e:8b26:c3d2:5371" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:0:1ada:98ee:f867:6b91" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.134" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:35:11::3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.183.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:35:11::5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:35:11::6" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.6" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:23:13:ad52:937:4aa0:9315" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.93.182.170" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:13:f3b9:3ff5:7cc3:2a0b" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.173" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:13:5018:fcb1:23f4:59d1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.174" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:23:11:f237:6c93:5ca8:c220" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.99.104.34" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:11:9819:fd0:4752:7faf" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.99.104.37" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:11:776a:3d38:b55e:8b6f" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.99.104.38" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:20:36ca:12cf:b499:e24a:76cf" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "128.127.104.79" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:20:6725:f175:9093:ea29:cce1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.104.82" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:20:6340:af27:b11a:5b60:966b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.104.83" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:26:a3f:45d7:1963:738f:a40" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.142.76.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:26:69b0:c974:bc02:d085:9548" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.76.246" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:26:4ba9:3e2e:98bc:6a3f:8645" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.76.247" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:2c:8b38:81b5:979:9ec9:7eb5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "128.127.105.183" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:2c:ff98:850b:32dc:ee4d:6136" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.105.186" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:2c:7fa4:b436:fa8a:28ea:c26b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.105.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:4a:f517:1b36:30f9:fb4f:7a" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "31.3.152.99" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:4a:aec:b28c:c295:9d35:9255" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.102" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:4a:c713:52c6:1b09:c49b:cf94" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.103" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:5266:e057:4741:4eab" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.149" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8355:c8c2:abff:9973" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.170" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f784:2492:bf71:d0f5" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.177" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:c387:1aa1:1a02:3d96" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.142" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:51bb:593c:be29:6a15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.178" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e4c:1f54:e48:244e" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.220" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:17a0:9901:1c49:77f5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.147" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e98c:b04d:f4e1:5b01" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.198" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:19f8:48ea:38de:93a6" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.199" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:b58b:4bda:3aaf:1123" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8817:f0a4:5aab:51d6" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:dc6d:7671:ed8c:5a14" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.201" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:dd7a:6003:4fa8:9a5e" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.151" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8e72:2642:bcd:b100" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.204" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:c7af:33b5:8a3b:53f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.205" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:c838:5fba:2b90:8c7b" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e175:6c2c:5236:a378" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.206" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:5fad:8a1a:8862:fd4b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.207" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:1b34:9d9f:3b6a:4266" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.141" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f169:6e02:3df:26cd" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.208" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:dc9e:4d3c:634d:a337" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.209" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:1c53:8df6:8f3:1c63" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.148" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8886:2a70:30c6:fdff" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.210" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e244:b5b7:570f:897c" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:e93c:6680:a365:6f8f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8944:b880:48e1:e02d" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.216" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:c16:50a2:5680:6014" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.217" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:3b4e:42bd:578c:b761" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.146" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:7f63:7281:489d:9cef" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.218" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f631:b5ea:d6e5:3b5d" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:8:c4d0:d13a:3b31:4d" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.170" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:8:a59c:62d3:7664:de71" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.173" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:8:e160:155f:6fdd:e281" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.174" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:3:297a:d23b:d23d:4878" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.34" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:3:90d7:29d6:7c38:8a36" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.37" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:3:39e7:7830:4298:4e8c" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.38" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:5:b3d6:6f3c:a84c:920a" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.50" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:5:4c06:c19e:9601:ba1b" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:5:266f:3593:dc7d:2071" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.54" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:33:ce64:167a:b3a7:a04d" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "195.206.105.226" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:33:d622:dec0:fb22:5772" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.229" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:33:4c2:2e4a:97b9:df1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.230" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:4:35ea:7d3a:3199:5651" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.42" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:4:f8fd:c46b:5492:23ee" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.45" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:4:3d90:2a7c:ac1a:3bc6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.46" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:aa08:e000:4500:516e:bf4f:38dc:eab1" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.214.169.68" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:aa08:e000:4500:8b27:c782:5b23:5ea7" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.214.169.71" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:aa08:e000:4500:9b07:2ff6:c701:fff0" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.214.169.72" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:32:14c1:185f:f2c1:419" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "195.206.105.202" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:32:d4f9:aa5a:5909:cb5c" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.205" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:32:7367:ac04:4a1:5d6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.206" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:7:555d:1c1:9028:69a2" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.58" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:7:94fe:8fa6:75b9:2981" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.61" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:7:4d7b:61d2:9644:d265" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.62" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7145:c1:1:d166:dd1b:2fa3:dbdb" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.142.69.159" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:c1:1:6838:aa89:d61c:fb42" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.69.162" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:c1:1:c862:16de:4698:4c9d" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.69.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:254:6a6c:3102:80b:f49c" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.195.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:254:4033:5ebe:59bb:fb17" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:254:c3e4:3d38:c2fc:f729" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:3:fc40:5828:6a44:a9ec" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.151.98.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:3:567c:6570:28cf:f83b" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:3:555b:62ab:db44:1cc" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:5c:7dc9:b4af:2e2f:d5b3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.238.150.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:5c:5e0e:3250:942a:a324" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:5c:bbf7:7cd5:e924:e51d" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:4:a7ca:8d0d:73e3:fefa" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.151.98.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:4:40eb:a546:b7d:4ff5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:4:8fe1:e72f:821c:68cd" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:253:8d3f:59fe:3d5b:6537" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.195.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:253:e0b:20cb:4dc3:cb" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:253:fa2c:b064:e9f4:79df" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:23f:3489:9869:3cec:3b2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:23f:8f09:c9ca:9bde:6145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:23f:f9d8:7c0f:f112:4c62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:22d:eb35:991:afd4:edd5" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:22d:f605:da99:39a2:9091" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:22d:dfa6:cc0b:7339:a53c" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:67:a13a:991e:8f00:42a9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2.58.47.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:67:49dc:d239:a8e7:f3c2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2.58.47.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:67:7ade:4021:310a:54c5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2.58.47.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:362::2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:362::5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:362::6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.150" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:11:87c9:cc38:b1ef:35af" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.249.74.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:11:fe20:e49e:a315:9558" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:11:b1f8:9873:a3b4:a1ba" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:12:3a11:54d3:72bc:d35e" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.249.74.217" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:12:276d:eb9d:680:cf35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:12:dda7:64a6:a40a:6136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.221" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:2e:134:a26a:57be:b1f4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.39.117.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2e:a61c:e4d3:882b:e0d0" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.117.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2e:d24e:2782:ee18:cc8e" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.117.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:2d:6c8:2fae:4f1c:79d5" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.39.116.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2d:1fad:4331:748c:2790" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.116.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2d:b922:18c7:b28d:cfb6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.116.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:8a:19fc:272b:ba42:ef59" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.145.126.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:8a:ea73:df51:cdb9:d10f" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.145.126.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:8a:db4c:483b:5064:6b10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.145.126.118" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:22:d8d9:a47:46ea:c409" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.101.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:22:ab80:2f64:7c28:6055" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.101.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:22:6819:ac7b:cbcf:349a" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.101.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:80:da13:bf15:4ed3:510c" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:80:3e18:eab5:1e62:c23c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:80:e650:5744:34b8:f317" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:81:315:1c4c:1dd9:df8f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:81:f613:9936:59c3:457d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:81:4a2d:6b0d:aa4:55d7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:78:e46c:8e0d:ee6b:38d7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:78:341d:f692:13d9:2f47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:78:e6eb:eca6:5a83:ac00" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:77:2b0:4c5e:d735:889f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:77:2fd0:79f8:a665:b1b7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:77:f5ed:9314:8e57:a6d0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:79:444e:be44:2b14:f669" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:79:bc3d:f66:afb8:dc55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:79:d18b:a37f:dcb:db4a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:14:2694:7c8e:1b5:7451" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.48.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:14:d85a:dd68:fe7a:5969" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.48.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:14:9e7a:b10a:b7d5:8d60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.48.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:16:ffe6:19bd:f8c8:2dc5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.35.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:16:4ea6:9202:e2f:55bb" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.35.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:16:44d9:1a4b:1e3a:bbfa" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.36.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:5:29c2:5398:fcda:b96d" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.52.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:5:533c:5df2:8b4b:8846" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:5:d635:da2:f7e6:c31c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.36.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:3:d1bb:cc80:ddeb:329c" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.52.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:3:559c:bb7d:8991:1556" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:3:de5f:cbeb:3370:3d94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:85:68a3:75b4:13ab:770a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "208.77.22.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:85:2676:a640:52fd:9f33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "208.77.22.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:85:dcf2:2ce4:fd2e:5d48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "208.77.22.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:e9a:dc69:49e3:d2c3:9084" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8ddb:17bb:d1ef:b10d:a80a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:103b:1e7:7f22:d8cb:78de" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:71f6:7ed3:2a9d:dbf2:7c60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:aaba:3843:a342:d669:3aa7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:650c:56a7:d4fc:72f6:5080" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:a0ba:da8b:684:dcaf:eb42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:2207:9d75:1ad9:29ab:d0db" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8c8e:b02a:1611:4289:afa4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:3e8c:66f3:ebb5:d7c:342b" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:89a8:494c:41c1:7691:8c69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:3b43:157c:2a60:1467:ab10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:47f6:bdb8:da66:62ea:570e" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:f103:50af:7bea:4d85:295b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:6c7a:1622:5c0e:8ff3:1410" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:675a:2752:344a:ee03:310a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8c8f:4f83:7c62:f8ce:3baf" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:2637:f7e2:7851:a7b:9c5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:1853:787a:a84a:9001:48cf" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:900c:15ec:df72:52c1:f8d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:c550:d2c7:b5ea:2cf9:bb9a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:e385:f1a3:4b56:62ed:a407" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:117a:c84b:fbfa:10f3:872f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:df08:2a2c:5134:cc1c:b1cb" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:dd1:eaa6:2ec7:4719:c40a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:529e:6f26:853b:a9e6:50d7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:7243:7a9f:cff7:73e4:ee8d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:1cf8:3bed:7ca:2b2e:de0e" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:d9a3:3edd:4027:a400:a3b6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:7f94:208f:44d2:94be:eca7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:2000:24:93e1:7280:afe2:edca" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.128.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:2000:24:18fe:2ed6:34d1:322f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.128.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:2000:24:41f7:2c61:b01c:85ec" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.128.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6000:1:4cf7:d125:ec49:5a67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "23.130.104.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6000:1:af9e:aa4a:1d29:369d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "23.130.104.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6000:1:251c:935a:34a5:b995" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "23.130.104.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:8:3d:bf35:b49d:b2c1:8537" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.132.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3d:8060:ff8d:7ab7:83c6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3d:9e4a:98f5:fee3:1369" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:4f:8000:e97d:9761:c3d1:c92f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.217.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:4f:8000:b939:7df7:f39d:1b9b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.217.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:4f:8000:e4f:6c06:63d:d3c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.217.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:8:3e:b389:fbfa:508a:1eca" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.132.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3e:eceb:3b20:e697:db07" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3e:878b:13a8:3b47:98ed" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:115:3c84:449d:745:1a2a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:115:d1c7:8be3:b81c:7f61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:115:9545:70e5:59c1:bad1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:116:2c72:ab:cb01:9170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:116:6f44:43b4:f142:4fc" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:116:28ed:b5a2:d58c:50a8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:119:e70b:b95c:6cba:844" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:119:8faf:6e0:f65c:157a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:119:4962:e9bb:f89:8237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:118:7198:83e3:8270:2076" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:118:6f2f:b9f5:4a1d:f28b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:118:7098:ead3:d1:fc06" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:117:b5bc:e71c:50c7:e266" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:117:3991:a318:86ca:3498" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:117:e196:f964:18b8:dcec" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:114:dfe3:fbc5:65d7:18ea" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.219.214.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:114:2228:eace:f22d:92f9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.219.214.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:114:8be5:d93d:429d:14f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.219.214.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:210:f80d:2cbb:2251:ebb" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.115.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:210:e5c3:6cc:3e2:a20f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:210:86a5:5dba:a852:c2c0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:211:f971:9290:8b46:e1b4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.115.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:211:2834:9360:67ce:e375" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:211:21a5:a39d:f23e:77b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:55:fac4:15b:cf9f:ab78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.36.111.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:55:87df:6588:1997:54e0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:55:8d:9c88:d86d:5383" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "156.96.151.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "156.96.151.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "156.96.151.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:4:d997:3a87:1597:3ad6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:4:7e1f:40e7:5011:6a99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:4:4c2c:13b5:9c7f:a113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:6:994d:de38:fedf:47a7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:6:11e8:4ce8:e69:730" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:6:94ad:78a4:779f:85d4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:7:875:e320:a63f:67ba" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:7:8b53:dd00:a20e:7b0c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:7:58d9:101:6109:787f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:8:c7d7:a0ca:fc7e:6395" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:8:487e:e5cb:c0ca:9c90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:8:274d:188f:3ce2:ead6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:5:41e0:91df:ee8b:fa" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:5:5200:5517:2b3b:f9b6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:5:cf41:c8d8:2e78:17b2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:4000:29:d67f:cbd5:be88:7d07" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.130.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:4000:29:661b:c962:9cab:d6b7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.130.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:4000:29:bb50:38e3:693b:73e3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.130.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:8000:26:1ce2:51b5:2ffa:67f5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.134.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:26:2525:f163:ad6f:63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:26:84a9:e5e9:dbe4:a176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:8000:27:d8fc:1704:c09:3549" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.44.134.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:27:f2c:9a28:8ca7:4421" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:27:79c9:926b:1820:a9c6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.10" + ] + } + ] + }, + "cyberghost": { + "version": 5, + "timestamp": 1695202495, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "87-1-al.cg-dialup.net", + "udp": true, + "ips": [ + "31.171.155.3", + "31.171.155.5", + "31.171.155.6", + "31.171.155.7", + "31.171.155.8", + "31.171.155.9", + "31.171.155.10", + "31.171.155.11", + "31.171.155.13", + "31.171.155.14" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "97-1-al.cg-dialup.net", + "tcp": true, + "ips": [ + "31.171.155.3", + "31.171.155.4", + "31.171.155.5", + "31.171.155.6", + "31.171.155.7", + "31.171.155.8", + "31.171.155.9", + "31.171.155.12", + "31.171.155.13", + "31.171.155.14" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "87-1-dz.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.228.146", + "176.125.228.147", + "176.125.228.148", + "176.125.228.149", + "176.125.228.150", + "176.125.228.151", + "176.125.228.152", + "176.125.228.153", + "176.125.228.154", + "176.125.228.155" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "97-1-dz.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.228.146", + "176.125.228.147", + "176.125.228.148", + "176.125.228.149", + "176.125.228.150", + "176.125.228.151", + "176.125.228.152", + "176.125.228.153", + "176.125.228.154", + "176.125.228.155" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "87-1-ad.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.82.132", + "188.241.82.134", + "188.241.82.136", + "188.241.82.142", + "188.241.82.159", + "188.241.82.161", + "188.241.82.165", + "188.241.82.168", + "188.241.82.171", + "188.241.82.181" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "97-1-ad.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.82.133", + "188.241.82.134", + "188.241.82.135", + "188.241.82.157", + "188.241.82.159", + "188.241.82.161", + "188.241.82.173", + "188.241.82.175", + "188.241.82.178", + "188.241.82.181" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "87-1-ar.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.38.63", + "146.70.38.65", + "146.70.38.72", + "146.70.39.3", + "146.70.39.6", + "146.70.39.12", + "146.70.39.16", + "146.70.39.133", + "146.70.39.135", + "146.70.39.145" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "97-1-ar.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.38.74", + "146.70.39.8", + "146.70.39.10", + "146.70.39.11", + "146.70.39.14", + "146.70.39.15", + "146.70.39.139", + "146.70.39.142", + "146.70.39.144", + "146.70.39.147" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "87-1-am.cg-dialup.net", + "udp": true, + "ips": [ + "185.253.160.131", + "185.253.160.132", + "185.253.160.138", + "185.253.160.139", + "185.253.160.141", + "185.253.160.144", + "185.253.160.146", + "185.253.160.147", + "185.253.160.151", + "185.253.160.152" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "97-1-am.cg-dialup.net", + "tcp": true, + "ips": [ + "185.253.160.132", + "185.253.160.133", + "185.253.160.134", + "185.253.160.137", + "185.253.160.146", + "185.253.160.148", + "185.253.160.150", + "185.253.160.151", + "185.253.160.154", + "185.253.160.156" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "hostname": "87-1-au.cg-dialup.net", + "udp": true, + "ips": [ + "154.6.147.11", + "154.6.147.23", + "154.6.147.27", + "154.6.147.68", + "154.16.81.13", + "154.16.81.31", + "191.101.210.22", + "223.252.16.141", + "223.252.16.145", + "223.252.16.156" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "hostname": "97-1-au.cg-dialup.net", + "tcp": true, + "ips": [ + "154.6.147.55", + "154.6.147.58", + "154.16.81.10", + "154.16.81.25", + "154.16.81.35", + "191.101.210.22", + "191.101.210.24", + "223.252.16.138", + "223.252.16.139", + "223.252.16.145" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "87-1-at.cg-dialup.net", + "udp": true, + "ips": [ + "37.19.223.4", + "37.19.223.10", + "37.19.223.15", + "37.19.223.18", + "37.19.223.19", + "37.19.223.29", + "37.19.223.30", + "37.19.223.36", + "37.19.223.107", + "37.19.223.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "97-1-at.cg-dialup.net", + "tcp": true, + "ips": [ + "37.19.223.4", + "37.19.223.18", + "37.19.223.25", + "37.19.223.32", + "37.19.223.102", + "37.19.223.202", + "37.19.223.208", + "37.19.223.221", + "37.19.223.247", + "37.19.223.248" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "87-1-bs.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.238.157", + "95.181.238.158", + "95.181.238.159", + "95.181.238.160", + "95.181.238.161", + "95.181.238.162", + "95.181.238.164", + "95.181.238.165", + "95.181.238.166", + "95.181.238.167" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "97-1-bs.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.238.157", + "95.181.238.158", + "95.181.238.159", + "95.181.238.160", + "95.181.238.161", + "95.181.238.163", + "95.181.238.164", + "95.181.238.165", + "95.181.238.166", + "95.181.238.167" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "87-1-bd.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.17.130", + "192.142.17.131", + "192.142.17.133", + "192.142.17.135", + "192.142.17.139", + "192.142.17.140", + "192.142.17.146", + "192.142.17.154", + "192.142.17.157", + "192.142.17.158" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "97-1-bd.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.17.131", + "192.142.17.135", + "192.142.17.139", + "192.142.17.140", + "192.142.17.141", + "192.142.17.149", + "192.142.17.153", + "192.142.17.155", + "192.142.17.157", + "192.142.17.159" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "87-1-by.cg-dialup.net", + "udp": true, + "ips": [ + "45.132.194.15", + "45.132.194.16", + "45.132.194.17", + "45.132.194.18", + "45.132.194.19", + "45.132.194.20", + "45.132.194.21", + "45.132.194.23", + "45.132.194.25", + "45.132.194.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "97-1-by.cg-dialup.net", + "tcp": true, + "ips": [ + "45.132.194.15", + "45.132.194.16", + "45.132.194.17", + "45.132.194.18", + "45.132.194.19", + "45.132.194.20", + "45.132.194.21", + "45.132.194.22", + "45.132.194.24", + "45.132.194.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "87-1-be.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.123.152", + "146.70.123.157", + "154.47.27.8", + "154.47.27.26", + "181.214.218.117", + "181.214.218.132", + "181.214.218.154", + "181.214.218.158", + "181.214.218.231", + "181.214.218.241" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "97-1-be.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.123.156", + "154.47.27.25", + "181.214.218.109", + "181.214.218.124", + "181.214.218.158", + "181.214.218.199", + "181.214.218.207", + "181.214.218.246", + "181.214.218.251", + "185.104.186.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "hostname": "97-1-ba.cg-dialup.net", + "tcp": true, + "ips": [ + "98.159.36.4", + "98.159.36.6", + "98.159.36.9", + "98.159.36.13", + "98.159.36.16", + "98.159.36.17", + "98.159.36.20", + "98.159.36.22", + "98.159.36.23", + "98.159.36.27" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "87-1-br.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.177.3", + "188.241.177.9", + "188.241.177.12", + "188.241.177.44", + "188.241.177.46", + "188.241.177.124", + "188.241.177.131", + "188.241.177.135", + "188.241.177.152", + "188.241.177.153" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "97-1-br.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.177.41", + "188.241.177.44", + "188.241.177.119", + "188.241.177.125", + "188.241.177.131", + "188.241.177.132", + "188.241.177.137", + "188.241.177.138", + "188.241.177.141", + "188.241.177.152" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "87-1-bg.cg-dialup.net", + "udp": true, + "ips": [ + "156.146.55.159", + "156.146.55.162", + "156.146.55.168", + "156.146.55.169", + "156.146.55.170", + "156.146.55.176", + "156.146.55.177", + "156.146.55.179", + "156.146.55.180", + "156.146.55.181" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "97-1-bg.cg-dialup.net", + "tcp": true, + "ips": [ + "156.146.55.162", + "156.146.55.165", + "156.146.55.167", + "156.146.55.173", + "156.146.55.174", + "156.146.55.176", + "156.146.55.177", + "156.146.55.180", + "156.146.55.182", + "156.146.55.186" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "87-1-kh.cg-dialup.net", + "udp": true, + "ips": [ + "188.215.235.37", + "188.215.235.38", + "188.215.235.41", + "188.215.235.42", + "188.215.235.43", + "188.215.235.44", + "188.215.235.47", + "188.215.235.51", + "188.215.235.52", + "188.215.235.55" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "97-1-kh.cg-dialup.net", + "tcp": true, + "ips": [ + "188.215.235.38", + "188.215.235.39", + "188.215.235.40", + "188.215.235.41", + "188.215.235.43", + "188.215.235.44", + "188.215.235.47", + "188.215.235.48", + "188.215.235.54", + "188.215.235.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "87-1-ca.cg-dialup.net", + "udp": true, + "ips": [ + "66.115.142.135", + "66.115.142.162", + "66.115.142.173", + "104.200.151.61", + "104.200.151.121", + "104.200.151.143", + "140.228.21.49", + "140.228.24.40", + "172.98.89.177", + "181.214.153.13" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "97-1-ca.cg-dialup.net", + "tcp": true, + "ips": [ + "104.200.151.58", + "104.200.151.66", + "104.200.151.118", + "104.200.151.125", + "140.228.21.68", + "140.228.24.12", + "140.228.24.17", + "172.98.89.141", + "179.61.197.146", + "181.214.153.33" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "87-1-cl.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.11.3", + "146.70.11.4", + "146.70.11.6", + "146.70.11.8", + "146.70.11.9", + "146.70.11.10", + "146.70.11.11", + "146.70.11.12", + "146.70.11.13", + "146.70.11.14" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "97-1-cl.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.11.4", + "146.70.11.5", + "146.70.11.6", + "146.70.11.7", + "146.70.11.8", + "146.70.11.9", + "146.70.11.10", + "146.70.11.11", + "146.70.11.12", + "146.70.11.13" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "hostname": "87-1-cn.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.80.133", + "188.241.80.134", + "188.241.80.135", + "188.241.80.136", + "188.241.80.137", + "188.241.80.138", + "188.241.80.139", + "188.241.80.140", + "188.241.80.141", + "188.241.80.142" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "hostname": "97-1-cn.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.80.131", + "188.241.80.134", + "188.241.80.135", + "188.241.80.136", + "188.241.80.137", + "188.241.80.138", + "188.241.80.139", + "188.241.80.140", + "188.241.80.141", + "188.241.80.142" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "87-1-co.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.16.131", + "154.47.16.136", + "154.47.16.141", + "154.47.16.142", + "154.47.16.147", + "154.47.16.233", + "154.47.16.234", + "154.47.16.238", + "154.47.16.242", + "154.47.16.245" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "97-1-co.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.16.132", + "154.47.16.133", + "154.47.16.141", + "154.47.16.144", + "154.47.16.146", + "154.47.16.221", + "154.47.16.226", + "154.47.16.229", + "154.47.16.231", + "154.47.16.246" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "87-1-cr.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.10.3", + "146.70.10.5", + "146.70.10.6", + "146.70.10.41", + "146.70.10.42", + "146.70.10.43", + "146.70.10.44", + "146.70.10.48", + "146.70.10.50", + "146.70.10.51" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "97-1-cr.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.10.4", + "146.70.10.5", + "146.70.10.7", + "146.70.10.8", + "146.70.10.9", + "146.70.10.11", + "146.70.10.13", + "146.70.10.42", + "146.70.10.45", + "146.70.10.46" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "87-1-hr.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.29.194", + "154.47.29.199", + "154.47.29.201", + "154.47.29.202", + "154.47.29.206", + "154.47.29.217", + "154.47.29.219", + "154.47.29.231", + "154.47.29.243", + "154.47.29.250" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "97-1-hr.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.29.197", + "154.47.29.201", + "154.47.29.203", + "154.47.29.207", + "154.47.29.227", + "154.47.29.228", + "154.47.29.235", + "154.47.29.239", + "154.47.29.246", + "154.47.29.247" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "87-1-cy.cg-dialup.net", + "udp": true, + "ips": [ + "185.253.162.131", + "185.253.162.132", + "185.253.162.134", + "185.253.162.136", + "185.253.162.137", + "185.253.162.138", + "185.253.162.139", + "185.253.162.140", + "185.253.162.142", + "185.253.162.143" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "97-1-cy.cg-dialup.net", + "tcp": true, + "ips": [ + "185.253.162.131", + "185.253.162.132", + "185.253.162.133", + "185.253.162.134", + "185.253.162.135", + "185.253.162.136", + "185.253.162.138", + "185.253.162.139", + "185.253.162.140", + "185.253.162.144" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "87-1-cz.cg-dialup.net", + "udp": true, + "ips": [ + "138.199.56.226", + "138.199.56.228", + "138.199.56.236", + "138.199.56.238", + "138.199.56.241", + "138.199.56.244", + "138.199.56.246", + "195.181.161.4", + "195.181.161.5", + "195.181.161.21" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "97-1-cz.cg-dialup.net", + "tcp": true, + "ips": [ + "138.199.56.239", + "138.199.56.241", + "138.199.56.245", + "138.199.56.250", + "195.181.161.4", + "195.181.161.7", + "195.181.161.15", + "195.181.161.17", + "195.181.161.21", + "195.181.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "87-1-dk.cg-dialup.net", + "udp": true, + "ips": [ + "188.126.94.195", + "188.126.94.202", + "188.126.94.206", + "188.126.94.210", + "188.126.94.217", + "188.126.94.218", + "188.126.94.220", + "188.126.94.228", + "188.126.94.235", + "188.126.94.241" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "97-1-dk.cg-dialup.net", + "tcp": true, + "ips": [ + "188.126.94.202", + "188.126.94.209", + "188.126.94.215", + "188.126.94.218", + "188.126.94.219", + "188.126.94.221", + "188.126.94.232", + "188.126.94.246", + "188.126.94.248", + "188.126.94.249" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "87-1-eg.cg-dialup.net", + "udp": true, + "ips": [ + "188.214.122.35", + "188.214.122.37", + "188.214.122.41", + "188.214.122.43", + "188.214.122.52", + "188.214.122.55", + "188.214.122.59", + "188.214.122.61", + "188.214.122.70", + "188.214.122.71" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "97-1-eg.cg-dialup.net", + "tcp": true, + "ips": [ + "188.214.122.37", + "188.214.122.39", + "188.214.122.40", + "188.214.122.47", + "188.214.122.48", + "188.214.122.55", + "188.214.122.57", + "188.214.122.61", + "188.214.122.70", + "188.214.122.78" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "87-1-ee.cg-dialup.net", + "udp": true, + "ips": [ + "165.231.182.132", + "165.231.182.135", + "165.231.182.136", + "165.231.182.138", + "165.231.182.139", + "165.231.182.144", + "165.231.182.150", + "165.231.182.151", + "165.231.182.153", + "165.231.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "97-1-ee.cg-dialup.net", + "tcp": true, + "ips": [ + "165.231.182.132", + "165.231.182.134", + "165.231.182.136", + "165.231.182.138", + "165.231.182.140", + "165.231.182.141", + "165.231.182.143", + "165.231.182.145", + "165.231.182.150", + "165.231.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "87-1-fi.cg-dialup.net", + "udp": true, + "ips": [ + "188.126.88.4", + "188.126.88.5", + "188.126.88.14", + "188.126.89.100", + "188.126.89.111", + "188.126.89.113", + "188.126.89.116", + "188.126.89.117", + "188.126.89.118", + "188.126.89.121" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "97-1-fi.cg-dialup.net", + "tcp": true, + "ips": [ + "188.126.88.6", + "188.126.88.8", + "188.126.89.100", + "188.126.89.101", + "188.126.89.102", + "188.126.89.104", + "188.126.89.105", + "188.126.89.108", + "188.126.89.110", + "188.126.89.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "87-1-fr.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.43.167", + "84.17.60.51", + "84.17.60.56", + "84.17.60.102", + "84.17.60.107", + "151.106.10.141", + "191.101.31.184", + "191.101.31.196", + "191.101.217.114", + "191.101.217.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "87-19-fr.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.43.39", + "84.17.43.41", + "84.17.43.42", + "84.17.43.44", + "84.17.43.47", + "138.199.27.2", + "138.199.27.6", + "138.199.27.8", + "138.199.27.10", + "138.199.27.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "97-1-fr.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.60.16", + "84.17.60.28", + "84.17.60.55", + "84.17.60.102", + "191.101.31.102", + "191.101.31.216", + "191.101.31.217", + "191.101.217.107", + "191.101.217.121", + "191.101.217.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "97-19-fr.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.43.43", + "84.17.43.46", + "84.17.43.48", + "138.199.27.1", + "138.199.27.4", + "138.199.27.5", + "138.199.27.6", + "138.199.27.8", + "138.199.27.9", + "138.199.27.10" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "87-1-ge.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.236.147", + "95.181.236.148", + "95.181.236.149", + "95.181.236.150", + "95.181.236.152", + "95.181.236.154", + "95.181.236.155", + "95.181.236.156", + "95.181.236.157", + "95.181.236.159" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "97-1-ge.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.236.146", + "95.181.236.147", + "95.181.236.148", + "95.181.236.149", + "95.181.236.151", + "95.181.236.152", + "95.181.236.155", + "95.181.236.157", + "95.181.236.158", + "95.181.236.159" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "87-1-de.cg-dialup.net", + "udp": true, + "ips": [ + "83.136.82.85", + "84.17.48.112", + "84.17.48.129", + "84.17.48.156", + "84.17.49.105", + "138.199.36.197", + "154.28.188.59", + "154.28.188.95", + "154.28.188.120", + "216.24.216.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "87-19-de.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.49.32", + "84.17.49.38", + "84.17.49.40", + "84.17.49.47", + "84.17.49.48", + "84.17.49.50", + "84.17.49.53", + "84.17.49.54", + "84.17.49.57", + "84.17.49.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "97-1-de.cg-dialup.net", + "tcp": true, + "ips": [ + "45.88.97.125", + "45.88.97.188", + "84.17.49.15", + "84.17.49.75", + "87.249.132.138", + "154.28.188.42", + "181.214.173.48", + "216.24.213.89", + "216.24.216.107", + "216.24.216.165" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "97-19-de.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.49.32", + "84.17.49.33", + "84.17.49.34", + "84.17.49.39", + "84.17.49.44", + "84.17.49.46", + "84.17.49.49", + "84.17.49.53", + "84.17.49.56", + "84.17.49.59" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "87-1-gr.cg-dialup.net", + "udp": true, + "ips": [ + "185.51.134.90", + "185.51.134.91", + "185.51.134.94", + "185.51.134.164", + "185.51.134.167", + "185.51.134.169", + "185.51.134.170", + "185.51.134.249", + "185.51.134.253", + "185.51.134.254" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "97-1-gr.cg-dialup.net", + "tcp": true, + "ips": [ + "185.51.134.89", + "185.51.134.93", + "185.51.134.94", + "185.51.134.167", + "185.51.134.168", + "185.51.134.173", + "185.51.134.244", + "185.51.134.246", + "185.51.134.248", + "185.51.134.250" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "hostname": "87-1-gl.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.120.5", + "91.90.120.6", + "91.90.120.7", + "91.90.120.8", + "91.90.120.11", + "91.90.120.12", + "91.90.120.13", + "91.90.120.14", + "91.90.120.15", + "91.90.120.16" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "hostname": "97-1-gl.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.120.3", + "91.90.120.4", + "91.90.120.5", + "91.90.120.8", + "91.90.120.9", + "91.90.120.10", + "91.90.120.12", + "91.90.120.13", + "91.90.120.14", + "91.90.120.16" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "hostname": "87-1-hk.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.56.131", + "84.17.56.134", + "84.17.56.136", + "84.17.56.146", + "84.17.56.147", + "84.17.56.149", + "84.17.56.165", + "84.17.56.168", + "84.17.56.172", + "84.17.56.174" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "hostname": "97-1-hk.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.56.133", + "84.17.56.137", + "84.17.56.140", + "84.17.56.142", + "84.17.56.143", + "84.17.56.152", + "84.17.56.162", + "84.17.56.163", + "84.17.56.172", + "84.17.56.183" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "87-1-hu.cg-dialup.net", + "udp": true, + "ips": [ + "86.106.74.243", + "86.106.74.248", + "86.106.74.251", + "185.189.114.115", + "185.189.114.117", + "185.189.114.118", + "185.189.114.120", + "185.189.114.121", + "185.189.114.122", + "185.189.114.125" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "97-1-hu.cg-dialup.net", + "tcp": true, + "ips": [ + "86.106.74.243", + "86.106.74.247", + "86.106.74.248", + "86.106.74.249", + "86.106.74.250", + "86.106.74.254", + "185.189.114.115", + "185.189.114.117", + "185.189.114.119", + "185.189.114.122" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "87-1-in.cg-dialup.net", + "udp": true, + "ips": [ + "166.0.218.31", + "166.0.218.32", + "166.0.218.34", + "166.0.218.39", + "166.0.218.42", + "166.0.218.43", + "166.0.218.48", + "166.0.218.49", + "166.0.218.53", + "166.0.218.58" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "97-1-in.cg-dialup.net", + "tcp": true, + "ips": [ + "166.0.218.34", + "166.0.218.36", + "166.0.218.40", + "166.0.218.42", + "166.0.218.51", + "166.0.218.52", + "166.0.218.54", + "166.0.218.55", + "166.0.218.57", + "166.0.218.58" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "87-1-id.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.226.131", + "192.142.226.133", + "192.142.226.134", + "192.142.226.135", + "192.142.226.136", + "192.142.226.137", + "192.142.226.138", + "192.142.226.139", + "192.142.226.140", + "192.142.226.141" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "97-1-id.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.226.131", + "192.142.226.132", + "192.142.226.133", + "192.142.226.135", + "192.142.226.136", + "192.142.226.137", + "192.142.226.138", + "192.142.226.139", + "192.142.226.140", + "192.142.226.141" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "hostname": "87-1-ir.cg-dialup.net", + "udp": true, + "ips": [ + "62.133.46.131", + "62.133.46.132", + "62.133.46.133", + "62.133.46.134", + "62.133.46.135", + "62.133.46.136", + "62.133.46.137", + "62.133.46.138", + "62.133.46.139", + "62.133.46.140" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "hostname": "97-1-ir.cg-dialup.net", + "tcp": true, + "ips": [ + "62.133.46.131", + "62.133.46.132", + "62.133.46.133", + "62.133.46.135", + "62.133.46.137", + "62.133.46.138", + "62.133.46.139", + "62.133.46.140", + "62.133.46.141", + "62.133.46.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "87-1-ie.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.235.168", + "77.81.139.37", + "77.81.139.38", + "84.247.48.13", + "84.247.48.19", + "149.34.242.225", + "149.34.242.226", + "149.34.242.230", + "149.34.242.233", + "149.34.242.248" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "97-1-ie.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.235.166", + "37.120.235.171", + "37.120.235.173", + "77.81.139.37", + "77.81.139.43", + "84.247.48.7", + "84.247.48.8", + "84.247.48.27", + "149.34.242.234", + "149.34.242.236" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "87-1-im.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.124.147", + "91.90.124.148", + "91.90.124.150", + "91.90.124.151", + "91.90.124.153", + "91.90.124.154", + "91.90.124.155", + "91.90.124.157", + "91.90.124.158", + "91.90.124.159" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "97-1-im.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.124.147", + "91.90.124.148", + "91.90.124.150", + "91.90.124.151", + "91.90.124.152", + "91.90.124.154", + "91.90.124.155", + "91.90.124.156", + "91.90.124.157", + "91.90.124.159" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "87-1-il.cg-dialup.net", + "udp": true, + "ips": [ + "169.150.248.132", + "169.150.248.142", + "169.150.248.150", + "169.150.248.152", + "169.150.248.165", + "169.150.248.167", + "169.150.248.172", + "169.150.248.173", + "169.150.248.174", + "169.150.248.178" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "97-1-il.cg-dialup.net", + "tcp": true, + "ips": [ + "169.150.248.130", + "169.150.248.132", + "169.150.248.134", + "169.150.248.144", + "169.150.248.146", + "169.150.248.159", + "169.150.248.173", + "169.150.248.177", + "169.150.248.181", + "169.150.248.182" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "87-1-it.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.58.23", + "87.101.94.74", + "185.217.71.26", + "185.217.71.27", + "185.217.71.133", + "185.217.71.135", + "185.217.71.150", + "185.217.71.156", + "185.217.71.186", + "212.102.55.114" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "97-1-it.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.58.9", + "84.17.58.118", + "87.101.94.70", + "185.217.71.24", + "185.217.71.136", + "185.217.71.186", + "212.102.55.100", + "212.102.55.101", + "212.102.55.104", + "212.102.55.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "87-1-jp.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.20.211", + "154.47.20.223", + "154.47.20.228", + "154.47.20.233", + "154.47.20.234", + "156.146.35.17", + "156.146.35.20", + "156.146.35.34", + "156.146.35.37", + "156.146.35.49" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "97-1-jp.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.20.211", + "154.47.20.228", + "154.47.20.229", + "156.146.35.2", + "156.146.35.14", + "156.146.35.15", + "156.146.35.16", + "156.146.35.28", + "156.146.35.30", + "156.146.35.31" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "87-1-kz.cg-dialup.net", + "udp": true, + "ips": [ + "62.133.47.146", + "62.133.47.147", + "62.133.47.150", + "62.133.47.152", + "62.133.47.153", + "62.133.47.154", + "62.133.47.156", + "62.133.47.158", + "62.133.47.159", + "62.133.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "97-1-kz.cg-dialup.net", + "tcp": true, + "ips": [ + "62.133.47.146", + "62.133.47.147", + "62.133.47.149", + "62.133.47.150", + "62.133.47.151", + "62.133.47.152", + "62.133.47.153", + "62.133.47.155", + "62.133.47.157", + "62.133.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "87-1-ke.cg-dialup.net", + "udp": true, + "ips": [ + "62.12.118.195", + "62.12.118.196", + "62.12.118.197", + "62.12.118.198", + "62.12.118.199", + "62.12.118.200", + "62.12.118.201", + "62.12.118.202", + "62.12.118.203", + "62.12.118.204" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "97-1-ke.cg-dialup.net", + "tcp": true, + "ips": [ + "62.12.118.195", + "62.12.118.196", + "62.12.118.197", + "62.12.118.198", + "62.12.118.199", + "62.12.118.200", + "62.12.118.201", + "62.12.118.202", + "62.12.118.203", + "62.12.118.204" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "87-1-kr.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.227.130", + "192.142.227.131", + "192.142.227.138", + "192.142.227.140", + "192.142.227.143", + "192.142.227.146", + "192.142.227.148", + "192.142.227.150", + "192.142.227.152", + "192.142.227.153" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "97-1-kr.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.227.130", + "192.142.227.131", + "192.142.227.133", + "192.142.227.134", + "192.142.227.135", + "192.142.227.144", + "192.142.227.147", + "192.142.227.150", + "192.142.227.152", + "192.142.227.153" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "87-1-lv.cg-dialup.net", + "udp": true, + "ips": [ + "196.196.53.20", + "196.196.53.24", + "196.196.53.27", + "196.196.53.29", + "196.196.53.30", + "196.196.53.36", + "196.196.53.38", + "196.196.53.40", + "196.196.53.42", + "196.196.53.126" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "97-1-lv.cg-dialup.net", + "tcp": true, + "ips": [ + "196.196.53.19", + "196.196.53.25", + "196.196.53.27", + "196.196.53.35", + "196.196.53.41", + "196.196.53.43", + "196.196.53.44", + "196.196.53.118", + "196.196.53.125", + "196.196.53.126" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "87-1-li.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.122.147", + "91.90.122.148", + "91.90.122.149", + "91.90.122.152", + "91.90.122.153", + "91.90.122.154", + "91.90.122.155", + "91.90.122.156", + "91.90.122.158", + "91.90.122.159" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "97-1-li.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.122.147", + "91.90.122.148", + "91.90.122.149", + "91.90.122.150", + "91.90.122.153", + "91.90.122.154", + "91.90.122.156", + "91.90.122.157", + "91.90.122.158", + "91.90.122.159" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "87-1-lt.cg-dialup.net", + "udp": true, + "ips": [ + "194.32.122.6", + "194.32.122.9", + "194.32.122.15", + "194.32.122.18", + "194.32.122.19", + "194.32.122.24", + "194.32.122.25", + "194.32.122.26", + "194.32.122.27", + "194.32.122.29" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "97-1-lt.cg-dialup.net", + "tcp": true, + "ips": [ + "194.32.122.5", + "194.32.122.6", + "194.32.122.10", + "194.32.122.11", + "194.32.122.12", + "194.32.122.13", + "194.32.122.14", + "194.32.122.15", + "194.32.122.19", + "194.32.122.21" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "87-1-lu.cg-dialup.net", + "udp": true, + "ips": [ + "37.46.113.228", + "37.46.113.229", + "37.46.113.230", + "37.46.113.242", + "37.46.113.243", + "37.46.113.244", + "37.46.113.249", + "37.46.113.252", + "37.46.113.253", + "37.46.113.254" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "97-1-lu.cg-dialup.net", + "tcp": true, + "ips": [ + "37.46.113.224", + "37.46.113.225", + "37.46.113.227", + "37.46.113.232", + "37.46.113.234", + "37.46.113.235", + "37.46.113.244", + "37.46.113.245", + "37.46.113.246", + "37.46.113.249" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "hostname": "87-1-mo.cg-dialup.net", + "udp": true, + "ips": [ + "84.252.92.131", + "84.252.92.134", + "84.252.92.135", + "84.252.92.137", + "84.252.92.138", + "84.252.92.139", + "84.252.92.141", + "84.252.92.142", + "84.252.92.143", + "84.252.92.144" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "hostname": "97-1-mo.cg-dialup.net", + "tcp": true, + "ips": [ + "84.252.92.131", + "84.252.92.132", + "84.252.92.133", + "84.252.92.137", + "84.252.92.138", + "84.252.92.140", + "84.252.92.141", + "84.252.92.143", + "84.252.92.144", + "84.252.92.145" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "hostname": "87-1-mk.cg-dialup.net", + "udp": true, + "ips": [ + "185.225.28.3", + "185.225.28.4", + "185.225.28.5", + "185.225.28.7", + "185.225.28.8", + "185.225.28.9", + "185.225.28.10", + "185.225.28.11", + "185.225.28.12" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "hostname": "97-1-mk.cg-dialup.net", + "tcp": true, + "ips": [ + "185.225.28.3", + "185.225.28.4", + "185.225.28.5", + "185.225.28.7", + "185.225.28.8", + "185.225.28.9", + "185.225.28.10", + "185.225.28.11", + "185.225.28.12" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "87-1-my.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.16.130", + "192.142.16.133", + "192.142.16.137", + "192.142.16.138", + "192.142.16.141", + "192.142.16.142", + "192.142.16.144", + "192.142.16.148", + "192.142.16.149", + "192.142.16.150" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "97-1-my.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.16.132", + "192.142.16.133", + "192.142.16.134", + "192.142.16.136", + "192.142.16.137", + "192.142.16.144", + "192.142.16.148", + "192.142.16.150", + "192.142.16.151", + "192.142.16.152" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "87-1-mt.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.230.133", + "176.125.230.134", + "176.125.230.135", + "176.125.230.136", + "176.125.230.137", + "176.125.230.138", + "176.125.230.139", + "176.125.230.143", + "176.125.230.144", + "176.125.230.145" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "97-1-mt.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.230.132", + "176.125.230.135", + "176.125.230.136", + "176.125.230.137", + "176.125.230.139", + "176.125.230.140", + "176.125.230.141", + "176.125.230.142", + "176.125.230.143", + "176.125.230.144" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "87-1-mx.cg-dialup.net", + "udp": true, + "ips": [ + "77.81.142.137", + "77.81.142.144", + "77.81.142.147", + "77.81.142.149", + "77.81.142.150", + "77.81.142.151", + "77.81.142.210", + "77.81.142.213", + "77.81.142.217", + "77.81.142.224" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "97-1-mx.cg-dialup.net", + "tcp": true, + "ips": [ + "77.81.142.139", + "77.81.142.141", + "77.81.142.150", + "77.81.142.155", + "77.81.142.208", + "77.81.142.209", + "77.81.142.210", + "77.81.142.213", + "77.81.142.226", + "77.81.142.227" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "87-1-md.cg-dialup.net", + "udp": true, + "ips": [ + "178.175.130.246", + "178.175.130.250", + "178.175.130.251", + "178.175.130.252", + "178.175.130.254", + "178.175.132.162", + "178.175.132.164", + "178.175.132.166", + "178.175.142.131", + "178.175.142.132" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "97-1-md.cg-dialup.net", + "tcp": true, + "ips": [ + "178.175.130.243", + "178.175.130.244", + "178.175.130.245", + "178.175.130.246", + "178.175.130.251", + "178.175.130.253", + "178.175.130.254", + "178.175.132.163", + "178.175.132.166", + "178.175.142.131" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "87-1-mc.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.233.147", + "95.181.233.148", + "95.181.233.149", + "95.181.233.150", + "95.181.233.151", + "95.181.233.152", + "95.181.233.153", + "95.181.233.155", + "95.181.233.156", + "95.181.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "97-1-mc.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.233.146", + "95.181.233.147", + "95.181.233.148", + "95.181.233.149", + "95.181.233.150", + "95.181.233.151", + "95.181.233.153", + "95.181.233.155", + "95.181.233.156", + "95.181.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "87-1-mn.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.227.3", + "192.142.227.4", + "192.142.227.5", + "192.142.227.6", + "192.142.227.7", + "192.142.227.8", + "192.142.227.9", + "192.142.227.10", + "192.142.227.11", + "192.142.227.12" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "97-1-mn.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.227.2", + "192.142.227.3", + "192.142.227.4", + "192.142.227.6", + "192.142.227.7", + "192.142.227.8", + "192.142.227.9", + "192.142.227.10", + "192.142.227.11", + "192.142.227.12" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "87-1-me.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.229.131", + "176.125.229.133", + "176.125.229.137", + "176.125.229.138", + "176.125.229.139", + "176.125.229.140", + "176.125.229.141", + "176.125.229.142", + "176.125.229.143", + "176.125.229.145" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "97-1-me.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.229.131", + "176.125.229.133", + "176.125.229.135", + "176.125.229.137", + "176.125.229.139", + "176.125.229.140", + "176.125.229.141", + "176.125.229.143", + "176.125.229.144", + "176.125.229.145" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "hostname": "87-1-ma.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.232.17", + "95.181.232.19", + "95.181.232.20", + "95.181.232.132", + "95.181.232.133", + "95.181.232.136", + "95.181.232.137", + "95.181.232.138", + "95.181.232.142", + "95.181.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "hostname": "97-1-ma.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.232.15", + "95.181.232.18", + "95.181.232.21", + "95.181.232.22", + "95.181.232.23", + "95.181.232.25", + "95.181.232.26", + "95.181.232.132", + "95.181.232.133", + "95.181.232.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "87-1-nl.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.47.4", + "84.17.47.15", + "84.17.47.108", + "84.17.47.112", + "181.214.206.14", + "181.214.206.37", + "191.96.168.15", + "191.96.168.56", + "195.78.54.31", + "195.78.54.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "97-1-nl.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.47.10", + "181.214.206.25", + "191.96.168.13", + "191.96.168.126", + "191.96.168.134", + "191.96.168.144", + "191.96.168.148", + "195.78.54.23", + "195.78.54.24", + "195.78.54.56" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "87-1-nz.cg-dialup.net", + "udp": true, + "ips": [ + "43.250.207.98", + "43.250.207.99", + "43.250.207.100", + "43.250.207.102", + "43.250.207.103", + "43.250.207.104", + "43.250.207.107", + "43.250.207.108", + "43.250.207.109", + "43.250.207.110" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "97-1-nz.cg-dialup.net", + "tcp": true, + "ips": [ + "43.250.207.98", + "43.250.207.100", + "43.250.207.101", + "43.250.207.102", + "43.250.207.104", + "43.250.207.106", + "43.250.207.107", + "43.250.207.108", + "43.250.207.109", + "43.250.207.110" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "hostname": "87-1-ng.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.65.3", + "146.70.65.5", + "146.70.65.6", + "146.70.65.8", + "146.70.65.10", + "146.70.65.11", + "146.70.65.12", + "146.70.65.13", + "146.70.65.14", + "146.70.65.15" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "hostname": "97-1-ng.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.65.3", + "146.70.65.5", + "146.70.65.6", + "146.70.65.7", + "146.70.65.8", + "146.70.65.10", + "146.70.65.11", + "146.70.65.13", + "146.70.65.14", + "146.70.65.15" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "87-1-no.cg-dialup.net", + "udp": true, + "ips": [ + "82.102.27.93", + "185.206.225.230", + "185.206.225.233", + "185.206.225.234", + "185.253.97.234", + "185.253.97.243", + "185.253.97.244", + "185.253.97.246", + "185.253.97.248", + "185.253.97.250" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "97-1-no.cg-dialup.net", + "tcp": true, + "ips": [ + "82.102.27.91", + "82.102.27.92", + "185.206.225.27", + "185.206.225.229", + "185.206.225.233", + "185.206.225.236", + "185.253.97.238", + "185.253.97.243", + "185.253.97.252", + "185.253.97.253" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "87-1-pk.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.12.5", + "146.70.12.6", + "146.70.12.7", + "146.70.12.8", + "146.70.12.9", + "146.70.12.10", + "146.70.12.11", + "146.70.12.12", + "146.70.12.13", + "146.70.12.14" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "97-1-pk.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.12.4", + "146.70.12.5", + "146.70.12.6", + "146.70.12.8", + "146.70.12.9", + "146.70.12.10", + "146.70.12.11", + "146.70.12.12", + "146.70.12.13", + "146.70.12.14" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "87-1-pa.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.126.131", + "91.90.126.132", + "91.90.126.133", + "91.90.126.136", + "91.90.126.137", + "91.90.126.138", + "91.90.126.141", + "91.90.126.142", + "91.90.126.143", + "91.90.126.144" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "97-1-pa.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.126.131", + "91.90.126.132", + "91.90.126.133", + "91.90.126.134", + "91.90.126.135", + "91.90.126.137", + "91.90.126.139", + "91.90.126.142", + "91.90.126.143", + "91.90.126.144" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "hostname": "87-1-ph.cg-dialup.net", + "udp": true, + "ips": [ + "188.214.125.42", + "188.214.125.43", + "188.214.125.49", + "188.214.125.56", + "188.214.125.60", + "192.142.18.9", + "192.142.18.10", + "192.142.18.17", + "192.142.18.27", + "192.142.18.30" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "hostname": "97-1-ph.cg-dialup.net", + "tcp": true, + "ips": [ + "188.214.125.38", + "188.214.125.42", + "188.214.125.46", + "188.214.125.54", + "192.142.18.2", + "192.142.18.7", + "192.142.18.18", + "192.142.18.22", + "192.142.18.24", + "192.142.18.25" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "87-1-pl.cg-dialup.net", + "udp": true, + "ips": [ + "45.134.212.201", + "45.134.212.205", + "138.199.59.135", + "138.199.59.137", + "138.199.59.138", + "138.199.59.161", + "138.199.59.163", + "138.199.59.172", + "138.199.59.177", + "138.199.59.185" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "97-1-pl.cg-dialup.net", + "tcp": true, + "ips": [ + "45.134.212.197", + "45.134.212.200", + "138.199.59.130", + "138.199.59.134", + "138.199.59.137", + "138.199.59.148", + "138.199.59.152", + "138.199.59.157", + "138.199.59.169", + "138.199.59.170" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "87-1-pt.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.59.133", + "146.70.59.134", + "146.70.59.137", + "146.70.59.144", + "146.70.59.145", + "146.70.59.153", + "146.70.59.160", + "146.70.59.162", + "146.70.59.163", + "146.70.59.177" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "97-1-pt.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.59.138", + "146.70.59.143", + "146.70.59.144", + "146.70.59.148", + "146.70.59.153", + "146.70.59.160", + "146.70.59.163", + "146.70.59.164", + "146.70.59.170", + "146.70.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "hostname": "87-1-qa.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.234.134", + "95.181.234.135", + "95.181.234.136", + "95.181.234.137", + "95.181.234.138", + "95.181.234.139", + "95.181.234.140", + "95.181.234.141", + "95.181.234.143", + "95.181.234.144" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "hostname": "97-1-qa.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.234.131", + "95.181.234.133", + "95.181.234.135", + "95.181.234.137", + "95.181.234.138", + "95.181.234.139", + "95.181.234.140", + "95.181.234.141", + "95.181.234.142", + "95.181.234.143" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "87-1-ro.cg-dialup.net", + "udp": true, + "ips": [ + "84.239.14.178", + "84.239.40.198", + "84.239.40.211", + "84.239.40.217", + "84.239.40.235", + "84.239.40.237", + "84.239.40.244", + "84.239.49.11", + "84.239.49.21", + "84.239.49.27" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "87-8-ro.cg-dialup.net", + "udp": true, + "ips": [ + "85.9.20.131", + "85.9.20.134", + "85.9.20.135", + "85.9.20.138", + "85.9.20.144", + "85.9.20.146", + "85.9.20.148", + "85.9.20.151", + "85.9.20.154", + "85.9.20.248" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "97-1-ro.cg-dialup.net", + "tcp": true, + "ips": [ + "84.239.40.208", + "84.239.40.209", + "84.239.40.214", + "84.239.40.225", + "84.239.40.228", + "84.239.40.229", + "84.239.40.236", + "84.239.40.239", + "84.239.49.12", + "193.176.85.114" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "97-8-ro.cg-dialup.net", + "tcp": true, + "ips": [ + "85.9.20.132", + "85.9.20.135", + "85.9.20.136", + "85.9.20.145", + "85.9.20.148", + "85.9.20.149", + "85.9.20.150", + "85.9.20.152", + "85.9.20.154", + "85.9.20.249" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "hostname": "87-1-ru.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.52.100", + "146.70.52.103", + "146.70.52.198", + "146.70.52.199", + "146.70.52.202", + "146.70.52.206", + "146.70.52.222", + "146.70.52.229", + "146.70.52.244", + "146.70.52.248" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "hostname": "97-1-ru.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.52.29", + "146.70.52.116", + "146.70.52.117", + "146.70.52.197", + "146.70.52.219", + "146.70.52.220", + "146.70.52.227", + "146.70.52.233", + "146.70.52.234", + "146.70.52.244" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "hostname": "87-1-sa.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.235.132", + "95.181.235.133", + "95.181.235.135", + "95.181.235.136", + "95.181.235.137", + "95.181.235.138", + "95.181.235.139", + "95.181.235.140", + "95.181.235.143", + "95.181.235.144" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "hostname": "97-1-sa.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.235.131", + "95.181.235.133", + "95.181.235.134", + "95.181.235.135", + "95.181.235.136", + "95.181.235.137", + "95.181.235.138", + "95.181.235.141", + "95.181.235.142", + "95.181.235.143" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "87-1-rs.cg-dialup.net", + "udp": true, + "ips": [ + "37.46.115.44", + "37.46.115.45", + "37.46.115.46", + "37.46.115.47", + "37.46.115.48", + "37.46.115.49", + "37.46.115.51", + "37.46.115.53", + "37.46.115.54", + "37.46.115.56" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "97-1-rs.cg-dialup.net", + "tcp": true, + "ips": [ + "37.46.115.42", + "37.46.115.43", + "37.46.115.44", + "37.46.115.45", + "37.46.115.46", + "37.46.115.50", + "37.46.115.52", + "37.46.115.53", + "37.46.115.54", + "37.46.115.56" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "87-1-sg.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.39.162", + "84.17.39.164", + "84.17.39.165", + "84.17.39.167", + "84.17.39.168", + "84.17.39.170", + "84.17.39.173", + "84.17.39.177", + "84.17.39.180", + "84.17.39.181" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "97-1-sg.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.39.162", + "84.17.39.164", + "84.17.39.169", + "84.17.39.170", + "84.17.39.171", + "84.17.39.173", + "84.17.39.174", + "84.17.39.176", + "84.17.39.178", + "84.17.39.185" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "87-1-sk.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.114.19", + "146.70.114.20", + "146.70.114.21", + "146.70.114.22", + "146.70.114.23", + "146.70.114.26", + "146.70.114.28", + "185.245.85.228", + "185.245.85.230", + "185.245.85.234" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "97-1-sk.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.114.22", + "146.70.114.25", + "146.70.114.27", + "146.70.114.28", + "146.70.114.30", + "185.245.85.228", + "185.245.85.229", + "185.245.85.230", + "185.245.85.234", + "185.245.85.235" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "87-1-si.cg-dialup.net", + "udp": true, + "ips": [ + "195.80.150.211", + "195.80.150.212", + "195.80.150.213", + "195.80.150.214", + "195.80.150.217", + "195.80.150.218", + "195.80.150.219", + "195.80.150.220", + "195.80.150.221", + "195.80.150.222" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "97-1-si.cg-dialup.net", + "tcp": true, + "ips": [ + "195.80.150.211", + "195.80.150.212", + "195.80.150.213", + "195.80.150.215", + "195.80.150.216", + "195.80.150.217", + "195.80.150.218", + "195.80.150.220", + "195.80.150.221", + "195.80.150.222" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "87-1-za.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.30.2", + "154.47.30.3", + "154.47.30.7", + "154.47.30.10", + "154.47.30.15", + "154.47.30.17", + "154.47.30.23", + "154.47.30.24", + "154.47.30.26", + "154.47.30.30" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "97-1-za.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.30.5", + "154.47.30.9", + "154.47.30.10", + "154.47.30.16", + "154.47.30.17", + "154.47.30.19", + "154.47.30.21", + "154.47.30.25", + "154.47.30.28", + "154.47.30.30" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "87-1-es.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.142.172", + "45.134.213.186", + "45.134.213.187", + "82.102.26.195", + "84.17.62.136", + "84.17.62.139", + "84.17.62.145", + "185.253.99.204", + "196.245.54.8", + "196.245.54.22" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "97-1-es.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.142.39", + "37.120.142.44", + "45.134.213.164", + "45.134.213.183", + "45.134.213.184", + "45.134.213.187", + "84.17.62.148", + "146.70.22.70", + "196.245.54.10", + "196.245.54.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "hostname": "87-1-lk.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.17.7", + "192.142.17.9", + "192.142.17.15", + "192.142.17.16", + "192.142.17.19", + "192.142.17.22", + "192.142.17.23", + "192.142.17.24", + "192.142.17.26", + "192.142.17.28" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "hostname": "97-1-lk.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.17.4", + "192.142.17.6", + "192.142.17.9", + "192.142.17.10", + "192.142.17.11", + "192.142.17.15", + "192.142.17.16", + "192.142.17.17", + "192.142.17.23", + "192.142.17.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "87-1-se.cg-dialup.net", + "udp": true, + "ips": [ + "46.246.41.150", + "188.126.79.5", + "188.126.79.10", + "188.126.79.14", + "188.126.79.29", + "188.126.79.30", + "195.246.120.142", + "195.246.120.152", + "195.246.120.153", + "195.246.120.165" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "97-1-se.cg-dialup.net", + "tcp": true, + "ips": [ + "46.246.41.150", + "46.246.41.152", + "46.246.41.153", + "188.126.79.23", + "195.246.120.144", + "195.246.120.145", + "195.246.120.146", + "195.246.120.161", + "195.246.120.164", + "195.246.120.165" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "87-1-ch.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.52.7", + "84.17.52.37", + "84.17.52.39", + "84.17.52.44", + "102.129.143.4", + "102.129.143.13", + "102.129.143.18", + "102.129.143.23", + "102.129.143.34", + "102.129.143.39" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "97-1-ch.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.52.8", + "84.17.52.37", + "102.129.143.4", + "102.129.143.12", + "102.129.143.16", + "102.129.143.26", + "102.129.143.31", + "102.129.143.35", + "102.129.143.41", + "102.129.143.48" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "87-1-tw.cg-dialup.net", + "udp": true, + "ips": [ + "173.244.49.3", + "173.244.49.5", + "173.244.49.9", + "173.244.49.20", + "173.244.49.27", + "173.244.49.30", + "173.244.49.31", + "173.244.49.43", + "173.244.49.47", + "173.244.49.49" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "97-1-tw.cg-dialup.net", + "tcp": true, + "ips": [ + "173.244.49.5", + "173.244.49.7", + "173.244.49.9", + "173.244.49.17", + "173.244.49.20", + "173.244.49.31", + "173.244.49.32", + "173.244.49.37", + "173.244.49.46", + "173.244.49.48" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "87-1-th.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.226.5", + "192.142.226.11", + "192.142.226.13", + "192.142.226.14", + "192.142.226.16", + "192.142.226.18", + "192.142.226.19", + "192.142.226.21", + "192.142.226.24", + "192.142.226.25" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "97-1-th.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.226.4", + "192.142.226.6", + "192.142.226.9", + "192.142.226.10", + "192.142.226.11", + "192.142.226.12", + "192.142.226.15", + "192.142.226.18", + "192.142.226.20", + "192.142.226.23" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "87-1-tr.cg-dialup.net", + "udp": true, + "ips": [ + "188.213.34.3", + "188.213.34.5", + "188.213.34.7", + "188.213.34.8", + "188.213.34.9", + "188.213.34.11", + "188.213.34.16", + "188.213.34.39", + "188.213.34.44", + "188.213.34.45" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "97-1-tr.cg-dialup.net", + "tcp": true, + "ips": [ + "188.213.34.4", + "188.213.34.5", + "188.213.34.11", + "188.213.34.12", + "188.213.34.16", + "188.213.34.17", + "188.213.34.35", + "188.213.34.36", + "188.213.34.41", + "188.213.34.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "87-1-ua.cg-dialup.net", + "udp": true, + "ips": [ + "154.6.130.2", + "154.6.130.3", + "154.6.130.11", + "154.6.130.13", + "154.6.130.15", + "154.6.130.16", + "154.6.130.17", + "154.6.130.18", + "154.6.130.19", + "154.6.130.21" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "97-1-ua.cg-dialup.net", + "tcp": true, + "ips": [ + "154.6.130.3", + "154.6.130.4", + "154.6.130.6", + "154.6.130.7", + "154.6.130.11", + "154.6.130.13", + "154.6.130.15", + "154.6.130.17", + "154.6.130.23", + "154.6.130.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "87-1-ae.cg-dialup.net", + "udp": true, + "ips": [ + "217.138.193.179", + "217.138.193.180", + "217.138.193.181", + "217.138.193.182", + "217.138.193.183", + "217.138.193.185", + "217.138.193.186", + "217.138.193.187", + "217.138.193.188", + "217.138.193.189" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "97-1-ae.cg-dialup.net", + "tcp": true, + "ips": [ + "217.138.193.179", + "217.138.193.181", + "217.138.193.182", + "217.138.193.183", + "217.138.193.184", + "217.138.193.185", + "217.138.193.186", + "217.138.193.187", + "217.138.193.189", + "217.138.193.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "87-1-gb.cg-dialup.net", + "udp": true, + "ips": [ + "45.133.173.40", + "45.133.173.51", + "45.133.173.72", + "138.199.30.30", + "138.199.31.96", + "138.199.31.97", + "138.199.63.106", + "138.199.63.110", + "181.215.176.240", + "194.110.13.105" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "87-19-gb.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.133.157", + "37.120.133.158", + "37.120.133.159", + "37.120.133.160", + "37.120.133.161", + "37.120.133.162", + "37.120.133.164", + "37.120.133.166", + "37.120.133.167", + "37.120.133.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "97-1-gb.cg-dialup.net", + "tcp": true, + "ips": [ + "45.133.172.129", + "45.133.172.148", + "84.17.51.21", + "138.199.63.46", + "138.199.63.85", + "138.199.63.97", + "181.215.176.100", + "181.215.176.228", + "191.101.209.72", + "194.110.13.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "97-19-gb.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.133.157", + "37.120.133.158", + "37.120.133.159", + "37.120.133.161", + "37.120.133.163", + "37.120.133.164", + "37.120.133.165", + "37.120.133.166", + "37.120.133.167", + "37.120.133.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "87-1-us.cg-dialup.net", + "udp": true, + "ips": [ + "89.187.171.172", + "89.187.182.8", + "89.187.182.11", + "149.18.24.81", + "154.16.192.161", + "154.16.192.193", + "154.16.192.211", + "154.16.192.218", + "184.170.240.241", + "191.96.150.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "87-19-us.cg-dialup.net", + "udp": true, + "ips": [ + "156.146.59.164", + "156.146.59.165", + "156.146.59.166", + "156.146.59.167", + "156.146.59.168", + "156.146.59.169", + "156.146.59.170", + "156.146.59.172", + "156.146.59.177", + "156.146.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "97-1-us.cg-dialup.net", + "tcp": true, + "ips": [ + "102.129.152.213", + "149.18.24.105", + "154.16.49.23", + "154.16.49.25", + "184.170.240.227", + "191.96.150.196", + "191.96.150.222", + "191.96.150.242", + "191.96.150.247", + "191.96.150.252" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "97-19-us.cg-dialup.net", + "tcp": true, + "ips": [ + "156.146.59.163", + "156.146.59.164", + "156.146.59.165", + "156.146.59.170", + "156.146.59.171", + "156.146.59.172", + "156.146.59.173", + "156.146.59.174", + "156.146.59.176", + "156.146.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "87-1-ve.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.237.131", + "95.181.237.132", + "95.181.237.133", + "95.181.237.134", + "95.181.237.135", + "95.181.237.136", + "95.181.237.139", + "95.181.237.140", + "95.181.237.141", + "95.181.237.142" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "97-1-ve.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.237.131", + "95.181.237.132", + "95.181.237.134", + "95.181.237.136", + "95.181.237.138", + "95.181.237.140", + "95.181.237.141", + "95.181.237.142", + "95.181.237.143", + "95.181.237.144" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "87-1-vn.cg-dialup.net", + "udp": true, + "ips": [ + "149.18.84.5", + "149.18.84.8", + "149.18.84.10", + "149.18.84.12", + "149.18.84.23", + "149.18.84.139", + "149.18.84.144", + "149.18.84.146", + "149.18.84.149", + "149.18.84.151" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "97-1-vn.cg-dialup.net", + "tcp": true, + "ips": [ + "149.18.84.5", + "149.18.84.12", + "149.18.84.18", + "149.18.84.21", + "149.18.84.25", + "149.18.84.130", + "149.18.84.134", + "149.18.84.138", + "149.18.84.143", + "149.18.84.146" + ] + } + ] + }, + "expressvpn": { + "version": 2, + "timestamp": 1658167237, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "albania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "31.171.152.38" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "algeria-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.33", + "85.203.22.39" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "andorra-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.21" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "argentina-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.18", + "45.91.48.28" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "armenia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.56" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "australia-brisbane-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.224.79", + "45.132.224.84" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "australia-melbourne-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.225.3", + "45.132.225.8" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "australia-perth-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.6.4", + "45.133.6.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "australia-sydney-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "181.214.175.87", + "181.214.175.134" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "australia-sydney-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.5.163", + "45.133.5.227" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "austria-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.95.243.205" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "bahamas-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "154.6.23.21" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "bangladesh-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.218" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "belarus-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.64", + "85.203.22.68" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "belgium-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.110.115.116" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "hostname": "bhutan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.32.107" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Bosnia And Herzegovina", + "hostname": "bosniaandherzegovina-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.98", + "85.203.22.105" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "brazil-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.252.94", + "191.101.252.116" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "brazil-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.43", + "45.91.48.48", + "45.91.48.53", + "45.91.48.58", + "45.91.48.63" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "hostname": "brunei-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.58" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "cambodia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "canada-montreal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "107.152.206.69", + "144.168.163.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "canada-montreal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "107.152.206.69", + "144.168.163.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "canada-toronto-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "198.144.145.4", + "198.144.145.10" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "canada-toronto-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "50.118.143.41", + "50.118.143.131" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "chile-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.78" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "colombia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.20", + "45.91.49.25" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "Costa Rica", + "hostname": "costarica-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "179.48.251.106" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "croatia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.10.56.237", + "85.10.56.244" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "cyprus-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.205.186.3", + "213.169.148.152" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Czech Republic", + "hostname": "czechrepublic-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "82.118.30.150" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "denmark-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.29.107.11", + "193.29.107.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "hostname": "ecuador-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.40" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "egypt-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.113" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "estonia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.195.237.147", + "185.195.237.154" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "finland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "196.244.192.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "france-paris-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.22.2", + "45.91.22.7", + "45.91.22.24", + "45.91.22.29", + "45.91.22.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "france-paris-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.91.77", + "193.68.91.173" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Strasbourg", + "hostname": "france-strasbourg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.180.110", + "191.96.180.194", + "191.96.180.204", + "191.96.180.222" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "georgia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.239.206.88" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "germany-darmstadt-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.247.59.250" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "germany-frankfurt-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.92.193", + "193.68.92.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Nuremberg", + "hostname": "germany-nuremberg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.36.109", + "212.30.36.131" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "greece-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.51.134.218", + "185.51.134.226" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "hostname": "guatemala-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.50" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hongkong-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.176.211.87", + "193.176.211.117" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hungary-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.219.236.214", + "91.219.237.148", + "91.219.238.100", + "91.219.239.222" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "iceland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.193.142", + "45.133.193.147", + "45.133.193.152", + "45.133.193.155" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "indonesia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "64.64.121.6" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "ireland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "37.120.235.19", + "37.120.235.36", + "77.81.139.115", + "185.192.16.190", + "188.241.178.132", + "188.241.178.140", + "188.241.178.156", + "188.241.178.172" + ] + }, + { + "vpn": "openvpn", + "country": "Isle Of Man", + "city": "Isle Of Man", + "hostname": "isleofman-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.129" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "israel-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "31.168.162.18", + "82.81.85.236", + "185.191.204.147" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Cosenza", + "hostname": "italy-cosenza-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "213.21.226.22", + "213.21.226.42", + "213.21.226.90", + "213.21.226.94", + "213.21.226.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "italy-milan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.20.143" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Kawasaki", + "hostname": "japan-kawasaki-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.48.19", + "194.5.48.47", + "194.5.48.84", + "194.5.48.108", + "194.5.48.130" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "japan-tokyo-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.208.11.10", + "185.208.11.151" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "japan-tokyo-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.8.68.16", + "45.8.68.27" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "hostname": "jersey-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.166" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "kazakhstan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.17.39.5" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "kenya-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "62.12.114.54" + ] + }, + { + "vpn": "openvpn", + "country": "Kyrgyzstan", + "hostname": "kyrgyzstan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.213.233.57" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "hostname": "laos-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "latvia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "196.196.52.3" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "liechtenstein-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.180" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "lithuania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.206.166.86" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "luxembourg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.221.132.212", + "185.221.132.220" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "hostname": "macau-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.134" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "malaysia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "5.182.16.237" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "malta-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.9" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mexico-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "179.61.245.10" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "moldova-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "178.17.168.130" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "monaco-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.210" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "mongolia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.61" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "montenegro-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.233" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "hostname": "myanmar-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.199" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "hostname": "nepal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.32.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "netherlands-amsterdam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.128.199.193", + "45.128.199.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Rotterdam", + "hostname": "netherlands-rotterdam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.37.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "The Hague", + "hostname": "netherlands-thehague-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.95.206", + "193.68.95.212" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "New Zealand", + "hostname": "newzealand-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.7.21", + "45.133.7.38" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "city": "North Macedonia", + "hostname": "macedonia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.193" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "norway-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.92.228.159", + "45.92.228.249" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "pakistan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.225" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "panama-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.55" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "hostname": "peru-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.70" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines Via Singapore", + "city": "Philippines Via Singapore", + "hostname": "ph-via-sing-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.17.38.71", + "84.17.38.232", + "84.17.39.103", + "138.199.25.144", + "138.199.25.214" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "poland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "188.212.135.78", + "188.212.135.239" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "portugal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "94.46.13.79", + "94.46.167.4", + "94.46.167.74", + "94.46.167.214" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "romania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.195.19.197", + "185.195.19.203" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "serbia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "89.38.224.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "CBD", + "hostname": "singapore-cbd-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.82.112" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Jurong", + "hostname": "singapore-jurong-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.54", + "185.233.133.211" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Marina Bay", + "hostname": "singapore-marinabay-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.156.183", + "45.85.107.86" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "slovakia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.255.220" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "slovenia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.133" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "South Africa", + "hostname": "southafrica-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "154.16.95.10", + "154.16.95.27", + "154.16.95.39" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "South Korea", + "hostname": "southkorea2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.92.24.40", + "185.92.24.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "hostname": "spain-barcelona-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.130.136.18", + "45.130.136.39", + "45.130.136.54", + "45.130.136.133", + "45.130.136.153" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "spain-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.33.143", + "212.30.33.213" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Sri Lanka", + "hostname": "srilanka-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "sweden-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.135.187.121", + "45.135.187.205", + "45.135.187.215" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "switzerland-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.45.2", + "85.203.45.8" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "switzerland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.226.145" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "taiwan-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.52.84" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "thailand-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.49.72" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "turkey-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.8.24.214" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Docklands", + "hostname": "uk-berkshire-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.208.9.191", + "185.208.9.244" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-east-london-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.84.216.74", + "45.84.216.183" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-london-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "5.157.128.8", + "5.157.128.24" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "usa-atlanta-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.157.75", + "45.80.157.170" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "usa-chicago-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "149.19.196.116", + "149.19.196.239" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "usa-dallas-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "23.230.233.137" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "usa-dallas-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.159.87", + "45.80.159.232" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver", + "hostname": "usa-denver-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.238.231.95", + "185.238.231.100" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "23.230.125.38" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-3-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.84.212.22", + "45.84.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.57.63", + "45.38.57.134" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles5-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.81.75.153", + "45.85.89.167" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "usa-miami-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.177.213", + "191.101.177.225" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.140.13" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey-3-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.85.91.41", + "45.85.91.71" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.174.183", + "191.101.174.209" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "usa-newyork-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "173.239.207.44", + "173.239.207.130", + "173.239.207.161", + "173.239.207.174" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City", + "hostname": "usa-saltlakecity-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.206.244", + "191.96.206.248" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Francisco", + "hostname": "usa-sanfrancisco-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.178.25", + "173.239.198.33" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "usa-seattle-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "50.118.162.1" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Tampa", + "hostname": "usa-tampa-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.170.163", + "191.96.170.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Washington DC", + "hostname": "usa-washingtondc-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.39.207.159", + "45.39.207.201", + "45.39.207.250" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "ukraine-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.130.81.55", + "45.130.81.63" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "hostname": "uruguay-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.75" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "hostname": "uzbekistan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.80", + "85.203.22.89" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "venezuela-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.85" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "vietnam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.39" + ] + } + ] + }, + "fastestvpn": { + "version": 2, + "timestamp": 1722367358, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.60" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.60" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.62" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.62" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "at-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "hostname": "at-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Wien", + "hostname": "at-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Wien", + "hostname": "at-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussel", + "hostname": "bel-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussel", + "hostname": "bel-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bel-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "hostname": "bel-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.192.124.75", + "185.192.124.77", + "185.192.124.104", + "185.192.124.131" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "hostname": "br-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.192.124.75", + "185.192.124.77", + "185.192.124.104", + "185.192.124.131" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.221.130" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "217.138.221.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.181.233.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.123" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.181.233.123" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "hk-dbl.jumptoserver.com", + "udp": true, + "ips": [ + "193.239.86.4" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "hk-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.239.86.4" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "clmb.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.136.11" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "hostname": "clmb.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.136.11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.122.154" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.84.122.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dk-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.92.82" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "hostname": "dk-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.92.82" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi-p2p.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi-p2p.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi2.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi2.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "fr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.40.99" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "hostname": "fr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.40.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "uk-dbl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.69" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "hostname": "uk-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.69" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "89.163.157.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "89.163.157.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus2.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "213.202.218.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus2.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "213.202.218.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "de-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.139.154" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "hostname": "de-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.139.154" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athina", + "hostname": "grc.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.92.33.82" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athina", + "hostname": "grc.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.92.33.82" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "HK", + "hostname": "hk.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.239.86.3" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "HK", + "hostname": "hk.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.239.86.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hng.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.165" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "hostname": "hng.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.144.165" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Mumbai", + "hostname": "in-vr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.241.2" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "Mumbai", + "hostname": "in-vr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.84.241.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ir.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "hostname": "ir.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Assago", + "hostname": "it-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.123" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Assago", + "hostname": "it-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "95.174.64.123" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "milan", + "hostname": "it-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.122" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "milan", + "hostname": "it-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "95.174.64.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.110" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lux1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.204.43" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "hostname": "lux1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.253.204.43" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "my-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "103.75.116.27", + "103.75.116.141", + "103.75.116.180" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "hostname": "my-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "103.75.116.27", + "103.75.116.141", + "103.75.116.180" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "147.78.1.112" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "hostname": "mx-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "147.78.1.112" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.74" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "hostname": "nl-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.75" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "hostname": "nl-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.75" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "nr-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.219.215.34" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "hostname": "nr-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.219.215.34" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Gdansk", + "hostname": "pl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.234" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Gdansk", + "hostname": "pl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.211.234" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.90.57.146" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.90.57.146" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.66.130" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.66.130" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "sg-dvpn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.173.101" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "hostname": "sg-dvpn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.207.173.101" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "city": "Moscow", + "hostname": "ru-vr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.226.58.5" + ] + }, + { + "vpn": "wireguard", + "country": "Russia", + "city": "Moscow", + "hostname": "ru-vr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.226.58.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "jp-dvpn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.108" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "hostname": "jp-dvpn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.108" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.193.138" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.193.138" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sg-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.173.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "hostname": "sg-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.207.173.99" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "svk.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.114.74" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "svk.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.114.74" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "sa-jn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "129.232.176.170" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "sa-jn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "129.232.176.170" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "103.249.31.36" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "103.249.31.36" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "hostname": "es-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.71.242" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "hostname": "es-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.71.242" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.16.234" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.16.234" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.10" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.213.10" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Izmir", + "hostname": "tr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.123.101.43" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Izmir", + "hostname": "tr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.123.101.43" + ] + }, + { + "vpn": "openvpn", + "country": "UAE", + "city": "Dubai", + "hostname": "uae.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.110" + ] + }, + { + "vpn": "wireguard", + "country": "UAE", + "city": "Dubai", + "hostname": "uae.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.9.249.110" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.67" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "hostname": "uk-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.67" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.68" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "hostname": "uk-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.68" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "hostname": "us-wt1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "23.105.160.221" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "hostname": "us-wt1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "23.105.160.221" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Anchorage", + "hostname": "nl-dbl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.76" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Anchorage", + "hostname": "nl-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.76" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn", + "hostname": "us-ash.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.56.98" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn", + "hostname": "us-ash.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.56.98" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "us-at.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "167.160.88.250" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta", + "hostname": "us-at.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "167.160.88.250" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "us-ch.jumptoserver.com", + "udp": true, + "ips": [ + "88.216.97.2" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago", + "hostname": "us-ch.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "88.216.97.2" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "us-dl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.92.50" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas", + "hostname": "us-dl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.92.50" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver", + "hostname": "us-dv1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.179.82" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver", + "hostname": "us-dv1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "139.28.179.82" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Fargo", + "hostname": "us-ash-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.56.100" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Fargo", + "hostname": "us-ash-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.56.100" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "us-mia.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.250" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami", + "hostname": "us-mia.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.157.250" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "us-ny.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "173.208.96.145" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York", + "hostname": "us-ny.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "173.208.96.145" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "us-se.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.176.74" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle", + "hostname": "us-se.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "64.42.176.74" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyyiv", + "hostname": "ur-kv.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "176.103.54.79" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyyiv", + "hostname": "ur-kv.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "176.103.54.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-streaming.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.70" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-streaming.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "us-dbl1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.179.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "hostname": "us-dbl1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "139.28.179.83" + ] + } + ] + }, + "giganews": { + "version": 1, + "timestamp": 1726044812, + "servers": [ + { + "vpn": "openvpn", + "region": "Algeria", + "hostname": "dz1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.104.253" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "hostname": "ar1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.35" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Melbourne", + "hostname": "au2.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.29" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Perth", + "hostname": "au3.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.27" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Sydney", + "hostname": "au1.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.21" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "hostname": "at1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.148.253" + ] + }, + { + "vpn": "openvpn", + "region": "Bahrain", + "hostname": "bh1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.63.253" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "hostname": "be1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.145.253" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "hostname": "br1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.33" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "hostname": "bg1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.167.253" + ] + }, + { + "vpn": "openvpn", + "region": "Canada", + "hostname": "ca1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.34" + ] + }, + { + "vpn": "openvpn", + "region": "Columbia", + "hostname": "co1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.37" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "hostname": "cr1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.39" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "hostname": "cz1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.164.253" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "hostname": "dk1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.154.253" + ] + }, + { + "vpn": "openvpn", + "region": "Dubai", + "hostname": "ae1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.101.253" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "hostname": "eg1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.10.253" + ] + }, + { + "vpn": "openvpn", + "region": "El Salvador", + "hostname": "sv1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.36" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "hostname": "fi1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.166.253" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "hostname": "fr1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.141.253" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "hostname": "de1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.128.253" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "hostname": "gr1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.11.253" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "hostname": "hk1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.37" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "hostname": "is1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.17.253" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "hostname": "in1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.60.253" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "hostname": "id1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.28" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "hostname": "ie1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.19.253" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "hostname": "il1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.59.253" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "hostname": "it1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.161.253" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "hostname": "jp1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.20.20" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "hostname": "lv1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.174.253" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "hostname": "li1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.177.253" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "hostname": "lt1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.173.253" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "hostname": "lu1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.165.253" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "hostname": "mo1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.31.253" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "hostname": "my1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.29" + ] + }, + { + "vpn": "openvpn", + "region": "Maldives", + "hostname": "mv1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.35" + ] + }, + { + "vpn": "openvpn", + "region": "Marshall Islands", + "hostname": "mh1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.34" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "hostname": "mx1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.24" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "hostname": "eu1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.135.253" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "hostname": "nz1.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.29" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "hostname": "no1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.163.253" + ] + }, + { + "vpn": "openvpn", + "region": "Pakistan", + "hostname": "pk1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.58.253" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "hostname": "pa1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.41" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "hostname": "ph1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.30" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "hostname": "pl1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.170.253" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "hostname": "pt1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.168.253" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "hostname": "qa1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.62.253" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "hostname": "ro1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.171.253" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "hostname": "ru1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.151.253" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "hostname": "sa1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.61.253" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "hostname": "sg1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.31" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "hostname": "sk1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.176.253" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "hostname": "si1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.175.253" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "hostname": "kr1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.20.21" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "hostname": "es1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.157.253" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "hostname": "se1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.159.253" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "hostname": "ch1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.41.253" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "hostname": "tw1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.32.253" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "hostname": "th1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.32" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "hostname": "tr1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.169.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Austin", + "hostname": "us3.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.28" + ] + }, + { + "vpn": "openvpn", + "region": "USA Chicago", + "hostname": "us6.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.22" + ] + }, + { + "vpn": "openvpn", + "region": "USA Los Angeles", + "hostname": "us1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.28.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Miami", + "hostname": "us4.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.31" + ] + }, + { + "vpn": "openvpn", + "region": "USA New York", + "hostname": "us5.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.32" + ] + }, + { + "vpn": "openvpn", + "region": "USA San Francisco", + "hostname": "us7.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.29.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Seattle", + "hostname": "us8.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.30.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Washington DC", + "hostname": "us2.vpn.giganews.com", + "udp": true, + "ips": [ + "209.160.115.253" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "hostname": "ua1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.172.253" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "hostname": "uk1.vpn.giganews.com", + "udp": true, + "ips": [ + "178.208.168.253" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "hostname": "uy1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.26" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "hostname": "vn1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.33" + ] + } + ] + }, + "hidemyass": { + "version": 2, + "timestamp": 1632268040, + "servers": [ + { + "vpn": "openvpn", + "country": "Afghanistan", + "city": "Kabul", + "hostname": "af.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.236", + "5.62.63.232" + ] + }, + { + "vpn": "openvpn", + "country": "Aland Islands", + "city": "Mariehamn", + "hostname": "ax.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.248", + "5.62.63.244" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "al.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.240", + "5.62.63.236" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Annaba", + "hostname": "dz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.244", + "5.62.63.240" + ] + }, + { + "vpn": "openvpn", + "country": "American Samoa", + "city": "Pago Pago", + "hostname": "as.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.4", + "5.62.58.4" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorrala Vella", + "hostname": "ad.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.4", + "5.62.62.4" + ] + }, + { + "vpn": "openvpn", + "country": "Angola", + "city": "Luanda", + "hostname": "ao.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.8", + "5.62.62.8" + ] + }, + { + "vpn": "openvpn", + "country": "Anguilla", + "city": "The Valley", + "hostname": "ai.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.8", + "5.62.58.8" + ] + }, + { + "vpn": "openvpn", + "country": "Antiguaand Barbuda", + "city": "Saint John's", + "hostname": "ag.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.12", + "5.62.58.12" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "ar.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.16", + "5.62.58.16" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Tsaghkadzor", + "hostname": "am.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.12", + "5.62.62.12" + ] + }, + { + "vpn": "openvpn", + "country": "Aruba", + "city": "Palm Beach", + "hostname": "aw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.20", + "5.62.58.20" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.23.3", + "5.62.23.18" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Carinthia", + "city": "Klagenfurt", + "hostname": "at.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.3", + "91.132.139.115", + "94.198.41.94", + "94.198.41.110", + "94.198.41.142", + "185.183.107.163", + "185.210.219.99", + "185.244.212.30", + "185.244.212.35", + "185.244.212.190" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Qusar", + "hostname": "az.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.16", + "5.62.62.16" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Freeport", + "hostname": "bs.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.24", + "5.62.58.24" + ] + }, + { + "vpn": "openvpn", + "country": "Bahrain", + "city": "Manama", + "hostname": "bh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.20", + "5.62.62.20" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka", + "hostname": "bd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.24", + "5.62.62.24" + ] + }, + { + "vpn": "openvpn", + "country": "Barbados", + "city": "Worthing", + "hostname": "bb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.28", + "5.62.58.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "hostname": "by.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.28", + "5.62.62.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "be.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.20.24", + "5.62.20.33", + "5.62.20.34", + "5.62.20.44" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City", + "hostname": "bz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.32", + "5.62.58.32" + ] + }, + { + "vpn": "openvpn", + "country": "Benin", + "city": "Cotonou", + "hostname": "bj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.32", + "5.62.62.32" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "city": "Hamilton", + "hostname": "bm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.36", + "5.62.58.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu", + "hostname": "bt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.36", + "5.62.62.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz", + "hostname": "bo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.40", + "5.62.58.40" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia", + "city": "Sarajevo", + "hostname": "ba.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.40", + "5.62.62.40" + ] + }, + { + "vpn": "openvpn", + "country": "Botswana", + "city": "Gaborone", + "hostname": "bw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.44", + "5.62.62.44" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Joao Pessoa", + "hostname": "br.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "181.215.238.207", + "185.54.230.50", + "185.54.230.130", + "185.54.230.170" + ] + }, + { + "vpn": "openvpn", + "country": "British Virgin Islands", + "city": "Tortola", + "hostname": "vg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.44", + "5.62.58.44" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "city": "Jerudong", + "hostname": "bn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.48", + "5.62.62.48" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.52", + "5.62.62.52" + ] + }, + { + "vpn": "openvpn", + "country": "Burkina Faso", + "city": "Ouagadougou", + "hostname": "bf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.56", + "5.62.62.56" + ] + }, + { + "vpn": "openvpn", + "country": "Burundi", + "city": "Bujumbura", + "hostname": "bi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.60", + "5.62.62.60" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.64", + "5.62.62.64" + ] + }, + { + "vpn": "openvpn", + "country": "Cameroon", + "city": "Yaounde", + "hostname": "cm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.68", + "5.62.62.68" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "51.161.54.15", + "51.161.66.111", + "54.39.219.127", + "158.69.234.207", + "192.99.89.207", + "192.99.110.159", + "198.27.103.191" + ] + }, + { + "vpn": "openvpn", + "country": "Cape Verde", + "city": "Cidade Velha", + "hostname": "cv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.72", + "5.62.62.72" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Spot Bay", + "hostname": "ky.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.48", + "5.62.58.48" + ] + }, + { + "vpn": "openvpn", + "country": "Central African Republic", + "city": "Bangassou", + "hostname": "cf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.76", + "5.62.62.76" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "hostname": "td.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.80", + "5.62.62.80" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "cl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.52", + "5.62.58.52" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "region": "Sichuan Sheng", + "city": "Chengdu", + "hostname": "cn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.133", + "5.62.41.169", + "5.62.41.181", + "84.17.46.134", + "185.246.210.130", + "185.246.210.162", + "212.102.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "Christmas Island", + "city": "Flying Fish Cove", + "hostname": "cx.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.88", + "5.62.62.84" + ] + }, + { + "vpn": "openvpn", + "country": "Cocos Islands", + "city": "West Island", + "hostname": "cc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.92", + "5.62.62.88" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "San Andres", + "hostname": "co.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.60", + "5.62.58.56" + ] + }, + { + "vpn": "openvpn", + "country": "Comoros", + "city": "Ouani", + "hostname": "km.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.96", + "5.62.62.92" + ] + }, + { + "vpn": "openvpn", + "country": "Congo", + "city": "Kinshasa", + "hostname": "cd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.100", + "5.62.62.96" + ] + }, + { + "vpn": "openvpn", + "country": "Cook Islands", + "city": "Avarua", + "hostname": "ck.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.64", + "5.62.58.60" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "cr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.68", + "5.62.58.64" + ] + }, + { + "vpn": "openvpn", + "country": "Coted`Ivoire", + "city": "Yamoussoukro", + "hostname": "ci.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.104", + "5.62.62.100" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "hr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.228", + "5.62.63.224" + ] + }, + { + "vpn": "openvpn", + "country": "Cuba", + "city": "Havana", + "hostname": "cu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.72", + "5.62.58.68" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Limassol", + "hostname": "cy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.108", + "5.62.62.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.246.210.130", + "185.246.210.146", + "185.246.210.162", + "212.102.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "dk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.195", + "37.120.232.78", + "37.120.232.110", + "37.120.232.126", + "37.120.232.142", + "95.174.65.142", + "95.174.65.158", + "185.212.169.174", + "185.212.169.190", + "185.212.169.206" + ] + }, + { + "vpn": "openvpn", + "country": "Dominica", + "city": "Marigot", + "hostname": "dm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.76", + "5.62.58.72" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Punta Cana", + "hostname": "do.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.80", + "5.62.58.76" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito", + "hostname": "ec.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.84", + "5.62.58.80" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "hostname": "eg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.112", + "5.62.62.108" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "city": "San Miguel", + "hostname": "sv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.88", + "5.62.58.84" + ] + }, + { + "vpn": "openvpn", + "country": "Equatorial Guinea", + "city": "Malabo", + "hostname": "gq.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.116", + "5.62.62.112" + ] + }, + { + "vpn": "openvpn", + "country": "Eritrea", + "city": "Asmara", + "hostname": "er.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.120", + "5.62.62.116" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "ee.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.124", + "5.62.62.120" + ] + }, + { + "vpn": "openvpn", + "country": "Ethiopia", + "city": "Gondar", + "hostname": "et.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.128", + "5.62.62.124" + ] + }, + { + "vpn": "openvpn", + "country": "Falkland Islands", + "city": "Stanley", + "hostname": "fk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.92", + "5.62.58.88" + ] + }, + { + "vpn": "openvpn", + "country": "Faroe Islands", + "city": "Torshavn", + "hostname": "fo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.132", + "5.62.62.128" + ] + }, + { + "vpn": "openvpn", + "country": "Fiji", + "city": "Nadi", + "hostname": "fj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.96", + "5.62.58.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.77.217.16", + "185.77.217.31", + "185.77.217.61", + "185.77.217.76", + "185.77.217.91", + "185.77.217.106" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "fr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.90", + "84.17.43.103", + "84.17.43.116", + "185.93.2.114", + "212.83.174.92", + "212.83.190.239" + ] + }, + { + "vpn": "openvpn", + "country": "Gabon", + "city": "Libreville", + "hostname": "ga.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.136", + "5.62.62.132" + ] + }, + { + "vpn": "openvpn", + "country": "Gambia", + "city": "Serekunda", + "hostname": "gm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.140", + "5.62.62.136" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi", + "hostname": "ge.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.144", + "5.62.62.140" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt", + "hostname": "de.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "5.62.41.181" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "city": "Accra", + "hostname": "gh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.148", + "5.62.62.144" + ] + }, + { + "vpn": "openvpn", + "country": "Gibraltar", + "city": "Catalan", + "hostname": "gi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.152", + "5.62.62.148" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Patras", + "hostname": "gr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.156", + "5.62.62.152" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "city": "Ilulissat", + "hostname": "gl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.160", + "5.62.62.156" + ] + }, + { + "vpn": "openvpn", + "country": "Grenada", + "city": "Saint George", + "hostname": "gd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.100", + "5.62.58.96" + ] + }, + { + "vpn": "openvpn", + "country": "Guadeloupe", + "city": "Le Gosier", + "hostname": "gp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.104", + "5.62.58.100" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "city": "Tamuning", + "hostname": "gu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.108", + "5.62.60.164" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City", + "hostname": "gt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.112", + "5.62.58.104" + ] + }, + { + "vpn": "openvpn", + "country": "Guinea", + "city": "Conakry", + "hostname": "gn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.172", + "5.62.62.164" + ] + }, + { + "vpn": "openvpn", + "country": "Guinea-Bissau", + "city": "Bissau", + "hostname": "gw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.168", + "5.62.62.160" + ] + }, + { + "vpn": "openvpn", + "country": "Guyana", + "city": "Barima-Waini", + "hostname": "gy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.116", + "5.62.58.108" + ] + }, + { + "vpn": "openvpn", + "country": "Haiti", + "city": "Cap-Haitien", + "hostname": "ht.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.120", + "5.62.58.112" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa", + "hostname": "hn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.124", + "5.62.58.116" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.78", + "185.189.114.62", + "185.252.223.62" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "is.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "82.221.112.243", + "82.221.112.244" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Maharashtra", + "city": "Mumbai", + "hostname": "in.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.133", + "5.62.41.145", + "84.17.46.158", + "84.17.46.206", + "84.17.46.251", + "185.246.210.178", + "212.102.38.173" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "hostname": "id.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.133", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "84.17.46.134", + "84.17.46.158", + "84.17.46.182", + "84.17.46.251", + "185.246.210.130", + "185.246.210.146", + "185.246.210.178", + "185.246.210.194" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "city": "Isfahan", + "hostname": "ir.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.176", + "5.62.62.168" + ] + }, + { + "vpn": "openvpn", + "country": "Iraq", + "city": "Baghdad", + "hostname": "iq.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.180", + "5.62.62.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "78.153.199.5", + "78.153.199.29", + "78.153.199.243", + "81.17.242.165", + "146.70.48.78", + "146.70.48.94" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Petah Tikva", + "hostname": "il.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.185.132.62", + "185.185.132.110", + "185.185.133.78", + "185.185.133.190" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Pordenone", + "city": "Porcia", + "hostname": "it.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "45.87.184.15", + "45.87.184.31", + "45.87.184.79", + "45.87.184.95", + "84.17.58.168", + "84.17.58.213", + "84.17.59.45", + "84.17.59.59" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Montego Bay", + "hostname": "jm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.128", + "5.62.58.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.162", + "156.146.35.184", + "156.146.35.185", + "212.102.51.235" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman", + "hostname": "jo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.188", + "5.62.62.180" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Shymkent", + "hostname": "kz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.192", + "5.62.62.184" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi", + "hostname": "ke.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.196", + "5.62.62.188" + ] + }, + { + "vpn": "openvpn", + "country": "Kiribati", + "city": "Umwa Village", + "hostname": "ki.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.132", + "5.62.58.124" + ] + }, + { + "vpn": "openvpn", + "country": "Kuwait", + "city": "Kuwait City", + "hostname": "kw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.200", + "5.62.62.192" + ] + }, + { + "vpn": "openvpn", + "country": "Kyrgyzstan", + "city": "Bishkek", + "hostname": "kg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.204", + "5.62.62.196" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "city": "Thakhek", + "hostname": "la.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.208", + "5.62.62.200" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "lv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.212", + "5.62.62.204" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut", + "hostname": "lb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.216", + "5.62.62.208" + ] + }, + { + "vpn": "openvpn", + "country": "Lesotho", + "city": "Peka", + "hostname": "ls.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.220", + "5.62.62.212" + ] + }, + { + "vpn": "openvpn", + "country": "Liberia", + "city": "Monrovia", + "hostname": "lr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.224", + "5.62.62.216" + ] + }, + { + "vpn": "openvpn", + "country": "Libya", + "city": "Ghadames", + "hostname": "ly.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.228", + "5.62.62.220" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz", + "hostname": "li.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.232", + "5.62.62.224" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "hostname": "lt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.236", + "5.62.62.228" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.38.162.123", + "92.38.162.148", + "92.38.162.151", + "92.38.172.25" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "city": "Macau", + "hostname": "mo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.240", + "5.62.62.232" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje", + "hostname": "mk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.244", + "5.62.62.236" + ] + }, + { + "vpn": "openvpn", + "country": "Madagascar", + "city": "Antsiranana", + "hostname": "mg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.248", + "5.62.62.240" + ] + }, + { + "vpn": "openvpn", + "country": "Malawi", + "city": "Lilongwe", + "hostname": "mw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.252", + "5.62.62.244" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.157", + "84.17.46.134", + "84.17.46.206", + "84.17.46.251", + "185.246.210.178" + ] + }, + { + "vpn": "openvpn", + "country": "Maldives", + "city": "Male", + "hostname": "mv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.0", + "5.62.62.248" + ] + }, + { + "vpn": "openvpn", + "country": "Mali", + "city": "Bamako", + "hostname": "ml.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.4", + "5.62.62.252" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "city": "Cospicua", + "hostname": "mt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.8", + "5.62.63.0" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritius", + "city": "Port Louis", + "hostname": "mu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.16", + "5.62.63.8" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Sinaloa", + "city": "Mazatlan", + "hostname": "mx.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "31.14.72.16", + "31.14.72.23", + "31.14.72.30", + "31.14.72.44", + "31.14.72.51" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "md.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.20", + "5.62.63.12" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco", + "hostname": "mc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.24", + "5.62.63.16" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Suhbaatar", + "hostname": "mn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.28", + "5.62.63.20" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Becici", + "hostname": "me.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.32", + "5.62.63.24" + ] + }, + { + "vpn": "openvpn", + "country": "Montserrat", + "city": "Plymouth", + "hostname": "ms.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.136", + "5.62.58.128" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Fes", + "hostname": "ma.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.36", + "5.62.63.28" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Pemba", + "hostname": "mz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.40", + "5.62.63.32" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon", + "hostname": "mm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.44", + "5.62.63.36" + ] + }, + { + "vpn": "openvpn", + "country": "Namibia", + "city": "Windhoek", + "hostname": "na.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.48", + "5.62.63.40" + ] + }, + { + "vpn": "openvpn", + "country": "Nauru", + "city": "Anabar", + "hostname": "nr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.140", + "5.62.58.132" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Janakpur", + "hostname": "np.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.52", + "5.62.63.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "nl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.46.134", + "84.17.46.158", + "84.17.46.182", + "84.17.46.206" + ] + }, + { + "vpn": "openvpn", + "country": "New Caledonia", + "city": "Noumea", + "hostname": "nc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.144", + "5.62.58.136" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "nz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "103.76.164.3", + "103.76.164.19", + "103.108.94.243", + "103.231.91.131" + ] + }, + { + "vpn": "openvpn", + "country": "Nicaragua", + "city": "Managua", + "hostname": "ni.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.148", + "5.62.58.140" + ] + }, + { + "vpn": "openvpn", + "country": "Niger", + "city": "Niamey", + "hostname": "ne.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.56", + "5.62.63.48" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "city": "Lagos", + "hostname": "ng.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.60", + "5.62.63.52" + ] + }, + { + "vpn": "openvpn", + "country": "Niue", + "city": "Alofi", + "hostname": "nu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.152", + "5.62.58.144" + ] + }, + { + "vpn": "openvpn", + "country": "Norfolk Island", + "city": "Kingston", + "hostname": "nf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.156", + "5.62.58.148" + ] + }, + { + "vpn": "openvpn", + "country": "North Korea", + "city": "Manpo", + "hostname": "kp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.160", + "5.62.61.64" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "no.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.101.32.48", + "217.170.201.254", + "217.170.203.128", + "217.170.204.160", + "217.170.204.223", + "217.170.206.31" + ] + }, + { + "vpn": "openvpn", + "country": "Oman", + "city": "Salalah", + "hostname": "om.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.68", + "5.62.63.56" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Karachi", + "hostname": "pk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.72", + "5.62.63.60" + ] + }, + { + "vpn": "openvpn", + "country": "Palau", + "city": "Melekeok", + "hostname": "pw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.164", + "5.62.61.76" + ] + }, + { + "vpn": "openvpn", + "country": "Palestine", + "city": "Bethlehem", + "hostname": "ps.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.80", + "5.62.63.64" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City", + "hostname": "pa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.168", + "5.62.58.152" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "city": "Alotau", + "hostname": "pg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.172", + "5.62.61.84" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Boqueron", + "hostname": "py.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.176", + "5.62.58.156" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Cusco", + "hostname": "pe.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.180", + "5.62.58.160" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Baguio", + "hostname": "ph.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.184", + "5.62.61.88" + ] + }, + { + "vpn": "openvpn", + "country": "Pitcairn Islands", + "city": "Adamstown", + "hostname": "pn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.188", + "5.62.58.164" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "pl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.55.26", + "185.246.208.34", + "185.246.208.130", + "185.246.208.157" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Leiria", + "hostname": "pt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.113", + "91.250.240.193", + "194.39.126.135" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "city": "San Juan", + "hostname": "pr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.192", + "5.62.58.168" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "hostname": "qa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.92", + "5.62.63.68" + ] + }, + { + "vpn": "openvpn", + "country": "Republicof Djibouti", + "city": "Djibouti", + "hostname": "dj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.96", + "5.62.63.72" + ] + }, + { + "vpn": "openvpn", + "country": "Republicof Singapore", + "city": "Singapore", + "hostname": "sg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.223.85.20", + "92.223.85.75", + "92.223.85.77", + "92.223.85.106", + "92.223.85.113", + "92.223.86.8", + "92.223.86.46" + ] + }, + { + "vpn": "openvpn", + "country": "Republicofthe Congo", + "city": "Brazzaville", + "hostname": "cg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.100", + "5.62.63.76" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.104", + "5.62.63.80" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "city": "Moscow", + "hostname": "ru.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.19.47", + "5.62.19.55", + "5.62.19.63" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "hostname": "rw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.108", + "5.62.63.84" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Helena", + "city": "Tristan Da Cunha", + "hostname": "sh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.112", + "5.62.63.88" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Kittsand Nevis", + "city": "Basseterre", + "hostname": "kn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.196", + "5.62.58.172" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Lucia", + "city": "Gros Islet", + "hostname": "lc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.200", + "5.62.58.176" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Pierreand Miquelon", + "city": "Saint-Pierre", + "hostname": "pm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.58.180", + "5.62.63.92" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Vincentandthe Grenadines", + "city": "Kingstown", + "hostname": "vc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.204", + "5.62.58.184" + ] + }, + { + "vpn": "openvpn", + "country": "Samoa", + "city": "Matatufu", + "hostname": "ws.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.208", + "5.62.58.188" + ] + }, + { + "vpn": "openvpn", + "country": "San Marino", + "city": "San Marino", + "hostname": "sm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.116", + "5.62.63.96" + ] + }, + { + "vpn": "openvpn", + "country": "Sao Tomeand Principe", + "city": "Sao Tome", + "hostname": "st.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.120", + "5.62.63.100" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "city": "Riyadh", + "hostname": "sa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.124", + "5.62.63.104" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "hostname": "sn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.128", + "5.62.63.108" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.132", + "5.62.63.112" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.140", + "5.62.63.120" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Vrhnika", + "hostname": "si.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.144", + "5.62.63.124" + ] + }, + { + "vpn": "openvpn", + "country": "Solomon Islands", + "city": "Honiara", + "hostname": "sb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.212", + "5.62.58.192" + ] + }, + { + "vpn": "openvpn", + "country": "Somalia", + "city": "Afgooye", + "hostname": "so.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.148", + "5.62.63.128" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "za.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "102.165.47.160", + "102.165.47.176", + "154.70.155.144" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.54.229.41", + "185.54.229.57", + "185.54.229.73" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Alicante", + "hostname": "es.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "82.102.17.126", + "89.38.226.238", + "217.138.218.126" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Moratuwa", + "hostname": "lk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.152", + "5.62.63.132" + ] + }, + { + "vpn": "openvpn", + "country": "Sudan", + "city": "Khartoum", + "hostname": "sd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.156", + "5.62.63.136" + ] + }, + { + "vpn": "openvpn", + "country": "Suriname", + "city": "Paramaribo", + "hostname": "sr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.216", + "5.62.58.196" + ] + }, + { + "vpn": "openvpn", + "country": "Svalbardand Jan Mayen", + "city": "Longyearbyen", + "hostname": "sj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.160", + "5.62.63.140" + ] + }, + { + "vpn": "openvpn", + "country": "Swaziland", + "city": "Manzini", + "hostname": "sz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.220", + "5.62.58.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Nacka", + "hostname": "se.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.118", + "31.3.152.170", + "31.3.153.140", + "37.46.121.240", + "128.127.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.52.141", + "84.17.52.154", + "84.17.52.167", + "84.17.52.180", + "84.17.52.240", + "89.187.165.179" + ] + }, + { + "vpn": "openvpn", + "country": "Syria", + "city": "Ad Darah", + "hostname": "sy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.164", + "5.62.63.144" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.133", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "5.62.41.181", + "84.17.46.182", + "185.246.210.130", + "185.246.210.146", + "185.246.210.178", + "185.246.210.194" + ] + }, + { + "vpn": "openvpn", + "country": "Tajikistan", + "city": "Dushanbe", + "hostname": "tj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.168", + "5.62.63.148" + ] + }, + { + "vpn": "openvpn", + "country": "Tanzania", + "city": "Arusha", + "hostname": "tz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.172", + "5.62.63.152" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "th.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.176", + "5.62.63.156" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lome", + "hostname": "tg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.180", + "5.62.63.160" + ] + }, + { + "vpn": "openvpn", + "country": "Tokelau", + "city": "Atafu", + "hostname": "tk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.224", + "5.62.58.204" + ] + }, + { + "vpn": "openvpn", + "country": "Tonga", + "city": "Nukualofa", + "hostname": "to.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.228", + "5.62.58.208" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidadand Tobago", + "city": "San Fernando", + "hostname": "tt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.232", + "5.62.58.212" + ] + }, + { + "vpn": "openvpn", + "country": "Tunisia", + "city": "Mahdia", + "hostname": "tn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.184", + "5.62.63.164" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "tr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.38.180.63", + "92.38.180.76", + "92.38.180.86" + ] + }, + { + "vpn": "openvpn", + "country": "Turkmenistan", + "city": "Ashgabat", + "hostname": "tm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.188", + "5.62.63.168" + ] + }, + { + "vpn": "openvpn", + "country": "Turksand Caicos Islands", + "city": "Balfour Town", + "hostname": "tc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.236", + "5.62.58.216" + ] + }, + { + "vpn": "openvpn", + "country": "Tuvalu", + "city": "Vaitupu", + "hostname": "tv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.240", + "5.62.58.220" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "hostname": "gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "62.128.207.110", + "62.128.217.85", + "62.128.217.112", + "80.75.64.66", + "87.117.225.146", + "87.117.225.160", + "87.117.225.174", + "109.169.34.42", + "109.169.34.62" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "london.gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.43.202", + "5.62.43.218", + "5.62.43.229", + "77.234.43.130", + "77.234.43.166", + "77.234.43.175", + "77.234.43.185" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "region": "Scotland", + "city": "Glasgow", + "hostname": "scotland.gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "62.128.207.110", + "62.128.217.85", + "62.128.217.112", + "87.117.225.146", + "87.117.225.160", + "109.169.34.23", + "109.169.34.62" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "hostname": "us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.84", + "5.62.59.64" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Alabama", + "city": "Montgomery", + "hostname": "al.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "95.142.127.16", + "95.142.127.25" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Alaska", + "city": "Anchorage", + "hostname": "ak.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.252", + "5.62.58.232" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Arizona", + "city": "Phoenix", + "hostname": "az.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "23.83.130.34", + "23.83.131.211", + "23.83.131.215", + "23.83.132.155", + "23.83.132.176", + "23.83.185.20" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Arkansas", + "city": "Magnolia", + "hostname": "ar.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.0", + "5.62.58.236" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "California", + "city": "Los Angeles", + "hostname": "ca.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "67.201.33.54", + "107.181.178.97", + "143.244.51.66", + "162.253.68.177", + "162.253.68.209", + "162.253.68.241", + "192.252.220.49" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Connecticut", + "city": "Trumbull", + "hostname": "ct.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.16.16", + "5.62.16.25" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Delaware", + "city": "Wilmington", + "hostname": "de.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.4", + "5.62.58.240" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Florida", + "city": "Miami", + "hostname": "fl.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "171.22.76.15", + "171.22.76.47", + "171.22.76.63", + "171.22.76.79", + "171.22.76.95" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Georgia", + "city": "Atlanta", + "hostname": "ga.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.24.15", + "5.62.24.31", + "5.62.24.46", + "5.62.24.61", + "66.115.181.161", + "66.115.181.209", + "66.115.181.225" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Hawaii", + "city": "Honolulu", + "hostname": "hi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "131.100.2.51", + "131.100.2.99", + "131.100.2.121", + "131.100.2.222" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Idaho", + "city": "Idaho Falls", + "hostname": "id.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.12", + "5.62.58.248" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Illinois", + "city": "Chicago", + "hostname": "il.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "154.16.241.255", + "181.214.58.176", + "181.214.61.48", + "181.214.61.64", + "181.214.99.159", + "181.214.102.159", + "181.214.107.31", + "181.214.107.47", + "181.214.107.63", + "181.215.127.240", + "191.101.170.30" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Indiana", + "city": "South Bend", + "hostname": "in.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "198.134.108.67", + "198.134.109.131" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Iowa", + "city": "Des Moines", + "hostname": "ia.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.104", + "5.62.59.84" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Kansas", + "city": "Wichita", + "hostname": "ks.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.16", + "5.62.58.252" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Kentucky", + "city": "Louisville", + "hostname": "ky.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.20", + "5.62.59.0" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Louisiana", + "city": "New Orleans", + "hostname": "la.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.24", + "5.62.59.4" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Maine", + "city": "Bath", + "hostname": "me.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.28", + "5.62.59.8" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Maryland", + "city": "Baltimore", + "hostname": "md.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.32", + "5.62.59.12" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Massachusetts", + "city": "Boston", + "hostname": "ma.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "38.146.55.35", + "38.146.55.115", + "38.146.57.205", + "38.146.57.253", + "38.242.7.243", + "154.3.129.61", + "154.3.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Michigan", + "city": "Lansing", + "hostname": "mi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.36", + "5.62.59.16" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Minnesota", + "city": "Saint Paul", + "hostname": "mn.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.108", + "5.62.59.88" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Mississippi", + "city": "Louisville", + "hostname": "ms.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.40", + "5.62.59.20" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Missouri", + "city": "Kansas City", + "hostname": "mo.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "209.239.115.164", + "209.239.115.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Montana", + "city": "Billings", + "hostname": "mt.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.116", + "5.62.59.92" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Nebraska", + "city": "Omaha", + "hostname": "ne.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.44", + "5.62.59.24" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Nevada", + "city": "Las Vegas", + "hostname": "nv.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "76.164.200.114", + "76.164.202.190", + "76.164.205.194", + "76.164.224.211", + "76.164.225.75" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "New Hampshire", + "city": "Bedford", + "hostname": "nh.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.48", + "5.62.59.28" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "New York", + "city": "Manhattan", + "hostname": "ny.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.103", + "156.146.36.116", + "212.102.33.50", + "212.102.33.77", + "212.102.33.90", + "212.102.33.176", + "212.102.33.192", + "212.102.33.208", + "212.102.33.224", + "212.102.33.251" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "North Carolina", + "city": "Asheville", + "hostname": "nc.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "104.247.208.78", + "104.247.208.94", + "104.247.208.110", + "104.247.208.126", + "104.247.208.142", + "104.247.208.158", + "104.247.208.174" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "North Dakota", + "city": "Grand Forks", + "hostname": "nd.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.60", + "5.62.59.40" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Ohio", + "city": "Columbus", + "hostname": "oh.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "199.114.218.99", + "199.114.218.115" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Oklahoma", + "city": "Oklahoma City", + "hostname": "ok.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "216.107.129.115", + "216.107.129.131" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Pennsylvania", + "city": "Wilkes-Barre", + "hostname": "pa.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.64", + "5.62.59.44" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Rhode Island", + "city": "Providence", + "hostname": "ri.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.68", + "5.62.59.48" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "South Carolina", + "city": "Columbia", + "hostname": "sc.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.72", + "5.62.59.52" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "South Dakota", + "city": "Sioux Falls", + "hostname": "sd.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.76", + "5.62.59.56" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Tennessee", + "city": "Nashville", + "hostname": "tn.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.80", + "5.62.59.60" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Texas", + "city": "Dallas", + "hostname": "tx.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "89.187.164.144", + "89.187.164.176", + "156.146.38.154", + "212.102.40.13", + "212.102.40.141", + "212.102.40.154" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Utah", + "city": "Salt Lake City", + "hostname": "ut.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "69.36.169.129", + "199.189.106.235", + "199.189.106.239", + "199.189.106.245", + "199.189.106.251", + "209.95.34.73", + "209.95.56.199" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Vermont", + "city": "Rutland", + "hostname": "vt.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.84", + "5.62.59.64" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Virginia", + "city": "Ashburn", + "hostname": "va.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "198.98.183.37", + "198.98.183.133", + "198.98.183.152" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Washington", + "city": "Seattle", + "hostname": "wa.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "66.115.149.65", + "66.115.149.81", + "66.115.149.97", + "172.98.86.150", + "199.187.211.46", + "199.187.211.92", + "199.187.211.142", + "199.187.211.157", + "199.187.211.232", + "199.187.211.247", + "199.229.250.241" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "West Virginia", + "city": "Philippi", + "hostname": "wv.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.88", + "5.62.59.68" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Wisconsin", + "city": "Madison", + "hostname": "wi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "204.15.110.131", + "204.15.110.163" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Wyoming", + "city": "Cheyenne", + "hostname": "wy.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.92", + "5.62.59.72" + ] + }, + { + "vpn": "openvpn", + "country": "Uganda", + "city": "Kampala", + "hostname": "ug.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.192", + "5.62.63.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Odessa", + "hostname": "ua.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "143.244.45.141", + "143.244.45.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.200", + "5.62.63.188" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "city": "Montevideo", + "hostname": "uy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.244", + "5.62.58.224" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "city": "Samarkand", + "hostname": "uz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.204", + "5.62.63.192" + ] + }, + { + "vpn": "openvpn", + "country": "Vanuatu", + "city": "Loltong", + "hostname": "vu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.96", + "5.62.59.76" + ] + }, + { + "vpn": "openvpn", + "country": "Vatican", + "city": "Vatican City", + "hostname": "va.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.208", + "5.62.63.196" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas", + "hostname": "ve.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.100", + "5.62.59.80" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City", + "hostname": "vn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.212", + "5.62.63.200" + ] + }, + { + "vpn": "openvpn", + "country": "Yemen", + "city": "Sanaa", + "hostname": "ye.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.216", + "5.62.63.204" + ] + }, + { + "vpn": "openvpn", + "country": "Zambia", + "city": "Lusaka", + "hostname": "zm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.220", + "5.62.63.208" + ] + }, + { + "vpn": "openvpn", + "country": "Zimbabwe", + "city": "Harare", + "hostname": "zw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.224", + "5.62.63.212" + ] + } + ] + }, + "ipvanish": { + "version": 2, + "timestamp": 1731010544, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c01.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.48" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c02.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.3" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c03.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.5" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c04.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.7" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c05.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.9" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c06.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.50" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c07.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.52" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.130" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.136" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.142" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorra La Vella Virtual", + "hostname": "adv-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.194" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorra La Vella Virtual", + "hostname": "adv-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.200" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.10" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.16" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.22" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.28" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c05.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.35" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Yerevan Virtual", + "hostname": "evn-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Yerevan Virtual", + "hostname": "evn-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.168" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c01.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c02.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.7" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c03.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c04.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c05.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c06.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.23" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.68" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.70" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.72" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.85" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.141" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.39" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.45" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.57" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.63" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.69" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.87" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.93" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.36" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.38" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.48" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.53" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b01.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.4" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b02.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b03.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.16" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b04.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.22" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b05.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.28" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b06.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.34" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b07.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b08.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.46" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b09.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.52" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b10.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.58" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b11.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.64" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b12.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.70" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.76" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.82" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.88" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.94" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.112" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b20.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.118" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b21.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.124" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b22.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.130" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b23.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.136" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b24.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.142" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.201" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c09.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.207" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c10.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.213" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c11.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c12.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.225" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.8" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.14" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.20" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.26" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.136" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.142" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.148" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.154" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.160" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.166" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.35" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku Virtual", + "hostname": "gyd-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.130" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku Virtual", + "hostname": "gyd-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.136" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.200" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.206" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.212" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka Virtual", + "hostname": "dac-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.65" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka Virtual", + "hostname": "dac-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.71" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.44" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.2" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.14" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.20" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.32" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.38" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.130" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.136" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.148" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.154" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.160" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.166" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.172" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.178" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.184" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.130" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.136" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.148" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu Virtual", + "hostname": "pbh-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu Virtual", + "hostname": "pbh-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.200" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz Virtual", + "hostname": "vvi-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.214.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz Virtual", + "hostname": "vvi-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.214.9" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Sarajevo Virtual", + "hostname": "sjj-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Sarajevo Virtual", + "hostname": "sjj-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.200" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c01.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.2" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c02.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.8" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c03.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.14" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.20" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.26" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.32" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.38" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.130" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.136" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.142" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c11.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.148" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c12.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.154" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.160" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "city": "Bandar Seri Begawan Virtual", + "hostname": "bwn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.65" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "city": "Bandar Seri Begawan Virtual", + "hostname": "bwn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.71" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c01.ipvanish.com", + "udp": true, + "ips": [ + "217.138.202.35" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c04.ipvanish.com", + "udp": true, + "ips": [ + "217.138.202.37" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c05.ipvanish.com", + "udp": true, + "ips": [ + "82.102.23.69" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c06.ipvanish.com", + "udp": true, + "ips": [ + "82.102.23.71" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c23.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.2" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c24.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.8" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c25.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.14" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c26.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.20" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c27.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.26" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c28.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.32" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c29.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.38" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c30.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.44" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c31.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.50" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c32.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.56" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c33.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.62" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c34.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.68" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh Virtual", + "hostname": "pnh-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.129" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh Virtual", + "hostname": "pnh-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.135" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c01.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c02.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c03.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.14" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c04.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c05.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c06.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.148" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.154" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.160" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c13.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.166" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c14.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.66" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c15.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c16.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c17.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.84" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c18.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c19.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c20.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c21.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c22.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c23.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.24" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c24.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c25.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c26.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c27.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.40" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c28.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c29.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.48" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b01.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.35" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b02.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.41" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b03.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b04.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b05.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b06.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b07.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.71" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b08.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b09.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b10.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b11.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.95" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b12.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.101" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b13.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b14.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.113" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b15.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b16.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.176" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b17.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b18.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b19.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b20.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.200" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c05.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c06.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.68" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.14" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c13.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c14.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.38" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c15.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c16.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c17.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.56" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c18.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.80" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c19.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.86" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c20.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c21.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.98" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.2" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.8" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.14" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.20" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.5" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.11" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.17" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.23" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c05.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.29" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c06.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c07.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.7" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c08.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.13" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c09.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.19" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c10.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.25" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.2" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.8" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.14" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.20" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.26" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c11.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.32" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.39" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.45" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.51" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.57" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c06.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.38" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c07.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.8" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c08.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.14" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c09.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.20" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c10.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.26" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c11.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.32" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.2" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.8" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.14" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.20" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.26" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.32" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.38" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.44" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Larnaca Virtual", + "hostname": "lca-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.130" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Larnaca Virtual", + "hostname": "lca-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.136" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.39" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.45" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.57" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.63" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.130" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.136" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.142" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.148" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.154" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.160" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.9" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.15" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.21" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c21.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.2" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c22.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.8" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c23.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.14" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c24.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.20" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c25.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.26" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c26.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.32" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c27.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.38" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c31.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.130" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c32.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.136" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c33.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.142" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c34.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.148" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c35.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c36.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.160" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c37.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.166" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.130" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.136" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.199" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.205" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.211" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.217" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.131" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.135" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c09.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.139" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c10.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.143" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c11.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.147" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.3" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.5" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.7" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.9" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.11" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c13.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.13" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c14.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.15" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c15.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.59" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c16.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.67" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c17.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.73" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c18.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.80" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c19.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.86" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c20.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c21.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.196" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.198" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.200" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.221" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.223" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.225" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c09.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.8" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.8" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.26" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c07.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c08.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.201" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c09.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.207" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c10.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.213" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c11.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c12.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.225" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi Virtual", + "hostname": "tbs-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.194" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi Virtual", + "hostname": "tbs-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.54" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.78" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.84" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.102" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.132" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.138" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.150" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.156" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.162" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.168" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.186" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.192" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.198" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.20" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.44" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.142" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.148" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.154" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.160" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.172" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c18.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c19.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.206" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c20.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.212" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c21.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.218" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c22.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.224" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c23.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.230" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.185" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.191" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.203" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.52" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.58" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.70" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.76" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.82" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.88" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.9" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.15" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.21" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.27" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.33" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.39" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.66" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.72" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.78" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.84" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.194" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.200" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.206" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.9" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.15" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.21" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.33" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.39" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.45" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.57" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.63" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.69" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.81" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.87" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.93" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.99" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c01.ipvanish.com", + "udp": true, + "ips": [ + "37.120.144.227" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c02.ipvanish.com", + "udp": true, + "ips": [ + "37.120.144.229" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.189.114.163" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.189.114.165" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.163" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.169" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c03.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.175" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c04.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.181" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.8" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.14" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.20" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.26" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.32" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.38" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.44" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.50" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.56" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta Virtual", + "hostname": "cgk-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.66" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta Virtual", + "hostname": "cgk-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.72" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c12.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.38" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c13.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.44" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c14.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.50" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c15.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c16.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.8" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c17.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.14" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c18.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.20" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c19.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.26" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c20.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.32" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c21.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.130" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c22.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.136" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c23.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c24.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.148" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c25.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.154" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c26.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.160" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c27.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.166" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c28.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c29.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.178" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c30.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.184" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.4" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.6" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.8" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.10" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.12" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.14" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c17.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.16" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c18.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.18" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c19.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.20" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c20.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.22" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c21.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.24" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c22.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.26" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c23.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.28" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a13.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.4" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a14.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.10" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a15.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.16" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a16.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.22" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a17.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.28" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a18.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.34" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a19.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.40" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a20.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.46" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a21.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a22.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a23.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.64" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a24.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a25.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.76" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a26.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a27.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a28.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.94" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a29.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a30.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a31.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.112" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a32.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a34.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.130" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a35.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.136" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a36.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a37.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a38.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.154" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.8" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.14" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.3" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.9" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c03.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.15" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c04.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.21" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c05.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c06.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c07.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c08.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.46" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c09.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.52" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c10.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.58" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.12" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.48" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a09.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.54" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a10.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.60" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a11.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a12.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a13.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.78" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a14.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.84" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a15.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.90" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a16.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a17.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a18.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a19.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.114" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a20.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a21.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.126" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a22.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.132" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a23.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.138" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a24.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.144" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.38" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.44" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.50" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b10.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.56" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.68" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.80" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.85" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.89" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.97" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c10.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c11.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.105" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c12.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.109" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c13.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c14.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.10" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c15.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.16" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c16.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c17.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c18.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c19.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c20.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.46" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c21.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.52" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c22.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.58" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c23.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c24.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.70" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c25.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.76" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.136" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman Virtual", + "hostname": "amm-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.162" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman Virtual", + "hostname": "amm-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.168" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana Virtual", + "hostname": "nqz-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.130" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana Virtual", + "hostname": "nqz-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.136" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.66" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.72" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.78" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.194" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.200" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.206" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.212" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.218" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c06.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.224" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c07.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.130" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c08.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.136" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c09.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.142" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c10.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.148" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c11.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.154" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c12.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.160" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "city": "Vientiane Virtual", + "hostname": "vte-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.2" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "city": "Vientiane Virtual", + "hostname": "vte-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c08.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c09.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.9" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c10.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.15" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c11.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.21" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c12.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.27" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c13.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.33" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c14.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.39" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut Virtual", + "hostname": "bey-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.194" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut Virtual", + "hostname": "bey-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.200" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.194" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.200" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.206" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.212" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.4" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.10" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.16" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.22" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.28" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.34" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.40" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.129" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.135" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.141" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.147" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje Virtual", + "hostname": "skp-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.89.66" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c11.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.131" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c12.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.135" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c13.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.139" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c14.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.143" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c15.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.147" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c16.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.151" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c17.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.169" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c18.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.173" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c19.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.177" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c20.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.181" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c21.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.185" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c01.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.5" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c02.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c03.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.17" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.23" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.29" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.35" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.41" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.47" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c05.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.66" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c06.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.72" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c07.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.78" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c08.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.84" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c09.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.90" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c10.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.96" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c11.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.102" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c12.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.108" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c13.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.114" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c14.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.120" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco Virtual", + "hostname": "mcm-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.130" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco Virtual", + "hostname": "mcm-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.136" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Ulaanbaatar Virtual", + "hostname": "uln-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.194" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Ulaanbaatar Virtual", + "hostname": "uln-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.200" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Podgorica Virtual", + "hostname": "tgd-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.89.130" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.194" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.200" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.206" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon Virtual", + "hostname": "rgn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.130" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon Virtual", + "hostname": "rgn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.136" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu Virtual", + "hostname": "ktm-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.2" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu Virtual", + "hostname": "ktm-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.48" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a09.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a10.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.60" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a11.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.66" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a12.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a13.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a14.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a15.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.90" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a16.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a17.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.102" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a18.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.108" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a19.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.114" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a20.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.120" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a21.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.126" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a22.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.132" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a23.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a24.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a25.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.150" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a26.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a27.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a28.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.168" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a29.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.174" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a30.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a31.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a32.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a33.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a34.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a35.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a36.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a37.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a38.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a39.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a40.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a41.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a42.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.255" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a43.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a44.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.11" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a45.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a46.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.23" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a47.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a48.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.35" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a49.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.41" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a50.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a51.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a52.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.59" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a53.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a54.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a55.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a56.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a57.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a58.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a59.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a60.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.20" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.130" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.136" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.142" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.154" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c19.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.66" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c20.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c21.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c22.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c23.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.90" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c24.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.190" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.196" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.220" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.80" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.86" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c41.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c42.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c43.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c44.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.20" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c45.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c46.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c47.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c48.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c49.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c50.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c51.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c52.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c53.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c54.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.80" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c01.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.195" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c02.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.201" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c03.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.207" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c04.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.213" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c01.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.224" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c02.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.226" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c03.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.228" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c04.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.230" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c05.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.232" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c06.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.234" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c07.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.236" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.67" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.73" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.79" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.85" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.91" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.146" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.152" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.158" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.164" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Asuncion Virtual", + "hostname": "asu-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.2" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Asuncion Virtual", + "hostname": "asu-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.8" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.5" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.11" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c03.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.17" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c04.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.23" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c05.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.29" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.159" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.135" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.141" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.147" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.153" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c06.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.194" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c07.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.200" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c08.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.206" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c09.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.212" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c10.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.218" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.2" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.8" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.14" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.20" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.26" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.32" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c07.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.3" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c08.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.9" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c09.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.15" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c10.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.21" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c11.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.27" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c12.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.33" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c13.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.70" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.76" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.82" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.88" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.94" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c10.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.55" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c11.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.37" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c12.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c13.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.41" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c14.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.43" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.2" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.8" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.14" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.20" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.26" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.32" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.38" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c20.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.44" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c21.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.50" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c22.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.56" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c23.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.62" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c24.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.68" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c25.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.74" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c26.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.80" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.11" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.17" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.23" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.29" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c04.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.148" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c05.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.154" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c06.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.160" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.167" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.173" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.179" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.185" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.191" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c13.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.3" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c14.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.9" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c15.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.15" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c16.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c17.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.27" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c18.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.33" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c19.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.39" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.8" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.28" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.38" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c09.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.48" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c02.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.70" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c03.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.72" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c04.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.74" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c05.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.76" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c06.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.78" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c07.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.68" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.2" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.8" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.20" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.26" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.32" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.18" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.24" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.30" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.36" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.42" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.48" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a07.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.56" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a08.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.62" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a09.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.68" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a10.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.74" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a11.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.80" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a12.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.86" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.92" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.98" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.104" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.110" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.116" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.241" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.134" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.140" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.146" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.152" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.158" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.164" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.170" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.176" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.182" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.188" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.194" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c01.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.163" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c02.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.167" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c03.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c04.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.183" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c07.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c08.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.175" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo Virtual", + "hostname": "cmb-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.194" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo Virtual", + "hostname": "cmb-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.137" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.149" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.161" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.167" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.173" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.185" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.191" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.197" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.209" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.215" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.221" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.41" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a31.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a32.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a33.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a34.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.65" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a35.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.71" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a36.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.77" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a37.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.83" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a38.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.89" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a39.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.95" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a40.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.101" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.4" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.10" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.16" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.22" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.28" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.34" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.9" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c09.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c10.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c11.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c12.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.33" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.2" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.8" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.14" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.26" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.32" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.136" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.148" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.154" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.160" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.49" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.55" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.61" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.73" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c01.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c02.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.137" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c03.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.143" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c04.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.149" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c05.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.155" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c06.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.161" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c07.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.167" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c08.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c09.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.136" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c10.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.142" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c11.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.148" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c12.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.154" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c01.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.67" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c02.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.72" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c03.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.75" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c04.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.78" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c05.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.82" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c06.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.86" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.66" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.72" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.78" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.3" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.9" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.15" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.21" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.27" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.33" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.39" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.45" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.51" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.7" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.13" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b04.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b05.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.25" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b06.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.9.250.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.9.250.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c03.ipvanish.com", + "udp": true, + "ips": [ + "146.70.102.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c04.ipvanish.com", + "udp": true, + "ips": [ + "146.70.102.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c05.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c06.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.238" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c01.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c02.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c03.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c04.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c05.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c06.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c07.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.135" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c08.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c09.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.139" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c10.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c11.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c12.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c13.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c14.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c15.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c16.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c17.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c18.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c19.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c20.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c21.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c22.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c23.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.109" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c24.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c25.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c26.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c27.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c28.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c29.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c30.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c31.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.161" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c32.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c33.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.173" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c34.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c35.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.185" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a01.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a02.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a03.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a04.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a05.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a06.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a07.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a08.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a09.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a10.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a11.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a12.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.120" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.126" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.144" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.150" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a31.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a32.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a33.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.198" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a34.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.204" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a35.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.210" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a36.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a37.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a38.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a39.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a40.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a41.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.246" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a42.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.0" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a43.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a44.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a45.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.1" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.7" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.55" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.74" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.61" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.73" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.109" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.113" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c24.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c25.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c26.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c27.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c28.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c29.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c30.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c31.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c32.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c33.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c34.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c35.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c36.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c37.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c38.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c39.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c40.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c41.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c42.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c43.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c44.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c45.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c46.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c47.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c48.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c49.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c50.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c51.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c52.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c53.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c54.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c55.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.135" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c04.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c05.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c08.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.242" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c09.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.118" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.124" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c01.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c02.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c03.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c04.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c05.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c06.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c07.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c08.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c09.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c10.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c11.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c12.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a06.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a07.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a08.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a09.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a10.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a11.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a12.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a13.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a14.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a15.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a16.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a17.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a18.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a19.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a20.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a21.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a22.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a23.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a24.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a25.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a26.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a27.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a28.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a29.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a30.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.223" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a31.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a32.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a33.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a34.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a35.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a36.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a37.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a38.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a39.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a40.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a78.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a79.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a80.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a81.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a82.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a83.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a84.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a85.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a86.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a87.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a88.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a89.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a90.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a91.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a92.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a93.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a94.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a95.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a96.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a97.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a98.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a99.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b63.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b64.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b65.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b66.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b67.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b68.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b69.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b70.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b71.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b72.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b73.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b74.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b75.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b76.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b77.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b78.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b79.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b80.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b81.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b82.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b83.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b84.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b85.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b86.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b87.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b88.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b89.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b90.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b91.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b92.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b93.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b94.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b95.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b96.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b97.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b98.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b99.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c05.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c06.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c07.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c08.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c09.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c10.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c11.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c12.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c13.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c14.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c15.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c16.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c17.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c18.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c19.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c20.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c21.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c22.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c23.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c24.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c25.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c26.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c27.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c28.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c29.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c30.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c31.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c32.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c33.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c34.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c35.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c36.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b63.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b64.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b65.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b66.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b67.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b68.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b69.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b70.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b71.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b72.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b73.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b74.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b75.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b76.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c13.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c14.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c15.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c16.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c17.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c18.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c19.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c20.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c21.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c22.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c23.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c24.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c25.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c26.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c27.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c28.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c29.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c30.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c31.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c32.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c33.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b09.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b10.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b11.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b12.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b13.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b14.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b15.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b16.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b17.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b18.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b19.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b20.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b21.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b22.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b23.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b24.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c13.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c14.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c15.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c16.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c17.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c18.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c19.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c20.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c21.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c22.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c23.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c24.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c25.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c26.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c27.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c28.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c29.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c30.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c31.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c32.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c33.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c34.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c35.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c36.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.223" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c37.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c38.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c39.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c40.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c41.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c42.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c43.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c44.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c45.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c46.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c47.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c48.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c49.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c50.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c51.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c52.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c53.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c54.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c13.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c14.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c15.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c16.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c17.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c18.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c19.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c31.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c32.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c33.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c34.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c35.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c36.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c37.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c38.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c39.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c40.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c41.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c42.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c43.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c44.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c45.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c46.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c47.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c48.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c49.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c50.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c51.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c01.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c02.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c03.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c04.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c05.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c06.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c07.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c08.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c09.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c10.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c11.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c13.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c14.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c15.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c16.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c17.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c18.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c19.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.191" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b63.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b64.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b65.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b66.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b67.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b68.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b69.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b70.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c01.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c02.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c03.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c04.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c05.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c06.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c42.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c43.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c44.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c45.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c46.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c47.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c48.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c49.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c50.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a01.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a02.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a03.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a04.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a05.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a06.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a07.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a08.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a09.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a10.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a11.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a12.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a13.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a14.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a15.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a16.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a17.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a18.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a19.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a20.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a25.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a26.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a28.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a29.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a30.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a31.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a32.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a33.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a34.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a35.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a36.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a37.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a38.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a39.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a40.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c03.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c04.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c05.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c06.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c07.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c08.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c09.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c10.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c11.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c12.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.89" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "city": "Montevideo Virtual", + "hostname": "mvd-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.130" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.2" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.8" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.14" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.20" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City Virtual", + "hostname": "sgn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.2" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City Virtual", + "hostname": "sgn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.8" + ] + } + ] + }, + "ivpn": { + "version": 3, + "timestamp": 1724036915, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "46.102.153.242" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw1.wg.ivpn.net", + "wgpubkey": "KmSrG48t5xw9CJCPlYLBG3JnmiY0CnUgyRM5TUEwZhM=", + "ips": [ + "46.102.153.246" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "146.70.78.74" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw2.wg.ivpn.net", + "wgpubkey": "q+wbp7GjiTszp5G16rNpGCqxkL0qSY3CH4pcgD6UsVQ=", + "ips": [ + "146.70.78.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.244.212.66" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at1.wg.ivpn.net", + "wgpubkey": "83LUBnP97SFpnS0y1MpEAFcg8MIiQJgW1FRv/8Mc40g=", + "ips": [ + "185.244.212.69" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.10" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be1.wg.ivpn.net", + "wgpubkey": "awriP5lpdxEMWKuG+A1DOg+vb1M5jd3WhynIMB61BhU=", + "ips": [ + "194.187.251.13" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Franca", + "isp": "Qnax", + "hostname": "br1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "45.162.230.50" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Franca", + "isp": "Qnax", + "hostname": "br1.wg.ivpn.net", + "wgpubkey": "eN1f15S3YzRyYCALiPGRQcjkQO9xntcdqPhJJ6TOymc=", + "ips": [ + "45.162.230.53" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.18" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg1.wg.ivpn.net", + "wgpubkey": "WDSsdJE6wvATIWfzQwayPtE/0DaXBQgW/hPm7sQSJmU=", + "ips": [ + "82.102.23.21" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-qc2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.26" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-qc2.wg.ivpn.net", + "wgpubkey": "XSKU6fBCDwlb+mGek1O/fUDd/ozO58ZLph/0H7mn+zE=", + "ips": [ + "87.101.92.29" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca1.wg.ivpn.net", + "wgpubkey": "rg+GGDmjM4Vxo1hURvKmgm9yonb6qcoKbPCP/DNDBnI=", + "ips": [ + "37.120.130.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "184.75.215.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on1.wg.ivpn.net", + "wgpubkey": "eXlmRV8RsCQZjWwiSYxwtEr/xwanM/2HER2YqIGTdHk=", + "ips": [ + "184.75.215.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.18" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on2.wg.ivpn.net", + "wgpubkey": "nadUhrHR5E0fCB5wg4efZHNn2NRE+gnuTDjKT21y2V0=", + "ips": [ + "162.219.176.21" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "Tech Futures", + "hostname": "ca-bc1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.228" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "Tech Futures", + "hostname": "ca-bc1.wg.ivpn.net", + "wgpubkey": "lXawKqHosFOoc9kqAZwun9Yk3VrPN7vmG/JuQm4kvx0=", + "ips": [ + "104.193.135.231" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "Datapacket", + "hostname": "cz1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "195.181.160.167" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "Datapacket", + "hostname": "cz1.wg.ivpn.net", + "wgpubkey": "gVbEq2cGRzwCSGPqT2oRSYYN+P6IK3uvvRffErASDSk=", + "ips": [ + "185.180.14.41" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.226" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk1.wg.ivpn.net", + "wgpubkey": "jTsV5gOD7lT4egDj9rhKwO2OO2X7bKs2EQPcZEnUWDE=", + "ips": [ + "185.245.84.229" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "hostname": "fi1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.112.82.12" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "hostname": "fi1.wg.ivpn.net", + "wgpubkey": "mIxEzfjZ2wV6jJVj30w38ECd2LSH4bw/HLMnM2ICHiI=", + "ips": [ + "194.34.134.63" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "Datapacket", + "hostname": "fr1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.246.211.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "Datapacket", + "hostname": "fr1.wg.ivpn.net", + "wgpubkey": "g7BuMzj3r/noLiLR4qhQMcvU6GSIY8RGEnaYtdYsFX4=", + "ips": [ + "185.246.211.185" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "Datapacket", + "hostname": "de1.wg.ivpn.net", + "wgpubkey": "mS3/WpXjnMAMmXjSpd4nFzx9HSE3ubv2WyjpyH2REgs=", + "ips": [ + "185.102.219.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "Leaseweb", + "hostname": "de2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "178.162.211.114" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "Leaseweb", + "hostname": "de2.wg.ivpn.net", + "wgpubkey": "QhY3OtBf4FFafKtLO33e6k8JnAl8e6ktFcRUyLjCDVY=", + "ips": [ + "37.58.60.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "146.70.160.162" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de3.wg.ivpn.net", + "wgpubkey": "CugQQtD8YJKRwS5IukNWkMcyqOzlOxfGRPhGeQRAb2Y=", + "ips": [ + "146.70.160.170" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "Datapacket", + "hostname": "gr1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "169.150.252.110" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "Datapacket", + "hostname": "gr1.wg.ivpn.net", + "wgpubkey": "79rPSFIEQ4KWX9UN+FSMVfI0mPPVY5elS16O/DA6uDw=", + "ips": [ + "169.150.252.113" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "Leaseweb", + "hostname": "hk2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "209.58.188.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "Leaseweb", + "hostname": "hk2.wg.ivpn.net", + "wgpubkey": "kyolyq4cJydI3vQB2ESTIUAy2Fq0bpOf+Qe7GIq6XEA=", + "ips": [ + "64.120.120.239" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "TheGigabit", + "hostname": "hk3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "118.107.244.184" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "TheGigabit", + "hostname": "hk3.wg.ivpn.net", + "wgpubkey": "qq1simsFNm2FpZM0J8u8Aa0rkk5HEasvLksPyLv+0Sk=", + "ips": [ + "118.107.244.206" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.186" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu1.wg.ivpn.net", + "wgpubkey": "G30fNdXrnlqtqqOLF23QXWzFdLIKDxLW60HoYPvqml8=", + "ips": [ + "185.189.114.189" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "isp": "Advania", + "hostname": "is1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "82.221.107.178" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "isp": "Advania", + "hostname": "is1.wg.ivpn.net", + "wgpubkey": "nZZT6TlQ2dXlVe3P3B5ozEScHYMWH4JY4y3to8w5dz0=", + "ips": [ + "82.221.107.185" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Tel Aviv", + "city": "Holon", + "isp": "HQServ", + "hostname": "il1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.191.204.130" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Tel Aviv", + "city": "Holon", + "isp": "HQServ", + "hostname": "il1.wg.ivpn.net", + "wgpubkey": "HR9gAjpxXU3YVt6kehBw5n8yVYVE0iIgJdc4HTqOzEE=", + "ips": [ + "185.191.204.133" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "Datapacket", + "hostname": "it2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "84.17.59.137" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "Datapacket", + "hostname": "it2.wg.ivpn.net", + "wgpubkey": "IYi+s9DZusPErv0k2Ls/jgdubmeCrUcEJ1cNgmxPx0k=", + "ips": [ + "84.17.59.149" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "TheGigabit", + "hostname": "jp2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.135.77.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "TheGigabit", + "hostname": "jp2.wg.ivpn.net", + "wgpubkey": "YuhEd9+a90/+uucZC+qzsyMHkfe/GiwG1dq7g2HegXQ=", + "ips": [ + "185.135.77.81" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "isp": "Evoluso", + "hostname": "lu1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.53" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "isp": "Evoluso", + "hostname": "lu1.wg.ivpn.net", + "wgpubkey": "hUS1OAFLGwpba8+oc5mifYtohZt/RTro5dMyYBLYHjI=", + "ips": [ + "92.223.89.57" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "isp": "TheGigabit", + "hostname": "my1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "61.4.97.148" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Kuala Lumpur", + "isp": "TheGigabit", + "hostname": "my1.wg.ivpn.net", + "wgpubkey": "M9SsMCpUw7ad6YbqQr8r2saBK2zAf3tBj82DzsQjgkY=", + "ips": [ + "61.4.97.154" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Querétaro", + "isp": "Datapacket", + "hostname": "mx1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "121.127.43.193" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Querétaro", + "isp": "Datapacket", + "hostname": "mx1.wg.ivpn.net", + "wgpubkey": "ReKHoFVVGfR4Tgzl2GPPioAtQm3HmecKTU0HK67NcXU=", + "ips": [ + "121.127.43.196" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Datapacket", + "hostname": "nl1.wg.ivpn.net", + "wgpubkey": "AsMT2FqpkZbjzWeDch6GwufF5odl259W/hIkGytVfWo=", + "ips": [ + "185.102.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.68" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl3.wg.ivpn.net", + "wgpubkey": "XDU6Syq1DY82IMatsHV0x/TAtbLiRwh/SdFCXlEn40c=", + "ips": [ + "95.211.95.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl4.wg.ivpn.net", + "wgpubkey": "cVB66gPq5cZ9dfXY+e2pbsCyih5o1zk04l5c5VCsV1g=", + "ips": [ + "95.211.95.19" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl5.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.187.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl5.wg.ivpn.net", + "wgpubkey": "NCagAawwRixI6Iw/NWiGD8lbjDNCl0aTICZKJtO/1HA=", + "ips": [ + "95.211.243.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl6.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.187.228" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl6.wg.ivpn.net", + "wgpubkey": "hMWpqb3FEATHIbImPVWB/5z2nWIXghwpnJjevPY+1H0=", + "ips": [ + "95.211.243.182" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl7.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.95.22" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl7.wg.ivpn.net", + "wgpubkey": "hQNYqtfOOAEz0IGshLx/TI9hUrfR9gIIkjVm4VsCbBM=", + "ips": [ + "95.211.172.105" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl8.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl8.wg.ivpn.net", + "wgpubkey": "/nY1/OhVhdHtbnU/s31zYUuPBH0pizv4DemW5KDOUkg=", + "ips": [ + "95.211.198.167" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Servetheworld", + "hostname": "no1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.242.10.150" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Servetheworld", + "hostname": "no1.wg.ivpn.net", + "wgpubkey": "xFO6ksbO3Gr05rRgAW0O5Veoi4bpTgz2G9RvtBzK7Cg=", + "ips": [ + "91.189.177.156" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "isp": "Datapacket", + "hostname": "pe1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "79.127.252.65" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "Datapacket", + "hostname": "pe1.wg.ivpn.net", + "wgpubkey": "LGvYaCFJxdDePXV+r5ENsmugIlVufCCSSm2A6EUXXGw=", + "ips": [ + "79.127.252.68" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "Datapacket", + "hostname": "pl1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.246.208.86" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "Datapacket", + "hostname": "pl1.wg.ivpn.net", + "wgpubkey": "1JDmF79rWj5C+kHp71AbdHne/yGaizWCd2bLfSFvYjo=", + "ips": [ + "185.246.208.109" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "isp": "Hostwebis", + "hostname": "pt1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "94.46.175.112" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "Hostwebis", + "hostname": "pt1.wg.ivpn.net", + "wgpubkey": "nMnA82YVrvEK80GVoY/0Z9McWeqjcLzuMYSL+86j5nU=", + "ips": [ + "94.46.175.113" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.120.206.50" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro1.wg.ivpn.net", + "wgpubkey": "F2uQ57hysZTlw8WYELnyCw9Lga80wNYoYwkrrxyXKmw=", + "ips": [ + "37.120.206.53" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.250" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs1.wg.ivpn.net", + "wgpubkey": "xLN/lpQThQ3z3tvYf7VqdAsRL/nton1Vhv2kCZlQtWE=", + "ips": [ + "141.98.103.253" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg01.wg.ivpn.net", + "wgpubkey": "pWk0u1Xq8FHC+xpkN+C6yEKOTEanorR5zMCSfHlLzFw=", + "ips": [ + "185.128.24.189" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.128.24.186" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg1.wg.ivpn.net", + "wgpubkey": "hSg0At4uwuIhmTy5UT4fRbi5AN6JO2ZWTuIvqd4nHCE=", + "ips": [ + "37.120.151.122" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "isp": "Datapacket", + "hostname": "sk2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "156.146.40.202" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "Datapacket", + "hostname": "sk2.wg.ivpn.net", + "wgpubkey": "xxEl8CIjNLpig6fp7z4USHZLK35Nu5HENFNwTdeAbzU=", + "ips": [ + "156.146.40.205" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "isp": "Datapacket", + "hostname": "za1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.103" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "Datapacket", + "hostname": "za1.wg.ivpn.net", + "wgpubkey": "tgrAA+uJZppS9esgOi0pe3rHajQQ7c/KF8WPOua6qy4=", + "ips": [ + "169.150.238.108" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "Datapacket", + "hostname": "es1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.93.3.193" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "Datapacket", + "hostname": "es1.wg.ivpn.net", + "wgpubkey": "w7umiArTtlJ4Pk6Ii9WX5VXK5vw/Qu+Z37/icKlIYWo=", + "ips": [ + "84.17.62.98" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "GleSyS", + "hostname": "se01.wg.ivpn.net", + "wgpubkey": "u8VHnYEpoEjJWDAF9NAUkU6s810RnkMuhEfFD9U0cGo=", + "ips": [ + "80.67.10.141" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "GleSyS", + "hostname": "se1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "80.67.10.138" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "M247", + "hostname": "se1.wg.ivpn.net", + "wgpubkey": "2n0nFE1g/+vQr2AOQPm9Igyiy0zh9uTTultvOOSkMRo=", + "ips": [ + "37.120.153.226" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch01.wg.ivpn.net", + "wgpubkey": "dU7gLfcupYd37LW0q6cxC6PHMba+eUFAUOoU/ryXZkY=", + "ips": [ + "185.212.170.141" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.212.170.138" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch1.wg.ivpn.net", + "wgpubkey": "jVZJ61i1xxkAfriDHpwvF/GDuTvZUqhwoWSjkOJvaUA=", + "ips": [ + "141.255.164.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "141.255.166.194" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch3.wg.ivpn.net", + "wgpubkey": "JBpgBKtqIneRuEga7mbP2PAk/e4HPRaC11H0A0+R3lA=", + "ips": [ + "141.255.166.198" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "isp": "TheGigabit", + "hostname": "tw1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.189.160.6" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taipei", + "isp": "TheGigabit", + "hostname": "tw1.wg.ivpn.net", + "wgpubkey": "fMTCCbbKqPp60fkqnaQvJ9mX2r6zBlt7xhUp8sGfJQY=", + "ips": [ + "185.189.160.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "isp": "Server.ua", + "hostname": "ua2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "91.232.28.126" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "Server.ua", + "hostname": "ua2.wg.ivpn.net", + "wgpubkey": "WmMJBUyI0tdByPhMyvKWAbQMRE1I3ilPi/fIeG3m+UE=", + "ips": [ + "91.232.28.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb01.wg.ivpn.net", + "wgpubkey": "yKK5x+D17Jr3Q12T/UBaDjNVmNdZBsqpvTqH6YfsGHg=", + "ips": [ + "185.59.221.140" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.133" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "M247", + "hostname": "gb1.wg.ivpn.net", + "wgpubkey": "7+jos+Eg+hMEOQE4Std6OJ+WVnCcmbqS1/EbPwn9w3s=", + "ips": [ + "81.92.202.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.88" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb2.wg.ivpn.net", + "wgpubkey": "x0BTRaxsdxAd58ZyU2YMX4bmuj+Eg+8/urT2F3Vs1n8=", + "ips": [ + "185.59.221.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-man1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "89.238.141.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-man1.wg.ivpn.net", + "wgpubkey": "+hf4DYilNEIjTdSOuCNcWdqVyaRoxGzXw7wvNl7f7Rg=", + "ips": [ + "89.238.141.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "AZ", + "city": "Phoenix", + "isp": "M247", + "hostname": "us-az1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "AZ", + "city": "Phoenix", + "isp": "M247", + "hostname": "us-az1.wg.ivpn.net", + "wgpubkey": "Ts4MGazxpxL9rrYbERjgxa+kCEX85ou9gHoaJvDsRiI=", + "ips": [ + "193.37.254.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca01.wg.ivpn.net", + "wgpubkey": "B+qXdkIuETpzI0bfhGUAHN4SU91Tjs6ItdFlu93S42I=", + "ips": [ + "216.144.236.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.254.196.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Datapacket", + "hostname": "us-ca1.wg.ivpn.net", + "wgpubkey": "FGl78s9Ct6xNamQ2/CtAyXwGePrrU0kiZxfM27pm8XA=", + "ips": [ + "185.180.13.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "69.12.80.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca2.wg.ivpn.net", + "wgpubkey": "qv4Tupfon5NUSwzDpM8zPizSwJZn2h+9CqrufcyDOko=", + "ips": [ + "216.144.236.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Tzulo", + "hostname": "us-ca3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.54.129.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Tzulo", + "hostname": "us-ca3.wg.ivpn.net", + "wgpubkey": "J5+Bx84LxNPdWEhewOvBV/fGWiDluIBlAcr1QlJZil8=", + "ips": [ + "198.54.129.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.254.204.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca4.wg.ivpn.net", + "wgpubkey": "dYPXYr6HSRJPe3MhALwGWNtdEy1+EPE9Kqv7cTrUXk8=", + "ips": [ + "216.144.237.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CO", + "city": "Denver", + "isp": "Datapacket", + "hostname": "us-co1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "121.127.44.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CO", + "city": "Denver", + "isp": "Datapacket", + "hostname": "us-co1.wg.ivpn.net", + "wgpubkey": "eW3Xf/azDAah8xaM0z5rMxJZkWM6YlWuZsEbMwy9j2Y=", + "ips": [ + "121.127.44.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "FL", + "city": "Miami", + "isp": "Quadranet", + "hostname": "us-fl1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.44.49.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "FL", + "city": "Miami", + "isp": "Quadranet", + "hostname": "us-fl1.wg.ivpn.net", + "wgpubkey": "Rkzo9WgxJBiKyEbkZvqGWtOVh9Gk9Vd7wL49SHXdHig=", + "ips": [ + "173.44.49.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga01.wg.ivpn.net", + "wgpubkey": "EJFl28aYpZKfmJqb1jxxTEnGx6kaH2USVrigpHKKXhs=", + "ips": [ + "104.129.24.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "104.129.24.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Datapacket", + "hostname": "us-ga1.wg.ivpn.net", + "wgpubkey": "jD8h+pL5/d6fmYcTzl0lR8AWzQVN5XkwRFSmM/3NcDM=", + "ips": [ + "185.93.0.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "107.150.22.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga2.wg.ivpn.net", + "wgpubkey": "hr2uQOEGCvGeDkoCQJ2dCI8dM8Iu5aKhb1PIvJ9q72E=", + "ips": [ + "107.150.22.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il01.wg.ivpn.net", + "wgpubkey": "Uy5a8JOqneAUY1dC5s9jubLnotbyIfBsLP2nZuzRbHs=", + "ips": [ + "72.11.137.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "107.150.28.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Datapacket", + "hostname": "us-il1.wg.ivpn.net", + "wgpubkey": "hku9gjamhoii8OvxZgx+TdUDIkOAQYFu39qbav2AyUQ=", + "ips": [ + "89.187.181.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "72.11.137.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il2.wg.ivpn.net", + "wgpubkey": "ANhVUMAQgStPVNRHW8mg0ZtN1YI1QHyXfNCO8+USNQQ=", + "ips": [ + "72.11.137.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "Quadranet", + "hostname": "us-nj3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "23.226.128.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "Quadranet", + "hostname": "us-nj3.wg.ivpn.net", + "wgpubkey": "AX7C1LO0ECUcHRYgX4/tIDYdR8npvfB/+pf4AfI3OHU=", + "ips": [ + "23.226.128.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "M247", + "hostname": "us-nj4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "M247", + "hostname": "us-nj4.wg.ivpn.net", + "wgpubkey": "1Te4AfL1yKo2k4jzPALnRPfKE3YSzXKo4XIRHPz5FxI=", + "ips": [ + "194.36.111.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NV", + "city": "Las Vegas", + "isp": "M247", + "hostname": "us-nv1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.242.5.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NV", + "city": "Las Vegas", + "isp": "M247", + "hostname": "us-nv1.wg.ivpn.net", + "wgpubkey": "PRpvAZyoNWNm/KHlqafjtYoZtn1PkIPylUE4WbuYmgM=", + "ips": [ + "185.242.5.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny1.wg.ivpn.net", + "wgpubkey": "6/tjvgb7HFl7UuvBSegolxa1zKr3iSlDrlCexCmhAGE=", + "ips": [ + "91.132.137.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny2.wg.ivpn.net", + "wgpubkey": "c7DwY2uT+6ulWAJ5u8qJNWHroA0qyJLcdNzf/f2kkhs=", + "ips": [ + "212.103.48.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "Datapacket", + "hostname": "us-ny3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "Datapacket", + "hostname": "us-ny3.wg.ivpn.net", + "wgpubkey": "m5/Ssw9SN3WuE+yD/fAsH5G8iuI8TcDGEiZZnPgiMCc=", + "ips": [ + "89.187.178.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx01.wg.ivpn.net", + "wgpubkey": "LvWf548mFddi8PTrIGL6uD1/l85LU8z0Rc8tpvw2Vls=", + "ips": [ + "96.44.189.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "96.44.189.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx1.wg.ivpn.net", + "wgpubkey": "JPT1veXLmasj2uQDstX24mpR7VWD+GmV8JDkidkz91Q=", + "ips": [ + "198.55.124.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "96.44.142.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx2.wg.ivpn.net", + "wgpubkey": "om8hOGUcEvoOhHvJZoBHxNF4jxY/+Ml9Iy1WOSC/pFo=", + "ips": [ + "96.44.142.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "UT", + "city": "Salt Lake City", + "isp": "100TB", + "hostname": "us-ut1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.105.216.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "UT", + "city": "Salt Lake City", + "isp": "100TB", + "hostname": "us-ut1.wg.ivpn.net", + "wgpubkey": "KirI7bpxD186CuYiOqNHF+QUe6YmRYf6CN3pXWOJT2k=", + "ips": [ + "206.190.145.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "VA", + "city": "Ashburn", + "isp": "Datapacket", + "hostname": "us-va1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.19.206.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "VA", + "city": "Ashburn", + "isp": "Datapacket", + "hostname": "us-va1.wg.ivpn.net", + "wgpubkey": "ZCnZK6U+cRuP/WgzIDb/P6UG2rX/KyCRd5vJ1hAbr2E=", + "ips": [ + "37.19.206.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "WA", + "city": "Seattle", + "isp": "Tzulo", + "hostname": "us-wa2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.44.131.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "WA", + "city": "Seattle", + "isp": "Tzulo", + "hostname": "us-wa2.wg.ivpn.net", + "wgpubkey": "VcrOOozBUCIURU0AnqMAE7AkMmC7Qrp+j/PzPbgbalU=", + "ips": [ + "198.44.131.4" + ] + } + ] + }, + "mullvad": { + "version": 4, + "timestamp": 1726110243, + "servers": [ + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "isp": "iRegister", + "hostname": "al-tia-wg-001", + "wgpubkey": "bPfJDdgBXlY4w3ACs68zOMMhLUbbzktCKnLOFHqbxl4=", + "ips": [ + "31.171.153.66", + "2a04:27c0:0:3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "isp": "iRegister", + "hostname": "al-tia-wg-002", + "wgpubkey": "/wPQafVa/60OIp8KqhC1xTTG+nQXZF17uo8XfdUnz2E=", + "ips": [ + "31.171.154.50", + "2a04:27c0:0:4::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.214.20.146", + "2404:f780:0:dee::c1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.214.20.162", + "2404:f780:0:def::c2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-wg-301", + "wgpubkey": "rm2hpBiN91c7reV+cYKlw7QNkYtME/+js7IMyYBB2Aw=", + "ips": [ + "103.214.20.50", + "2404:f780:0:deb::c1f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-wg-302", + "wgpubkey": "e4jouH8n4e8oyi/Z7d6lJLd6975hlPZmnynJeoU+nWM=", + "ips": [ + "103.214.20.130", + "2404:f780:0:dec::c2f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.216.220.50", + "2404:f780:4:dee::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.216.220.66", + "2404:f780:4:def::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-wg-301", + "wgpubkey": "1H/gj8SVNebAIEGlvMeUVC5Rnf274dfVKbyE+v5G8HA=", + "ips": [ + "103.216.220.18", + "2404:f780:4:deb::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-wg-302", + "wgpubkey": "z+JG0QA4uNd/wRTpjCqn9rDpQsHKhf493omqQ5rqYAc=", + "ips": [ + "103.216.220.34", + "2404:f780:4:dec::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.108.229.82", + "2406:d501:f:def::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.108.229.98", + "2406:d501:f:dee::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-wg-301", + "wgpubkey": "jUMZWFOgoFGhZjBAavE6jW8VgnnNpL4KUiYFYjc1fl8=", + "ips": [ + "103.108.229.50", + "2406:d501:f:deb::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-wg-302", + "wgpubkey": "npTb63jWEaJToBfn0B1iVNbnLXEwwlus5SsolsvUhgU=", + "ips": [ + "103.108.229.66", + "2406:d501:f:dec::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.108.231.82", + "2404:f780:8:def::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.108.231.98", + "2404:f780:8:dee::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-wg-301", + "wgpubkey": "hQXsNk/9R2We0pzP1S9J3oNErEu2CyENlwTdmDUYFhg=", + "ips": [ + "103.108.231.50", + "2404:f780:8:deb::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-wg-302", + "wgpubkey": "t3Ly8bBdF2gMHzT3d529bVLDw8Jd2/FFG9GXoBEx01g=", + "ips": [ + "103.108.231.66", + "2404:f780:8:dec::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.200.130", + "2001:ac8:84:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.200.66", + "2001:ac8:84:2::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-001", + "wgpubkey": "4JpfHBvthTFOhCK0f5HAbzLXAVcB97uAkuLx7E8kqW0=", + "ips": [ + "146.70.200.2", + "2001:ac8:84:5::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-002", + "wgpubkey": "lUeDAOy+iAhZDuz5+6zh0Co8wZcs3ahdu2jfqQoDW3E=", + "ips": [ + "146.70.141.194", + "2001:ac8:84:6::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-003", + "wgpubkey": "LXuRwa9JRTt2/UtldklKGlj/IVLORITqgET4II4DRkU=", + "ips": [ + "146.70.200.194", + "2001:ac8:84:4::3f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-101", + "wgpubkey": "NKP4jSvSDZg5HJ3JxpGYMxIYt7QzoxSFrU2F0m1ZxwA=", + "ips": [ + "103.136.147.3", + "2a11:3:500::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-102", + "wgpubkey": "w825smx7YI9/SrwSYGdsuwD1Qt5UsS/CyaGTjwSYljU=", + "ips": [ + "103.136.147.65", + "2a11:3:500::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-103", + "wgpubkey": "poOHsF6v91yURxDrNe/P/adyNUqsRGzhFIioyBYUPww=", + "ips": [ + "103.136.147.129", + "2a11:3:500::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-104", + "wgpubkey": "61Ovy3ObuHqllZK/P/5cOWZnY26SY2csmjzVK1q+fFs=", + "ips": [ + "103.136.147.197", + "2a11:3:500::f301" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.116.194", + "2001:ac8:29:87::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-001", + "wgpubkey": "TNrdH73p6h2EfeXxUiLOCOWHcjmjoslLxZptZpIPQXU=", + "ips": [ + "146.70.116.98", + "2001:ac8:29:84::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-002", + "wgpubkey": "ehXBc726YX1N6Dm7fDAVMG5cIaYAFqCA4Lbpl4VWcWE=", + "ips": [ + "146.70.116.130", + "2001:ac8:29:85::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-003", + "wgpubkey": "ddllelPu2ndjSX4lHhd/kdCStaSJOQixs9z551qN6B8=", + "ips": [ + "146.70.116.162", + "2001:ac8:29:86::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "DataPacket", + "hostname": "at-vie-wg-102", + "wgpubkey": "DANFtH+sFB19BnW1CYEwZ2pOIt7P8nLjSadjpS2rLWE=", + "ips": [ + "185.24.11.159", + "2a02:6ea0:cb1b:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.66", + "2001:ac8:27:90::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.130", + "2001:ac8:27:91::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-101", + "wgpubkey": "GE2WP6hmwVggSvGVWLgq2L10T3WM2VspnUptK5F4B0U=", + "ips": [ + "91.90.123.2", + "2001:ac8:27:88::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-102", + "wgpubkey": "IY+FKw487MEWqMGNyyrT4PnTrJxce8oiGNHT0zifam8=", + "ips": [ + "194.110.115.34", + "2001:ac8:27:89::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-103", + "wgpubkey": "b5A1ela+BVI+AbNXz7SWekZHvdWWpt3rqUKTJj0SqCU=", + "ips": [ + "194.110.115.2", + "2001:ac8:27:92::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "Qnax", + "hostname": "br-sao-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "149.78.184.210", + "2804:5364:7000:41::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "Qnax", + "hostname": "br-sao-wg-001", + "wgpubkey": "xUDPh13sY127m+7d05SOQAzzNCyufTjaGwCXkWsIjkw=", + "ips": [ + "149.78.184.194", + "2804:5364:7000:40::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "DataPacket", + "hostname": "br-sao-wg-201", + "wgpubkey": "8c9M6w1BQbgMVr/Zgrj4GwSdU6q3qfQfWs17kMLC9y4=", + "ips": [ + "169.150.198.66", + "2a02:6ea0:d00e:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "DataPacket", + "hostname": "br-sao-wg-202", + "wgpubkey": "jWURoz8SLBUlRTQnAFTA/LDZUTpvlO0ghiVWH7MgaHQ=", + "ips": [ + "169.150.198.79", + "2a02:6ea0:d00e:2::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.188.66", + "2001:ac8:30:55::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.188.2", + "2001:ac8:30:54::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-wg-001", + "wgpubkey": "J8KysHmHZWqtrVKKOppneDXSks/PDsB1XTlRHpwiABA=", + "ips": [ + "146.70.188.130", + "2001:ac8:30:56::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-wg-002", + "wgpubkey": "dg+Fw7GnKvDPBxFpnj1KPoNIu1GakuVoDJjKRni+pRU=", + "ips": [ + "146.70.188.194", + "2001:ac8:30:57::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Calgary", + "isp": "techfutures", + "hostname": "ca-yyc-wg-201", + "wgpubkey": "L4RcVwk0cJJp2u8O9+86sdyUpxfYnr+ME57Ex0RY1Wo=", + "ips": [ + "38.240.225.36", + "2606:9580:438:32::b01f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Calgary", + "isp": "techfutures", + "hostname": "ca-yyc-wg-202", + "wgpubkey": "u9J/fzrSqM2aEFjTs91KEKgBsaQ/I/4XkIP1Z/zYkXA=", + "ips": [ + "38.240.225.68", + "2606:9580:438:64::b02f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.66", + "2a0d:5600:9:17::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.133.182.194", + "2a0d:5600:9:18::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-001", + "wgpubkey": "TUCaQc26/R6AGpkDUr8A8ytUs/e5+UVlIVujbuBwlzI=", + "ips": [ + "146.70.198.66", + "2a0d:5600:9:c::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-002", + "wgpubkey": "7X6zOgtJfJAK8w8C3z+hekcS9Yf3qK3Bp4yx56lqxBQ=", + "ips": [ + "146.70.198.130", + "2a0d:5600:9:d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-003", + "wgpubkey": "57Zu2qPzRScZWsoC2NhXgz0FiC0HiKkbEa559sbxB3k=", + "ips": [ + "146.70.198.194", + "2a0d:5600:9:e::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-004", + "wgpubkey": "Cc5swfQ9f2tAgLduuIqC3bLbwDVoOFkkETghsE6/twA=", + "ips": [ + "188.241.176.194", + "2a0d:5600:9:16::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.193", + "2a02:6ea0:de08:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.206", + "2a02:6ea0:de08:4::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.132.34", + "2607:9000:6000:12::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.132.66", + "2607:9000:6000:13::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-wg-001", + "wgpubkey": "HjcUGVDXWdrRkaKNpc/8494RM5eICO6DPyrhCtTv9Ws=", + "ips": [ + "178.249.214.2", + "2a02:6ea0:de08:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-wg-002", + "wgpubkey": "iqZSgVlU9H67x/uYE5xsnzLCDXf7FL9iMfyKfl6WsV8=", + "ips": [ + "178.249.214.15", + "2a02:6ea0:de08:2::a29f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-101", + "wgpubkey": "hfvZctxTQukC6lMJ4liGTg1JECT4XqEKpTNPk84k2As=", + "ips": [ + "198.44.140.130", + "2607:9000:6000:18::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-102", + "wgpubkey": "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=", + "ips": [ + "198.54.132.98", + "2607:9000:6000:14::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-103", + "wgpubkey": "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=", + "ips": [ + "198.54.132.226", + "2607:9000:6000:17::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-104", + "wgpubkey": "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=", + "ips": [ + "198.54.132.130", + "2607:9000:6000:15::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-105", + "wgpubkey": "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=", + "ips": [ + "198.44.140.162", + "2607:9000:6000:19::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-106", + "wgpubkey": "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=", + "ips": [ + "198.54.132.162", + "2607:9000:6000:16::a26f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-107", + "wgpubkey": "jVgDxCstCo0NRZ/dB9fpQiu+dfYK2v3HOa4B6MkLaQA=", + "ips": [ + "198.44.140.194", + "2607:9000:6000:20::a07f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.132", + "2606:9580:103:10::c01f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.164", + "2606:9580:103:11::c02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-wg-201", + "wgpubkey": "hYbb2NQKB0g2RefngdHl3bfaLImUuzeVIv2i1VCVIlQ=", + "ips": [ + "104.193.135.196", + "2606:9580:103:e::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-wg-202", + "wgpubkey": "wGqcNxXH7A3bSptHZo7Dfmymy/Y30Ea/Zd47UkyEbzo=", + "ips": [ + "104.193.135.100", + "2606:9580:103:f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "DataPacket", + "hostname": "ca-van-wg-301", + "wgpubkey": "BzYINbABQiSbRLDZIlmgsLgL88offQJCEH3JkcjRGUk=", + "ips": [ + "149.22.81.194", + "2a02:6ea0:5100:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "DataPacket", + "hostname": "ca-van-wg-302", + "wgpubkey": "EOOkxbmbdHmjb8F45s33yKrIzKWH6lGIgJf2kTOxwFw=", + "ips": [ + "149.22.81.207", + "2a02:6ea0:5100:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "isp": "DataPacket", + "hostname": "cl-scl-wg-001", + "wgpubkey": "03qeK7CSn6wcMzfqilmVt6Tf81VZIPWnSG04euSkyxM=", + "ips": [ + "149.88.104.2", + "2a02:6ea0:fc02:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "isp": "DataPacket", + "hostname": "cl-scl-wg-002", + "wgpubkey": "rn9O+cXj0WQgZAkGCoYvvWgzaB5GcOaVfke3WKsp1Ro=", + "ips": [ + "149.88.104.15", + "2a02:6ea0:fc02:3::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "isp": "DataPacket", + "hostname": "co-bog-wg-001", + "wgpubkey": "iaMa84nCHK+v4TnQH4h2rxkqwwxemORXM12VbJDRZSU=", + "ips": [ + "154.47.16.34", + "2a02:6ea0:f101:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "isp": "DataPacket", + "hostname": "co-bog-wg-002", + "wgpubkey": "IZDwbG9C/NrOOGVUrn+fDaPr8ZwD/yhvST7XWGk1ln8=", + "ips": [ + "154.47.16.47", + "2a02:6ea0:f101:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "isp": "DataPacket", + "hostname": "hr-zag-wg-001", + "wgpubkey": "PJvsgLogdAgZiVSxwTDyk9ri02mLZGuElklHShIjDGM=", + "ips": [ + "154.47.29.2", + "2a02:6ea0:f401:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "isp": "DataPacket", + "hostname": "hr-zag-wg-002", + "wgpubkey": "V0iDOyLSj870sjGGenDvAWqJudlPKDc212cQN85snEo=", + "ips": [ + "154.47.29.15", + "2a02:6ea0:f401:2::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.129.162", + "2001:ac8:33:e::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.129.194", + "2001:ac8:33:f::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-wg-101", + "wgpubkey": "wLBxTaISMJ++vUht4hlAOUog9fhZxDql16TaYWaboDc=", + "ips": [ + "146.70.129.98", + "2001:ac8:33:c::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-wg-102", + "wgpubkey": "cRCJ0vULwKRbTfzuo9W+fIt0fJGQE7DLvojIiURIpiI=", + "ips": [ + "146.70.129.130", + "2001:ac8:33:d::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "DataPacket", + "hostname": "cz-prg-wg-201", + "wgpubkey": "5FZW+fNA2iVBSY99HFl+KjGc9AFVNE+UFAedLNhu8lc=", + "ips": [ + "178.249.209.162", + "2a02:6ea0:c201:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "DataPacket", + "hostname": "cz-prg-wg-202", + "wgpubkey": "ReGrGPKDHri64D7qeXmgcLzjsTJ0B/yM7eekFz1P/34=", + "ips": [ + "178.249.209.175", + "2a02:6ea0:c201:1::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "141.98.254.71", + "2a03:1b20:8:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.129.56.81", + "2a03:1b20:8:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "146.70.197.66", + "2001:ac8:37:95::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "146.70.197.2", + "2001:ac8:37:94::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-wg-001", + "wgpubkey": "egl+0TkpFU39F5O6r6+hIBMPQLOa8/t5CymOZV6CC3Y=", + "ips": [ + "45.129.56.67", + "2a03:1b20:8:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-wg-002", + "wgpubkey": "R5LUBgM/1UjeAR4lt+L/yA30Gee6/VqVZ9eAB3ZTajs=", + "ips": [ + "45.129.56.68", + "2a03:1b20:8:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-wg-401", + "wgpubkey": "Jjml2TSqKlgzW6UzPiJszaun743QYpyl5jQk8UOQYg0=", + "ips": [ + "146.70.197.194", + "2001:ac8:37:97::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-wg-402", + "wgpubkey": "ML0NcFPqy+x+ZJg7y9vfh77hXAOtgueIqp1j+CJVrXM=", + "ips": [ + "146.70.197.130", + "2001:ac8:37:96::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-001", + "wgpubkey": "bdq37KtfoG1Tm7yQcfitdRyGeZOn/c7PwLN+LgG/6nA=", + "ips": [ + "194.127.167.67", + "2a07:d880:2::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-002", + "wgpubkey": "vqGmmcERr/PAKDzy6Dxax8g4150rC93kmKYabZuAzws=", + "ips": [ + "194.127.167.87", + "2a07:d880:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-003", + "wgpubkey": "+8dUgpD7YA4wMPnRQkO7EI7AeYd30QPMKh/hOaaGIXY=", + "ips": [ + "194.127.167.107", + "2a07:d880:2::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.171", + "2a0c:f040:0:2790::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.172", + "2a0c:f040:0:2790::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.173", + "2a0c:f040:0:2790::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.174", + "2a0c:f040:0:2790::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.175", + "2a0c:f040:0:2790::5f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-006", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.176", + "2a0c:f040:0:2790::6f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-007", + "tcp": true, + "udp": true, + "ips": [ + "185.212.149.201", + "2a0c:f040:0:2790::7f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "193.138.7.217", + "2a02:ed04:3581:5::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "193.138.7.237", + "2a02:ed04:3581:6::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-wg-002", + "wgpubkey": "8BbP3GS01dGkN5ENk1Rgedxfd80friyVOABrdMgD3EY=", + "ips": [ + "185.204.1.211", + "2a0c:f040:0:2790::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-wg-003", + "wgpubkey": "FKodo9V6BehkNphL+neI0g4/G/cjbZyYhoptSWf3Si4=", + "ips": [ + "185.204.1.219", + "2a0c:f040:0:2790::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-101", + "wgpubkey": "2S3G7Sm9DVG6+uJtlDu4N6ed5V97sTbA5dCSkUelWyk=", + "ips": [ + "193.138.7.137", + "2a02:ed04:3581:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-102", + "wgpubkey": "xeHVhXxyyFqUEE+nsu5Tzd/t9en+++4fVFcSFngpcAU=", + "ips": [ + "193.138.7.157", + "2a02:ed04:3581:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-103", + "wgpubkey": "Mlvu14bSD6jb7ajH/CiJ/IO8W+spB8H6VmdGkFGOcUQ=", + "ips": [ + "193.138.7.177", + "2a02:ed04:3581:3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-104", + "wgpubkey": "keRQGHUbYP2qgDTbYqOsI9byfNb0LOpTZ/KdC67cJiA=", + "ips": [ + "193.138.7.197", + "2a02:ed04:3581:4::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Bordeaux", + "isp": "HostRoyale", + "hostname": "fr-bod-wg-002", + "wgpubkey": "ZBOJ2w5DqG35T1zjV/F1UgrXkDhNxObnwdm2FUwyu2o=", + "ips": [ + "45.134.79.97", + "2a06:3040:4:610::f101" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "isp": "DataPacket", + "hostname": "fr-mrs-wg-001", + "wgpubkey": "MOk2OTDEaFFN4vsCAgf+qQi6IlY99nCeDEzpXyo65wg=", + "ips": [ + "138.199.15.162", + "2a02:6ea0:dc05::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "isp": "DataPacket", + "hostname": "fr-mrs-wg-002", + "wgpubkey": "Z0LEgZIPhNj0+/VWknU3roHlVI3qqAfoV6th9NSC0F0=", + "ips": [ + "138.199.15.146", + "2a02:6ea0:dc06::a16f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.81", + "2a03:1b20:9:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.82", + "2a03:1b20:9:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.83", + "2a03:1b20:9:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.184.130", + "2001:ac8:25:3c::1f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.184.194", + "2001:ac8:25:3d::2f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-001", + "wgpubkey": "ov323GyDOEHLT0sNRUUPYiE3BkvFDjpmi1a4fzv49hE=", + "ips": [ + "193.32.126.66", + "2a03:1b20:9:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-002", + "wgpubkey": "R5Ve+PJD24QjNXi2Dim7szwCiOLnv+6hg+WyTudAYmE=", + "ips": [ + "193.32.126.67", + "2a03:1b20:9:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-003", + "wgpubkey": "w4r/o6VImF7l0/De3JpOGnpzjAFv9wcCu8Rop5eZkWc=", + "ips": [ + "193.32.126.68", + "2a03:1b20:9:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-004", + "wgpubkey": "E/KjR7nlFouuRXh1pwGDr7iK2TAZ6c4K0LjjmA1A2Tc=", + "ips": [ + "193.32.126.69", + "2a03:1b20:9:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-005", + "wgpubkey": "cmqtSjWUa4/0bENQDKxdr0vQqf4nFVDodarHm0Pc0hY=", + "ips": [ + "193.32.126.70", + "2a03:1b20:9:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-006", + "wgpubkey": "x0k8A2S7Dx7VNX2Yo2qRPZW/VefIogID5bVynklBugE=", + "ips": [ + "193.32.126.84", + "2a03:1b20:9:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-wg-101", + "wgpubkey": "e2uj1eu/ZuTPqfY+9ULa6KFPRGLkSWCaooXBg9u9igA=", + "ips": [ + "146.70.184.2", + "2001:ac8:25:3a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-wg-102", + "wgpubkey": "TR0Gedkbp2mRRXKZ7VB7qaAvJHuQlwaaLFc4fxb4q2M=", + "ips": [ + "146.70.184.66", + "2001:ac8:25:3b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "DataPacket", + "hostname": "fr-par-wg-301", + "wgpubkey": "gCYpOei4ZYsWJ3mOgCdQo6bnsRgdLNJR9SWEA69U7Gw=", + "ips": [ + "95.173.222.2", + "2a02:6ea0:1901:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "DataPacket", + "hostname": "fr-par-wg-302", + "wgpubkey": "CpbLl0WVeiW+YbJKNod5khzAI03D2hX2dhq2CCYc2Xc=", + "ips": [ + "95.173.222.31", + "2a02:6ea0:1901:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.248.72", + "2a03:1b20:b:f011::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-001", + "wgpubkey": "0qSP0VxoIhEhRK+fAHVvmfRdjPs2DmmpOCNLFP/7cGw=", + "ips": [ + "193.32.248.66", + "2a03:1b20:b:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-002", + "wgpubkey": "8ov1Ws0ut3ixWDh9Chp7/WLVn9qC6/WVHtcBcuWBlgo=", + "ips": [ + "193.32.248.67", + "2a03:1b20:b:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-003", + "wgpubkey": "USrMatdHiCL5AKdVMpHuYgWuMiK/GHPwRB3Xx00FhU0=", + "ips": [ + "193.32.248.68", + "2a03:1b20:b:f011::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-004", + "wgpubkey": "6PchzRRxzeeHdNLyn3Nz0gmN7pUyjoZMpKmKzJRL4GM=", + "ips": [ + "193.32.248.69", + "2a03:1b20:b:f011::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-005", + "wgpubkey": "I4Y7e8LrtBC/7DLpUgRd5k+IZk+whOFVAZgbSivoiBI=", + "ips": [ + "193.32.248.70", + "2a03:1b20:b:f011::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-006", + "wgpubkey": "eprzkkkSbXCANngQDo305DIAvkKAnZaN71IpTNaOoTk=", + "ips": [ + "193.32.248.71", + "2a03:1b20:b:f011::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-007", + "wgpubkey": "/ejdxiEsmYbeXXCN6UzvzJ0U/mLuB6baIfQRYKYHWzU=", + "ips": [ + "193.32.248.75", + "2a03:1b20:b:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-001", + "wgpubkey": "ku1NYeOAGbY65YL/JKZhrqVzDJKXQiVj9USXbfkOBA0=", + "ips": [ + "185.254.75.3", + "2a03:d9c0:3000::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-002", + "wgpubkey": "TPAIPTgu9jIitgX1Bz5xMCZJ9pRRZTdtZEOIxArO0Hc=", + "ips": [ + "185.254.75.4", + "2a03:d9c0:3000::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-003", + "wgpubkey": "XgSe9UwEV4JJNPPzFFOVYS6scMTL4DeNlwqBl32lDw0=", + "ips": [ + "185.254.75.5", + "2a03:d9c0:3000::a22f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.66", + "2a03:1b20:6:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.67", + "2a03:1b20:6:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.68", + "2a03:1b20:6:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.69", + "2a03:1b20:6:f011::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.70", + "2a03:1b20:6:f011::5f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.117.66", + "2001:ac8:20:271::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.117.98", + "2001:ac8:20:272::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-001", + "wgpubkey": "HQHCrq4J6bSpdW1fI5hR/bvcrYa6HgGgwaa5ZY749ik=", + "ips": [ + "185.213.155.73", + "2a03:1b20:6:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-002", + "wgpubkey": "s1c/NsfnqnwQSxao70DY4Co69AFT9e0h88IFuMD5mjs=", + "ips": [ + "185.213.155.74", + "2a03:1b20:6:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-003", + "wgpubkey": "vVQKs2TeTbdAvl3sH16UWLSESncXAj0oBaNuFIUkLVk=", + "ips": [ + "185.209.196.73", + "2a03:1b20:6:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-004", + "wgpubkey": "tzYLWgBdwrbbBCXYHRSoYIho4dHtrm+8bdONU1I8xzc=", + "ips": [ + "185.209.196.74", + "2a03:1b20:6:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-005", + "wgpubkey": "tpobOO6t18CzHjOg0S3RlZJMxd2tz4+BnRYS7NrjTnM=", + "ips": [ + "185.209.196.75", + "2a03:1b20:6:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-006", + "wgpubkey": "nAF0wrLG2+avwQfqxnXhBGPUBCvc3QCqWKH4nK5PfEU=", + "ips": [ + "185.209.196.76", + "2a03:1b20:6:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-007", + "wgpubkey": "mTmrSuXmTnIC9l2Ur3/QgodGrVEhhIE3pRwOHZpiYys=", + "ips": [ + "185.209.196.77", + "2a03:1b20:6:f011::f601" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-008", + "wgpubkey": "TOS3U/dJPzPnk/qsAx6gHxRVIC2wI5l+tAWaJY2mXzY=", + "ips": [ + "185.209.196.78", + "2a03:1b20:6:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-009", + "wgpubkey": "flq7zR8W5FxouHBuZoTRHY0A0qFEMQZF5uAgV4+sHVw=", + "ips": [ + "185.213.155.72", + "2a03:1b20:6:f011::f901" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-101", + "wgpubkey": "Voioje9Gfb7aTiK2/H6VyHFK1AFap1glIX0Z1EX2mRQ=", + "ips": [ + "146.70.117.162", + "2001:ac8:20:274::a99f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-102", + "wgpubkey": "ydXFN45/kROELJrF6id+uIrnS5DvTKSCkZDjfL9De2Q=", + "ips": [ + "146.70.117.194", + "2001:ac8:20:275::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-103", + "wgpubkey": "KkShcqgwbkX2A9n1hhST6qu+m3ldxdJ2Lx8Eiw6mdXw=", + "ips": [ + "146.70.117.226", + "2001:ac8:20:276::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-104", + "wgpubkey": "uKTC5oP/zfn6SSjayiXDDR9L82X0tGYJd5LVn5kzyCc=", + "ips": [ + "146.70.107.194", + "2001:ac8:20:277::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-105", + "wgpubkey": "Sttn2cr14dvIcCrE8qdlRGHXriqvTyvQWC7dzujH/iM=", + "ips": [ + "146.70.117.2", + "2001:ac8:20:269::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-106", + "wgpubkey": "9ldhvN7r4xGZkGehbsNfYb5tpyTJ5KBb5B3TbxCwklw=", + "ips": [ + "146.70.117.34", + "2001:ac8:20:270::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-301", + "wgpubkey": "dNKRyh2MkJGZdg9jyUJtf9w5GHjX3+/fYatg+xi9TUM=", + "ips": [ + "194.36.25.3", + "2a07:fe00:1::a23f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-302", + "wgpubkey": "A3DbIgPycEJhJ1fQ4zzcajLOKTZsJMeawjdPQiWav20=", + "ips": [ + "194.36.25.18", + "2a07:fe00:1::a24f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-303", + "wgpubkey": "2P+9SjwVCEnMDnBiYfZtQLq9p2S2TFhCM0xJBoevYk4=", + "ips": [ + "194.36.25.33", + "2a07:fe00:1::a25f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-304", + "wgpubkey": "VgNcwWy8MRhfEZY+XSisDM1ykX+uXlHQScOLqqGMLkc=", + "ips": [ + "194.36.25.48", + "2a07:fe00:1::a26f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-401", + "wgpubkey": "AbM8fnQWmmX6Nv0Tz68LigPbGkamJgNjxgzPfENOdXU=", + "ips": [ + "169.150.201.2", + "2a02:6ea0:c762:1::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-402", + "wgpubkey": "6/PBbPtoeWpJA+HZc9Iqg/PPQWD7mGVvZdwQlr1vtRk=", + "ips": [ + "169.150.201.15", + "2a02:6ea0:c762:2::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-403", + "wgpubkey": "HWzSNMbQOQafkVp68B7aLRirhNJ6x5Wjw8/y7oUuHW0=", + "ips": [ + "169.150.201.28", + "2a02:6ea0:c762:3::a37f" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "149.102.246.28", + "2a02:6ea0:f501:4::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "149.102.246.41", + "2a02:6ea0:f501:5::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-wg-101", + "wgpubkey": "li+thkAD7s6IZDgUoiKw4YSjM/U1q203PuthMzIJIU0=", + "ips": [ + "149.102.246.2", + "2a02:6ea0:f501:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-wg-102", + "wgpubkey": "OL0gbjlNt1s26CDQjRP9wgMZbgYff7/xyUI8ypOn01s=", + "ips": [ + "149.102.246.15", + "2a02:6ea0:f501:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "103.125.233.33", + "2403:2c81:1000::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "103.125.233.48", + "2403:2c81:1000::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "146.70.224.130", + "2001:ac8:a:1a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-wg-201", + "wgpubkey": "Oxh13dmwY6nNUa5rVHr7sLiFOj0fjzsaAUAUV87/nGs=", + "ips": [ + "103.125.233.18", + "2403:2c81:1000::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-wg-202", + "wgpubkey": "zmhMPHfkgo+uQxP+l919Gw7cj5NTatg9nMU37eEUWis=", + "ips": [ + "103.125.233.3", + "2403:2c81:1000::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-wg-301", + "wgpubkey": "qbvU06SBHXnqMnpb49rnE0yC4AOWQcWl2bEScu18dh8=", + "ips": [ + "146.70.224.2", + "2001:ac8:a:f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-wg-302", + "wgpubkey": "7FADgmd9KyAVs3eFJE/ob9tV3E6m/klONEEIOfCoPTU=", + "ips": [ + "146.70.224.66", + "2001:ac8:a:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.196.66", + "2001:ac8:26:53::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.196.2", + "2001:ac8:26:52::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-wg-101", + "wgpubkey": "u+h0GmQJ8UBaMTi2BP9Ls6UUszcGC51y6vTmNr/y+AU=", + "ips": [ + "146.70.196.194", + "2001:ac8:26:55::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-wg-102", + "wgpubkey": "iEWLm2F4xV013ZETeZcT1dyUd5O+JnyndHso8RP8txw=", + "ips": [ + "146.70.196.130", + "2001:ac8:26:54::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "isp": "Zenlayer", + "hostname": "id-jpu-wg-001", + "wgpubkey": "XYQvOrRqu8j521Hy/8+jGRDLZoSAssOvCectyKz350Y=", + "ips": [ + "129.227.46.130", + "2602:ffe4:c0d:801d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "isp": "Zenlayer", + "hostname": "id-jpu-wg-002", + "wgpubkey": "gWsH1w7lTYbsS+WxsE6w6vtXSAJoHM6PhDX5DFMYM1k=", + "ips": [ + "129.227.46.162", + "2602:ffe4:c0d:801e::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.189.130", + "2001:ac8:88:86::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.189.194", + "2001:ac8:88:87::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-wg-101", + "wgpubkey": "lHrukA9+vn7Jjzx2Nb/1NQ0WiaiKppEqVxrGT5X1RFQ=", + "ips": [ + "146.70.189.2", + "2001:ac8:88:84::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-wg-102", + "wgpubkey": "8YhrVbViPmYFZ2KJF2pR7d10EaBz8PJbPtoEiAs1IXA=", + "ips": [ + "146.70.189.66", + "2001:ac8:88:85::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-101", + "wgpubkey": "XOedjVJaT2IrEDJbzvtZeL4hP5uPRHzFxvD1cwVwUFo=", + "ips": [ + "169.150.227.197", + "2a02:6ea0:3b00:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-102", + "wgpubkey": "UNeML4rXjvOerAstTNf4gG5B+OfjVzjSQrWE6mrswD0=", + "ips": [ + "169.150.227.210", + "2a02:6ea0:3b00:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-103", + "wgpubkey": "11FJ/NY3jaAw1PSYG9w7bxsMxAzlI+1p8/juh1LJPT0=", + "ips": [ + "169.150.227.222", + "2a02:6ea0:3b00:3::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.225.130", + "2001:ac8:24:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.225.194", + "2001:ac8:24:1a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-001", + "wgpubkey": "Sa9fFFthvihGMO4cPExJ7ZaWSHNYoXmOqZMvJsaxOVk=", + "ips": [ + "178.249.211.66", + "2a02:6ea0:d509:1::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-002", + "wgpubkey": "RJ7e37UEP6hfyLQM/lJ2K5wcZOJQFhm2VhFaBniH1kg=", + "ips": [ + "178.249.211.79", + "2a02:6ea0:d509:2::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-003", + "wgpubkey": "WOyki5Gzoez07X7D3jAhG68hpoiYIWAx1yypVbkQaVY=", + "ips": [ + "178.249.211.92", + "2a02:6ea0:d509:3::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-wg-201", + "wgpubkey": "XHwDoIVZGoVfUYbfcPiRp1LhaOCDc0A3QrS72i3ztBw=", + "ips": [ + "146.70.225.2", + "2001:ac8:24:17::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-wg-202", + "wgpubkey": "y5raL0QZx2CpOozrL+Knmjj7nnly3JKatFnxynjXpE0=", + "ips": [ + "146.70.225.66", + "2001:ac8:24:18::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Palermo", + "isp": "DataPacket", + "hostname": "it-pmo-wg-001", + "wgpubkey": "cE6s9wV8jfAa84sgXWJ5C4d769m5Ki/XA3rxPdMWhVw=", + "ips": [ + "149.22.91.66", + "2a02:6ea0:4f00::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Palermo", + "isp": "DataPacket", + "hostname": "it-pmo-wg-002", + "wgpubkey": "bGtOejMzRDKzFR1gNBAi185dkr/5RtN+QiC8EVl4kU4=", + "ips": [ + "149.22.91.79", + "2a02:6ea0:4f00::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-001", + "wgpubkey": "uhbuY1A7g0yNu0lRhLTi020kYeAx34ED30BA5DQRHFo=", + "ips": [ + "194.114.136.3", + "2400:ddc0:a00b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-002", + "wgpubkey": "wzGXxsYOraTCPZuRxfXVTNmoWsRkMFLqMqDxI4PutBg=", + "ips": [ + "194.114.136.34", + "2400:ddc0:a00b::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-003", + "wgpubkey": "Pt18GnBffElW0sqnd6IDRr5r0B/NDezy6NicoPI+fG8=", + "ips": [ + "194.114.136.65", + "2400:ddc0:a00b::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-004", + "wgpubkey": "JpDAtRuR39GLFKoQNiKvpzuJ65jOOLD7h85ekZ3reVc=", + "ips": [ + "194.114.136.96", + "2400:ddc0:a00b::f301" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.201.130", + "2001:ac8:40:1d::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.201.194", + "2001:ac8:40:1e::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "DataPacket", + "hostname": "jp-tyo-wg-001", + "wgpubkey": "AUo2zhQ0wCDy3/jmZgOe4QMncWWqrdME7BbY2UlkgyI=", + "ips": [ + "138.199.21.239", + "2a02:6ea0:d31c::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "DataPacket", + "hostname": "jp-tyo-wg-002", + "wgpubkey": "zdlqydCbeR7sG1y5L8sS65X1oOtRKvfVbAuFgqEGhi4=", + "ips": [ + "138.199.21.226", + "2a02:6ea0:d31b::a14f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-201", + "wgpubkey": "0j7u9Vd+EsqFs8XeV/T/ZM7gE+TWgEsYCsqcZUShvzc=", + "ips": [ + "146.70.138.194", + "2001:ac8:40:11::b01f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-202", + "wgpubkey": "yLKGIH/eaNUnrOEPRtgvC3PSMTkyAFK/0t8lNjam02k=", + "ips": [ + "146.70.201.2", + "2001:ac8:40:13::b02f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-203", + "wgpubkey": "tgTYDEfbDgr35h6hYW01MH76CJrwuBvbQFhyVsazEic=", + "ips": [ + "146.70.201.66", + "2001:ac8:40:14::b03f" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "isp": "Makonix", + "hostname": "lv-rix-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "31.170.22.2", + "2a00:c68:0:cbcf::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "isp": "Makonix", + "hostname": "lv-rix-wg-001", + "wgpubkey": "z0gUPGRwzmOcFLU6b2Z3dCJUJr2/9OvxujUbjFSTB0Q=", + "ips": [ + "31.170.22.15", + "2a00:c68:0:cbd0::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-001", + "wgpubkey": "yxyntWsANEwxeR0pOPNAcfWY7zEVICZe9G+GxortzEY=", + "ips": [ + "149.88.22.129", + "2a02:6ea0:f803::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-002", + "wgpubkey": "kGkalo3qvm8MynKdzwW7CGBYXkqRwGhHfYVssgKOWnU=", + "ips": [ + "149.88.22.142", + "2a02:6ea0:f803:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-003", + "wgpubkey": "hRamkTwXw0usPFDorPl2vf1qP8chczEBcqeV5bA1QDA=", + "ips": [ + "149.88.22.155", + "2a02:6ea0:f803:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-004", + "wgpubkey": "Q3yqhnYHK/bFjrd6yqti8gSV1gzOwvnl5N5tXuUxMyk=", + "ips": [ + "149.88.22.168", + "2a02:6ea0:f803:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.71", + "2a03:1b20:3:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.72", + "2a03:1b20:3:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.73", + "2a03:1b20:3:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.74", + "2a03:1b20:3:f011::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.75", + "2a03:1b20:3:f011::5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-001", + "wgpubkey": "UrQiI9ISdPPzd4ARw1NHOPKKvKvxUhjwRjaI0JpJFgM=", + "ips": [ + "193.32.249.66", + "2a03:1b20:3:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-002", + "wgpubkey": "DVui+5aifNFRIVDjH3v2y+dQ+uwI+HFZOd21ajbEpBo=", + "ips": [ + "185.65.134.82", + "2a03:1b20:3:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-003", + "wgpubkey": "if4HpJZbN7jft5E9R9wAoTcggIu6eZhgYDvqxnwrXic=", + "ips": [ + "185.65.134.83", + "2a03:1b20:3:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-005", + "wgpubkey": "33BoONMGCm2vknq2eq72eozRsHmHQY6ZHEEZ4851TkY=", + "ips": [ + "193.32.249.70", + "2a03:1b20:3:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-006", + "wgpubkey": "xpZ3ZDEukbqKQvdHwaqKMUhsYhcYD3uLPUh1ACsVr1s=", + "ips": [ + "185.65.134.86", + "2a03:1b20:3:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-007", + "wgpubkey": "Os/BwxAIWehlypQ8QjrKVEK5PhY84b413+U3YWZJYXQ=", + "ips": [ + "185.65.134.76", + "2a03:1b20:3:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-101", + "wgpubkey": "m9w2Fr0rcN6R1a9HYrGnUTU176rTZIq2pcsovPd9sms=", + "ips": [ + "92.60.40.194", + "2a0c:59c0:18::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-102", + "wgpubkey": "uUYbYGKoA6UBh1hfkAz5tAWFv4SmteYC9kWh7/K6Ah0=", + "ips": [ + "92.60.40.209", + "2a0c:59c0:18::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-103", + "wgpubkey": "CE7mlfDJ4gpwLPB/CyPfIusITnGZwDI9v4IlVueGT24=", + "ips": [ + "92.60.40.224", + "2a0c:59c0:18::a22f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-201", + "wgpubkey": "vt+yTcpxWvH8qiSncd1wSPV/78vt2aE2BBU8ZbG7x1Q=", + "ips": [ + "169.150.196.2", + "2a02:6ea0:c034:1::a30f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-202", + "wgpubkey": "BChJDLOwZu9Q1oH0UcrxcHP6xxHhyRbjrBUsE0e07Vk=", + "ips": [ + "169.150.196.15", + "2a02:6ea0:c034:2::a31f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-203", + "wgpubkey": "M5z8TKjJYpIJ3FXoXy7k58IUaoVro2tWMKSgC5WIqR8=", + "ips": [ + "169.150.196.28", + "2a02:6ea0:c034:3::a32f" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.75.11.82", + "2404:f780:5:dee::c1f" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.75.11.98", + "2404:f780:5:def::c2f" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-wg-301", + "wgpubkey": "BOEOP01bcND1a0zvmOxRHPB/ObgjgPIzBJE5wbm7B0M=", + "ips": [ + "103.75.11.50", + "2404:f780:5:deb::f001" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-wg-302", + "wgpubkey": "80WGWgFP9q3eU16MuLJISB1fzAu2LM2heschmokVSVU=", + "ips": [ + "103.75.11.66", + "2404:f780:5:dec::c02f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.11", + "2a02:20c8:4124::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.12", + "2a02:20c8:4124::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.13", + "2a02:20c8:4124::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.14", + "2a02:20c8:4124::4f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-001", + "wgpubkey": "jOUZjMq2PWHDzQxu3jPXktYB7EKeFwBzGZx56cTXXQg=", + "ips": [ + "176.125.235.71", + "2a02:20c8:4124::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-002", + "wgpubkey": "IhhpKphSFWpwja1P4HBctZ367G3Q53EgdeFGZro29Tc=", + "ips": [ + "176.125.235.72", + "2a02:20c8:4124::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-003", + "wgpubkey": "zOBWmQ3BEOZKsYKbj4dC2hQjxCbr3eKa6wGWyEDYbC4=", + "ips": [ + "176.125.235.73", + "2a02:20c8:4124::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-004", + "wgpubkey": "veeEoYS9a2T6K8WMs/MvRCdNJG580XbhnLfbFjp3B0M=", + "ips": [ + "176.125.235.74", + "2a02:20c8:4124::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-005", + "wgpubkey": "ScQu/AqslSPwpXMIEyimrYZWTIdJJXLLeXrijWOF0SE=", + "ips": [ + "178.255.149.140", + "2a02:20c8:4124::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-006", + "wgpubkey": "LBlNBTuT7gNEZoAuxO0PTVPpaDuYA7nAeCyMpg9Agyo=", + "ips": [ + "178.255.149.165", + "2a02:20c8:4124::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-007", + "wgpubkey": "A0gisFM9hOZB0ezDcSIg2WwnyeprHV/dmb5JnzST0EE=", + "ips": [ + "91.90.44.15", + "2a02:20c8:4124::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-008", + "wgpubkey": "/4+nwTRYLjT2UK0g3+S4sjE4oaIQiS6L2b/lpO2bfwI=", + "ips": [ + "91.90.44.18", + "2a02:20c8:4124::f801" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "194.127.199.114", + "2a02:20c8:4120::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "194.127.199.145", + "2a02:20c8:4120::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-001", + "wgpubkey": "kduYoE/b1mA2Pjszx1CzE4Lktsdc2zsUU8Relul2m2U=", + "ips": [ + "194.127.199.2", + "2a02:20c8:4120::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-002", + "wgpubkey": "U9fbFesIIr2HotWdkfMpKyOEPk+RYtE2oYn3KoLmkj4=", + "ips": [ + "194.127.199.31", + "2a02:20c8:4120::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-003", + "wgpubkey": "btc4mh3n9jVCW6yikw3cOPct0x3B5cDK+kKnvgCV0S0=", + "ips": [ + "194.127.199.62", + "2a02:20c8:4120::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-004", + "wgpubkey": "Fu98PLCZw/FTcQqyTy0vzaepkfxuSLAah7wnafGVO1g=", + "ips": [ + "194.127.199.93", + "2a02:20c8:4120::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "DataPacket", + "hostname": "pe-lim-wg-001", + "wgpubkey": "S4j4wshSstg9Au6ewFWr9vsZ8giovGPpKbKehXN8Nwc=", + "ips": [ + "95.173.223.130", + "2a02:6ea0:5500:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "DataPacket", + "hostname": "pe-lim-wg-002", + "wgpubkey": "y7LsVrzYjeMLlTZmVUuuDkFvJp0kONC6+w+wP0gUIyo=", + "ips": [ + "95.173.223.159", + "2a02:6ea0:5500:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.144.66", + "2a0d:5600:13:c48::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.144.98", + "2a0d:5600:13:c49::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-101", + "wgpubkey": "fO4beJGkKZxosCZz1qunktieuPyzPnEVKVQNhzanjnA=", + "ips": [ + "45.134.212.66", + "2a02:6ea0:ce08:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-102", + "wgpubkey": "nJEWae9GebEY7yJONXQ1j4gbURV4QULjx388woAlbDs=", + "ips": [ + "45.134.212.79", + "2a02:6ea0:ce08:2::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-103", + "wgpubkey": "07eUtSNhiJ9dQXBmUqFODj0OqhmbKQGbRikIq9f90jM=", + "ips": [ + "45.134.212.92", + "2a02:6ea0:ce08:3::a07f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-wg-201", + "wgpubkey": "XwFAczY5LdogFwE9soDecXWqywSCDGuRyJhr/0psI00=", + "ips": [ + "45.128.38.226", + "2a0d:5600:13:67::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-wg-202", + "wgpubkey": "nyfOkamv1ryTS62lsmyU96cqI0dtqek84DhyxWgAQGY=", + "ips": [ + "146.70.144.34", + "2a0d:5600:13:c47::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "DataPacket", + "hostname": "pt-lis-wg-201", + "wgpubkey": "JCAe7D/owe11Ii2rhpIKhGZvP/V1P1cVZwZAjpSRqmc=", + "ips": [ + "149.88.20.206", + "2a02:6ea0:fb01:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "DataPacket", + "hostname": "pt-lis-wg-202", + "wgpubkey": "5P4CQYQeSozk/3KQZh/kl7tUMFGgRB60Ttx6x2nh+F8=", + "ips": [ + "149.88.20.193", + "2a02:6ea0:fb01:2::f002" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "HostRoyale", + "hostname": "pt-lis-wg-301", + "wgpubkey": "v28I9wElvqG81kdFi9UZ08qmPDZJnr99lPGTM+HMxgQ=", + "ips": [ + "185.92.210.195", + "2a06:3040:0:1410::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "HostRoyale", + "hostname": "pt-lis-wg-302", + "wgpubkey": "IzFkZPCljVR/zth8r6F4ajnawxFJZhe0+nRbGFp0d0U=", + "ips": [ + "185.92.210.225", + "2a06:3040:0:1410::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.124.162", + "2a04:9dc0:0:134::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "37.120.246.130", + "2a04:9dc0:0:136::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-wg-001", + "wgpubkey": "xpKhRTf9JI269S2PujLbrJm1TwIe67HD5CLe+sP4tUU=", + "ips": [ + "146.70.124.130", + "2a04:9dc0:0:133::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-wg-002", + "wgpubkey": "Ekc3+qU88FuMfkEMyLlgRqDYv+WHJvUsfOMI/C0ydE4=", + "ips": [ + "146.70.124.194", + "2a04:9dc0:0:135::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.193.194", + "2001:ac8:7d:40::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.193.130", + "2001:ac8:7d:39::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-wg-101", + "wgpubkey": "Orrce1127WpljZa+xKbF21zJkJ9wM1M3VJ5GJ/UsIDU=", + "ips": [ + "146.70.193.2", + "2001:ac8:7d:37::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-wg-102", + "wgpubkey": "35lawt+YUx10ELTFhZhg4/xzXRmjxCl/j1O4RK5d60M=", + "ips": [ + "146.70.193.66", + "2001:ac8:7d:38::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.199.66", + "2a0d:5600:d:42::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.199.2", + "2a0d:5600:d:41::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-001", + "wgpubkey": "sFHv/qzG7b6ds5pow+oAR3G5Wqp9eFbBD3BmEGBuUWU=", + "ips": [ + "138.199.60.2", + "2a02:6ea0:d13e:1::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-002", + "wgpubkey": "WM5I4IFwQcVysM4fF4NXZtQXNrSkqVWkQxNPPygOiF0=", + "ips": [ + "138.199.60.15", + "2a02:6ea0:d13e:2::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-003", + "wgpubkey": "3HtGdhEXUPKQIDRW49wCUoTK2ZXfq+QfzjfYoldNchg=", + "ips": [ + "138.199.60.28", + "2a02:6ea0:d13e:3::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-wg-101", + "wgpubkey": "KB6ZA1PAixd74c+mO0VBY4j7LaitK8B4L1APbFIQyQ0=", + "ips": [ + "146.70.199.194", + "2a0d:5600:d:44::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-wg-102", + "wgpubkey": "qrhHOwk0ree+LFxW6htvGEfVFuhM2efQ/M+4p0sx/gA=", + "ips": [ + "146.70.199.130", + "2a0d:5600:d:43::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "DataPacket", + "hostname": "sk-bts-wg-001", + "wgpubkey": "QEVIaIycN8p5twXCuZeQTEj9utozakw/MU8H6+/whls=", + "ips": [ + "138.199.34.129", + "2a02:6ea0:2901:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "DataPacket", + "hostname": "sk-bts-wg-002", + "wgpubkey": "JeEuObwimNmoVtPn4kpMI1y1UM+IChGVBLtmP3CNNVQ=", + "ips": [ + "138.199.34.143", + "2a02:6ea0:2901::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "isp": "HostRoyale", + "hostname": "si-lju-wg-001", + "wgpubkey": "fXWKnogYH3IORGePtkyFg3r/56ZQGkF6hjdw2svhmw8=", + "ips": [ + "93.115.0.3", + "2a06:3040:7:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "isp": "HostRoyale", + "hostname": "si-lju-wg-002", + "wgpubkey": "HkPoWKRG/KV2C8afaaah9Jl5lYuvJo1loCaFadKDZVU=", + "ips": [ + "93.115.0.33", + "2a06:3040:7:210::f101" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "DataPacket", + "hostname": "za-jnb-wg-001", + "wgpubkey": "5dOGXJ9JK/Bul0q57jsuvjNnc15gRpSO1rMbxkf4J2M=", + "ips": [ + "154.47.30.130", + "2a02:6ea0:f206::f001" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "DataPacket", + "hostname": "za-jnb-wg-002", + "wgpubkey": "lTq6+yUYfYsXwBpj/u3LnYqpLhW8ZJXQQ19N/ybP2B8=", + "ips": [ + "154.47.30.143", + "2a02:6ea0:f207::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "HostRoyale", + "hostname": "es-bcn-wg-001", + "wgpubkey": "asbfbY0oP07dBdmVNDSuO3o5rbkGnR56PkXTGXO7YFg=", + "ips": [ + "185.188.61.195", + "2a06:3040:2:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "HostRoyale", + "hostname": "es-bcn-wg-002", + "wgpubkey": "SoTWu5Cf7JSfaPVftMrTVzeyICGc7oc+ODl6GfqzUHA=", + "ips": [ + "185.188.61.225", + "2a06:3040:2:210::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "M247", + "hostname": "es-bcn-wg-101", + "wgpubkey": "TQDQ/SUW7pme5aRWFT4ugr9YAABS/uwJNZgqYKTM+iU=", + "ips": [ + "185.253.99.30", + "2001:ac8:35:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "M247", + "hostname": "es-bcn-wg-102", + "wgpubkey": "GqDjspXPQWM3V5nh1M9IhnxgiIwctvxuFyj73oYTRwo=", + "ips": [ + "185.253.99.98", + "2001:ac8:35:1::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.128.162", + "2001:ac8:23:84::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.74.98", + "2001:ac8:23:87::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "DataPacket", + "hostname": "es-mad-wg-101", + "wgpubkey": "oPpPeyiQhUYqtOxwR387dmFfII8OK5LX2RPyns1rx2U=", + "ips": [ + "45.134.213.194", + "2a02:6ea0:c318:1::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "DataPacket", + "hostname": "es-mad-wg-102", + "wgpubkey": "1Wo/cQeVHX2q9k95nxN+48lgkGLsPQ+uesRb/9XdY1Y=", + "ips": [ + "45.134.213.207", + "2a02:6ea0:c318:2::a07f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-wg-201", + "wgpubkey": "LyO4Xs1eV8JwFr63a1FRnKboQn2Tu/oeMzHhbr7Y6GU=", + "ips": [ + "146.70.128.194", + "2001:ac8:23:85::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-wg-202", + "wgpubkey": "iehXacO91FbBqni2IFxedEYPlW2Wvvt9GtRPPPMo9zc=", + "ips": [ + "146.70.128.226", + "2001:ac8:23:86::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Valencia", + "isp": "HostRoyale", + "hostname": "es-vlc-wg-001", + "wgpubkey": "aEObX8ThiHcN/Y40UqY8dXaGMJsVQUWhrEphbpuQRkw=", + "ips": [ + "193.19.207.195", + "2a06:3040:3:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Valencia", + "isp": "HostRoyale", + "hostname": "es-vlc-wg-002", + "wgpubkey": "JEDqyG7iGjy/rYsE/9H7y0Sz8Sl+KWYYUvkPG7NnCjk=", + "ips": [ + "193.19.207.225", + "2a06:3040:3:210::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.131", + "2a03:1b20:5:f011:31::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.132", + "2a03:1b20:5:f011:31::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.133", + "2a03:1b20:5:f011:31::3f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-001", + "wgpubkey": "5JMPeO7gXIbR5CnUa/NPNK4L5GqUnreF0/Bozai4pl4=", + "ips": [ + "185.213.154.66", + "2a03:1b20:5:f011:31::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-002", + "wgpubkey": "AtvE5KdPeQtOcE2QyXaPt9eQoBV3GBxzimQ2FIuGQ2U=", + "ips": [ + "185.213.154.67", + "2a03:1b20:5:f011::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-003", + "wgpubkey": "BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=", + "ips": [ + "185.213.154.68", + "2a03:1b20:5:f011::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-004", + "wgpubkey": "veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=", + "ips": [ + "185.213.154.69", + "2a03:1b20:5:f011::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-005", + "wgpubkey": "x4h55uXoIIKUqKjjm6PzNiZlzLjxjuAIKzvgU9UjOGw=", + "ips": [ + "185.209.199.2", + "2a03:1b20:5:f011:5::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-006", + "wgpubkey": "dcSpHioI+TY37dbZcviFA/sxSUqmpECXRZIapwR8pVg=", + "ips": [ + "185.209.199.7", + "2a03:1b20:5:f011:6::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-007", + "wgpubkey": "ywfkKYdoVAnjsSYW145ACtrw3DV8xTzFS1hlIO7QRD4=", + "ips": [ + "185.209.199.12", + "2a03:1b20:5:f011:7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-008", + "wgpubkey": "Vh3Y2LsBG1yN4kDeebOr3J6dFooGJIBTftzVqlWhiD4=", + "ips": [ + "185.209.199.17", + "2a03:1b20:5:f011:8::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-101", + "wgpubkey": "B8UVAeNkAW4NiGHd1lpl933Drh4y7pMqpXJpH0SrGjQ=", + "ips": [ + "185.213.154.70", + "2a03:1b20:5:f011::aaaf" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.138.218.131", + "2a03:1b20:1:f410:40::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.138.218.132", + "2a03:1b20:1:f410:40::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-013", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.83", + "2a03:1b20:1:f410::13f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-014", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.84", + "2a03:1b20:1:f410::14f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-015", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.85", + "2a03:1b20:1:f410::15f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-016", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.86", + "2a03:1b20:1:f410::16f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-017", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.87", + "2a03:1b20:1:f410::17f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-018", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.88", + "2a03:1b20:1:f410::18f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-019", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.89", + "2a03:1b20:1:f410::19f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-020", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.90", + "2a03:1b20:1:f410::20f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-021", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.91", + "2a03:1b20:1:f410::21f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-022", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.92", + "2a03:1b20:1:f410::22f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-023", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.93", + "2a03:1b20:1:f410::23f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "45.83.220.92", + "2a03:1b20:1:e011::12f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-001", + "wgpubkey": "Qn1QaXYTJJSmJSMw18CGdnFiVM0/Gj/15OdkxbXCSG0=", + "ips": [ + "193.138.218.220", + "2a03:1b20:1:f410::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-002", + "wgpubkey": "5y66WShsFXqM5K7/4CPEGCWfk7PQyNhVBT2ILjbGm2I=", + "ips": [ + "193.138.218.80", + "2a03:1b20:1:f410::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-003", + "wgpubkey": "fZFAcd8vqWOBpRqlXifsjzGf16gMTg2GuwKyZtkG6UU=", + "ips": [ + "193.138.218.83", + "2a03:1b20:1:f410::a18f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-004", + "wgpubkey": "m4jnogFbACz7LByjo++8z5+1WV0BuR1T7E1OWA+n8h0=", + "ips": [ + "193.138.218.130", + "2a03:1b20:1:f410:40::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-005", + "wgpubkey": "qnJrQEf2JiDHMnMWFFxWz8I9NREockylVgYVE95s72s=", + "ips": [ + "193.138.218.82", + "2a03:1b20:1:f410::a17f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-101", + "wgpubkey": "7ncbaCb+9za3jnXlR95I6dJBkwL1ABB5i4ndFUesYxE=", + "ips": [ + "45.83.220.68", + "2a03:1b20:1:e011::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-102", + "wgpubkey": "cwglRdgLQ4gMG36TIYlc5OIemLNrYs4UM1KTc8mnzxk=", + "ips": [ + "45.83.220.69", + "2a03:1b20:1:e011::a22f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-103", + "wgpubkey": "XscA5gebj51nmhAr6o+aUCnMHWGjbS1Gvvd0tuLRiFE=", + "ips": [ + "45.83.220.70", + "2a03:1b20:1:e011::a23f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.80", + "2a03:1b20:4:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.81", + "2a03:1b20:4:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.82", + "2a03:1b20:4:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.83", + "2a03:1b20:4:f011::4f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-001", + "wgpubkey": "MkP/Jytkg51/Y/EostONjIN6YaFRpsAYiNKMX27/CAY=", + "ips": [ + "185.195.233.76", + "2a03:1b20:4:f011::999f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-002", + "wgpubkey": "q2ZZPfumPaRVl4DJfzNdQF/GHfe6BYAzQ2GZZHb6rmI=", + "ips": [ + "185.65.135.67", + "2a03:1b20:4:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-003", + "wgpubkey": "qZbwfoY4LHhDPzUROFbG+LqOjB0+Odwjg/Nv3kGolWc=", + "ips": [ + "185.65.135.68", + "2a03:1b20:4:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-004", + "wgpubkey": "94qIvXgF0OXZ4IcquoS7AO57OV6JswUFgdONgGiq+jo=", + "ips": [ + "185.65.135.69", + "2a03:1b20:4:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-005", + "wgpubkey": "5rVa0M13oMNobMY7ToAMU1L/Mox7AYACvV+nfsE7zF0=", + "ips": [ + "185.65.135.72", + "2a03:1b20:4:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-006", + "wgpubkey": "5WNG/KKCtgF4+49e/4iqvHVY/i+6dzUmVKXcJj7zi3I=", + "ips": [ + "185.65.135.73", + "2a03:1b20:4:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-007", + "wgpubkey": "YD4k8xaiw2kcRhfLRf2UiRNcDmvvu5NV0xT4d5xOFzU=", + "ips": [ + "185.65.135.70", + "2a03:1b20:4:f011::b07f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-008", + "wgpubkey": "4nOXEaCDYBV//nsVXk7MrnHpxLV9MbGjt+IGQY//p3k=", + "ips": [ + "185.65.135.71", + "2a03:1b20:4:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-009", + "wgpubkey": "t1XlQD7rER0JUPrmh3R5IpxjUP9YOqodJAwfRorNxl4=", + "ips": [ + "185.195.233.69", + "2a03:1b20:4:f011::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-011", + "wgpubkey": "GqKpm8VwKJQLQEQ0PXbkRueY9hDqiMibr+EpW3n9syk=", + "ips": [ + "185.195.233.71", + "2a03:1b20:4:f011::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-012", + "wgpubkey": "1493vtFUbIfSpQKRBki/1d0YgWIQwMV4AQAvGxjCNVM=", + "ips": [ + "185.195.233.66", + "2a03:1b20:4:f011::fb01" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-014", + "wgpubkey": "DYlwUsH63DLjEfKC9yq7P+FoQx99WdKvZGGhXoUZVgk=", + "ips": [ + "185.195.233.68", + "2a03:1b20:4:f011::fd01" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.81", + "2a03:1b20:a:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.82", + "2a03:1b20:a:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.83", + "2a03:1b20:a:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "46.19.140.194", + "2a02:29b8:dc01:1830::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "81.17.16.66", + "2a02:29b8:dc01:1829::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-ovpn-501", + "tcp": true, + "udp": true, + "ips": [ + "146.70.134.130", + "2001:ac8:28:a8::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-ovpn-502", + "tcp": true, + "udp": true, + "ips": [ + "146.70.134.162", + "2001:ac8:28:a9::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-001", + "wgpubkey": "/iivwlyqWqxQ0BVWmJRhcXIFdJeo0WbHQ/hZwuXaN3g=", + "ips": [ + "193.32.127.66", + "2a03:1b20:a:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-002", + "wgpubkey": "qcvI02LwBnTb7aFrOyZSWvg4kb7zNW9/+rS6alnWyFE=", + "ips": [ + "193.32.127.67", + "2a03:1b20:a:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-003", + "wgpubkey": "5Ms10UxGjCSzwImTrvEjcygsWY8AfMIdYyRvgFuTqH8=", + "ips": [ + "193.32.127.68", + "2a03:1b20:a:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-004", + "wgpubkey": "C3jAgPirUZG6sNYe4VuAgDEYunENUyG34X42y+SBngQ=", + "ips": [ + "193.32.127.69", + "2a03:1b20:a:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-005", + "wgpubkey": "dV/aHhwG0fmp0XuvSvrdWjCtdyhPDDFiE/nuv/1xnRM=", + "ips": [ + "193.32.127.70", + "2a03:1b20:a:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-006", + "wgpubkey": "wDjbvO94t0UI1RlimpEFFv7kJ6DngthvuRX6uBN0wAA=", + "ips": [ + "193.32.127.84", + "2a03:1b20:a:f011::f601" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-wg-201", + "wgpubkey": "66NPINP4+1AlojLP0J6O9GxdloiegNnGMV4Yit9Kzg0=", + "ips": [ + "179.43.189.66", + "2a02:29b8:dc01:1832::a1f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-wg-202", + "wgpubkey": "gSLSfY2zNFRczxHndeda258z+ayMvd7DqTlKYlKWJUo=", + "ips": [ + "46.19.136.226", + "2a02:29b8:dc01:1831::f002" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-401", + "wgpubkey": "45ud3I5O6GmPXTrMJiqkiPMI/ubucDqzGaiq3CHJXk8=", + "ips": [ + "138.199.6.194", + "2a02:6ea0:d406:1::a18f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-402", + "wgpubkey": "7VCMEE+Oljm/qKfQJSUCOYPtRSwdOnuPyqo5Vob+GRY=", + "ips": [ + "138.199.6.207", + "2a02:6ea0:d406:2::a19f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-403", + "wgpubkey": "Jmhds6oPu6/j94hjllJCIaKLDyWu6V+ZNRrVVFhWJkI=", + "ips": [ + "138.199.6.220", + "2a02:6ea0:d406:3::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-404", + "wgpubkey": "zfNQqDyPmSUY8+20wxACe/wpk4Q5jpZm5iBqjXj2hk8=", + "ips": [ + "138.199.6.233", + "2a02:6ea0:d406:4::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-501", + "wgpubkey": "HQzvIK88XSsRujBlwoYvvZ7CMKwiYuOqLXyuckkTPHg=", + "ips": [ + "146.70.134.98", + "2001:ac8:28:a7::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-502", + "wgpubkey": "TOA/MQWS6TzJVEa//GPyaET5d52VpHO2isS4786GGwU=", + "ips": [ + "146.70.126.162", + "2001:ac8:28:a1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-503", + "wgpubkey": "ApOUMLFcpTpj/sDAMub0SvASFdsSWtsy+vvw/nWvEmY=", + "ips": [ + "146.70.126.194", + "2001:ac8:28:a2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-504", + "wgpubkey": "I5XiRYHPmxnmGtPJ90Yio6QXL441C/+kYV6UH6wU+jk=", + "ips": [ + "146.70.126.226", + "2001:ac8:28:a3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-505", + "wgpubkey": "dc16Gcid7jLcHRD7uHma1myX3vWhEy/bZIBtqZw0B2I=", + "ips": [ + "146.70.134.2", + "2001:ac8:28:a4::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-506", + "wgpubkey": "7xVJLzW0nfmACr1VMc+/SiSMFh0j0EI3DrU/8Fnj1zM=", + "ips": [ + "146.70.134.34", + "2001:ac8:28:a5::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-507", + "wgpubkey": "RNTpvmWTyjNf8w9qdP+5XlFnyAk5TrVvT+CRa8a0zys=", + "ips": [ + "146.70.134.66", + "2001:ac8:28:a6::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "isp": "Zenlayer", + "hostname": "th-bkk-wg-001", + "wgpubkey": "zX6pm3TVJe7rjQ9GrFH1IY29vw/PJL6LGh3/ALxEyx4=", + "ips": [ + "156.59.50.194", + "2602:ffe4:c09:10a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "isp": "Zenlayer", + "hostname": "th-bkk-wg-002", + "wgpubkey": "L8CCv3NWDaMyUh4dxO44LSy07ETWCcWBeeGFyQZIlyo=", + "ips": [ + "156.59.50.226", + "2602:ffe4:c09:109::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "isp": "DataPacket", + "hostname": "tr-ist-wg-001", + "wgpubkey": "jPhK/ziQfJ1Z5GCPj+qR3A7YV2mIQSQtEPCRuG7TUW8=", + "ips": [ + "149.102.229.129", + "2a02:6ea0:e813::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "isp": "DataPacket", + "hostname": "tr-ist-wg-002", + "wgpubkey": "TDHn9OvFYoHh9nwlYG7OCpPRvCjfODUOksSQPzhguTg=", + "ips": [ + "149.102.229.158", + "2a02:6ea0:e813:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Glasgow", + "isp": "HostRoyale", + "hostname": "gb-glw-wg-001", + "wgpubkey": "xCPSxGj0QVKC637D8HpRsUUCaSfgAF4ephG/CjhQ2kU=", + "ips": [ + "185.201.188.3", + "2a06:3040:d:410::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Glasgow", + "isp": "HostRoyale", + "hostname": "gb-glw-wg-002", + "wgpubkey": "tX+LKwiFvZhGtbuJq8e62+/vhogHNqdAdjHeoOlWqws=", + "ips": [ + "185.201.188.33", + "2a06:3040:d:410::f101" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.131", + "2a03:1b20:7:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.132", + "2a03:1b20:7:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.133", + "2a03:1b20:7:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.195.232.85", + "2a03:1b20:7:f011::5f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-006", + "tcp": true, + "udp": true, + "ips": [ + "185.195.232.86", + "2a03:1b20:7:f011::6f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "146.70.119.98", + "2001:ac8:31:f008::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "146.70.119.130", + "2001:ac8:31:f009::2f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-001", + "wgpubkey": "IJJe0TQtuQOyemL4IZn6oHEsMKSPqOuLfD5HoAWEPTY=", + "ips": [ + "141.98.252.130", + "2a03:1b20:7:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-002", + "wgpubkey": "J57ba81Q8bigy9RXBXvl0DgABTrbl81nb37GuX50gnY=", + "ips": [ + "141.98.252.222", + "2a03:1b20:7:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-003", + "wgpubkey": "VZwE8hrpNzg6SMwn9LtEqonXzSWd5dkFk62PrNWFW3Y=", + "ips": [ + "185.195.232.66", + "2a03:1b20:7:f011::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-004", + "wgpubkey": "PLpO9ikFX1garSFaeUpo7XVSMrILrTB8D9ZwQt6Zgwk=", + "ips": [ + "185.195.232.67", + "2a03:1b20:7:f011::a12f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-005", + "wgpubkey": "bG6WulLmMK408n719B8nQJNuTRyRA3Qjm7bsm9d6v2M=", + "ips": [ + "185.195.232.68", + "2a03:1b20:7:f011::a13f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-006", + "wgpubkey": "INRhM0h4T1hi9j28pcC+vRv47bp7DIsNKtagaFZFSBI=", + "ips": [ + "185.195.232.69", + "2a03:1b20:7:f011::a14f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-007", + "wgpubkey": "MVqe9e9aDwfFuvEhEn4Wd/zWV3cmiCX9fZMWetz+23A=", + "ips": [ + "185.195.232.70", + "2a03:1b20:7:f011::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-008", + "wgpubkey": "uHkxYjfx6yzPHSdyqYqSEHsgFNFV8QCSV6aghuQK3AA=", + "ips": [ + "141.98.252.138", + "2a03:1b20:7:f011::f801" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-201", + "wgpubkey": "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=", + "ips": [ + "185.248.85.3", + "2a0b:89c1:3::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-202", + "wgpubkey": "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=", + "ips": [ + "185.248.85.18", + "2a0b:89c1:3::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-203", + "wgpubkey": "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=", + "ips": [ + "185.248.85.33", + "2a0b:89c1:3::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-204", + "wgpubkey": "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=", + "ips": [ + "185.248.85.48", + "2a0b:89c1:3::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-301", + "wgpubkey": "Gn9WbiHw83r8BI+v/Usx3mSR+TpMAWLFFz0r9Lfy7XQ=", + "ips": [ + "146.70.119.66", + "2001:ac8:31:f007::a39f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-302", + "wgpubkey": "s0i/bDeQ3xfMsLSrg6bILWunyytJNHVgIJlfflA8jFI=", + "ips": [ + "146.70.119.2", + "2001:ac8:31:f005::a37f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-303", + "wgpubkey": "ZcDVPTugbxo0rTvDKNnexzJ2qNrh3c/wFRtM2Pfl6jM=", + "ips": [ + "146.70.119.34", + "2001:ac8:31:f006::a38f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-304", + "wgpubkey": "nirHSVXCvnxR3aIW95BN0YV02vW/2I7DaeSexqgHW1I=", + "ips": [ + "146.70.119.162", + "2001:ac8:31:f00a::f001" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.2", + "2001:ac8:8b:2e::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.34", + "2001:ac8:8b:23::2f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.66", + "2001:ac8:8b:24::3f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-001", + "wgpubkey": "Q2khJLbTSFxmppPGHgq2HdxMQx7CczPZCgVpYZMoNnM=", + "ips": [ + "146.70.133.98", + "2001:ac8:8b:2d::a47f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-002", + "wgpubkey": "SkERuKByX8fynFxSFAJVjUFJAeu9b/dfW2FynTM7XAk=", + "ips": [ + "146.70.132.130", + "2001:ac8:8b:26::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-003", + "wgpubkey": "c+RjxBk+wZCv0s4jffQesHdInakRVR3oV0IhpVo0WRY=", + "ips": [ + "146.70.132.162", + "2001:ac8:8b:27::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-004", + "wgpubkey": "DiMqK85O8U1T65HdVgOGh9uI63I3by9Dt6Shik2xbyM=", + "ips": [ + "146.70.132.194", + "2001:ac8:8b:28::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-005", + "wgpubkey": "kbVlSaqHQSpnewQn1X0j5R+WKiSW2e2Gq+I4XZj3Bjk=", + "ips": [ + "146.70.132.226", + "2001:ac8:8b:29::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-006", + "wgpubkey": "zKOZzAitVBxfdxtXgGIyk7zmTtoHrVts7RQGrtsRIxo=", + "ips": [ + "146.70.133.2", + "2001:ac8:8b:2a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-007", + "wgpubkey": "ANaRAtjxqpPgp7r9VjTDfnBMis+MzSgCXc7TZMa0Vno=", + "ips": [ + "146.70.133.34", + "2001:ac8:8b:2b::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.54.135.162", + "2607:9000:9000:16::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.54.135.194", + "2607:9000:9000:17::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "185.156.46.169", + "2a02:6ea0:e206:4::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "185.156.46.182", + "2a02:6ea0:e206:5::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-001", + "wgpubkey": "UKNLCimke54RqRdj6UFyIuBO6nv2VVpDT3vM9N25VyI=", + "ips": [ + "198.54.135.34", + "2607:9000:9000:12::b46f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-002", + "wgpubkey": "UUCBSYnGq+zEDqA6Wyse3JXv8fZuqKEgavRZTnCXlBg=", + "ips": [ + "198.54.135.66", + "2607:9000:9000:13::b47f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-003", + "wgpubkey": "0s0NdIzo+pq0OiHstZHqapYsdevGQGopQ5NM54g/9jo=", + "ips": [ + "198.54.135.98", + "2607:9000:9000:14::b48f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-004", + "wgpubkey": "TvqnL6VkJbz0KrjtHnUYWvA7zRt9ysI64LjTOx2vmm4=", + "ips": [ + "198.54.135.130", + "2607:9000:9000:15::b49f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-101", + "wgpubkey": "JEuuPzZE8uE53OFhd3YFiZuwwANLqwmdXWMHPUbBwnk=", + "ips": [ + "185.156.46.130", + "2a02:6ea0:e206:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-102", + "wgpubkey": "5hlEb3AjTzVIJyYWCYvJvbgA4p25Ltfp2cYnys90LQ0=", + "ips": [ + "185.156.46.143", + "2a02:6ea0:e206:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-103", + "wgpubkey": "oD9IFZsA5sync37K/sekVXaww76MwA3IvDRpR/irZWQ=", + "ips": [ + "185.156.46.156", + "2a02:6ea0:e206:3::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "45.134.140.156", + "2a02:6ea0:c122:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.134.140.169", + "2a02:6ea0:c122:4::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.226", + "2607:f7a0:1:d::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.227", + "2607:f7a0:1:d::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.228", + "2607:f7a0:1:d::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.229", + "2607:f7a0:1:d::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.230", + "2607:f7a0:1:d::5f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-wg-001", + "wgpubkey": "nvyBkaEXHwyPBAm8spGB0TFzf2W5wPAl8EEuJ0t+bzs=", + "ips": [ + "45.134.140.130", + "2a02:6ea0:c122:1::b79f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-wg-002", + "wgpubkey": "ECeGYeh8CfPJO3v56ucCDdl+PlKcj2bBszUGkT+hVWQ=", + "ips": [ + "45.134.140.143", + "2a02:6ea0:c122:2::b80f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-101", + "wgpubkey": "MNUf9CYsmf72git8MGzui3kplclyPP6xAS6sz3JT2F8=", + "ips": [ + "66.115.180.231", + "2607:f7a0:1:d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-102", + "wgpubkey": "RFHvvrw6/3qnwsH89GMYm7xdJA72MPSpXI+WPk7sNwk=", + "ips": [ + "66.115.180.232", + "2607:f7a0:1:d::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-103", + "wgpubkey": "u3X1bahP8G2MNUJ57ImYx5pvADVhI9YmCsWlTULAQnw=", + "ips": [ + "66.115.180.233", + "2607:f7a0:1:d::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-104", + "wgpubkey": "bY+7UNjd1zhZ4GSV9YlarYxB7fl5dhKEyJHaJ3iZg3g=", + "ips": [ + "66.115.180.234", + "2607:f7a0:1:d::b70f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-105", + "wgpubkey": "QEz7T4HN99SCFuWRJA3MJL8B7WnmbdVcM2t5CDe0BQw=", + "ips": [ + "66.115.180.235", + "2607:f7a0:1:d::b71f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-106", + "wgpubkey": "s60zDaHwztfLhcrcQXIMhXgTAI1KAUT2osA7k3LSHDE=", + "ips": [ + "66.115.180.236", + "2607:f7a0:1:d::b72f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-107", + "wgpubkey": "IbkH8hULcFgUEt/OBXamWI2IotlbYJMyAcAhSTbtD1o=", + "ips": [ + "66.115.180.237", + "2607:f7a0:1:d::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-108", + "wgpubkey": "/38SXpa6r80z/CHrPHDW5uTaXa3Xj0U8hIztCEV4q3I=", + "ips": [ + "66.115.180.238", + "2607:f7a0:1:d::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-109", + "wgpubkey": "n2FGxqt/MhTrHKQyoguto+2s6lTPskTwOsCX9jGHzW0=", + "ips": [ + "66.115.180.239", + "2607:f7a0:1:d::b75f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-110", + "wgpubkey": "bjy5pU9WbGfAfnwjI+IajrgYwbbGlTk4xHimTpDQ/HY=", + "ips": [ + "66.115.180.240", + "2607:f7a0:1:d::f901" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-201", + "wgpubkey": "BbW2Gm4IZEW8CrEIg71jZC9pztA/J4h1PK9lwq57ewE=", + "ips": [ + "107.150.22.2", + "2607:fcd0:aa80:1304::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-202", + "wgpubkey": "Qnb6TdDA7IkTIISJ40W+6rZA81pb0v4D0jRZRTYNQnQ=", + "ips": [ + "104.129.24.98", + "2607:fcd0:aa80:1302::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-203", + "wgpubkey": "nZQvI+2ZzDC2titokjWcojbjvn4bxHrhUzg1UK/K0nc=", + "ips": [ + "104.129.24.114", + "2607:fcd0:aa80:1303::b34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-204", + "wgpubkey": "rlZyrKRSLfvjUBpYD2jUkWhdWkB1RnRr+Q4bv9+nvD8=", + "ips": [ + "104.223.91.18", + "2607:fcd0:aa80:1305::b43f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "HostRoyale", + "hostname": "us-bos-wg-001", + "wgpubkey": "CsysTnZ0HvyYRjsKMPx60JIgy777JhD0h9WpbHbV83o=", + "ips": [ + "43.225.189.131", + "2a06:3040:12:610::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "HostRoyale", + "hostname": "us-bos-wg-002", + "wgpubkey": "LLkA2XSBvfUeXgLdMKP+OTQeKhtGB03kKskJEwlzAE8=", + "ips": [ + "43.225.189.162", + "2a06:3040:12:610::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "DataPacket", + "hostname": "us-bos-wg-101", + "wgpubkey": "oxJ2PIqrQOmS0uiyXvnxT64E1uZnjZDWPbP/+APToAE=", + "ips": [ + "149.40.50.98", + "2a02:6ea0:f901::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "DataPacket", + "hostname": "us-bos-wg-102", + "wgpubkey": "wcmmadJObux2/62ES+QbIO21BkU7p2I0s6n4WNZZgW0=", + "ips": [ + "149.40.50.112", + "2a02:6ea0:f901:1::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.34", + "2607:9000:0:51::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.66", + "2607:9000:0:52::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.98", + "2607:9000:0:53::3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-001", + "wgpubkey": "T5aabskeYCd5dn81c3jOKVxGWQSLwpqHSHf6wButSgw=", + "ips": [ + "68.235.44.2", + "2607:9000:0:56::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-002", + "wgpubkey": "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=", + "ips": [ + "68.235.43.130", + "2607:9000:0:54::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-003", + "wgpubkey": "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=", + "ips": [ + "68.235.44.34", + "2607:9000:0:57::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-004", + "wgpubkey": "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=", + "ips": [ + "68.235.43.162", + "2607:9000:0:55::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-005", + "wgpubkey": "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=", + "ips": [ + "68.235.44.66", + "2607:9000:0:58::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-006", + "wgpubkey": "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=", + "ips": [ + "68.235.44.98", + "2607:9000:0:59::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-007", + "wgpubkey": "qOy1gb7dETzbzzKABZGNmb0V53XN1DEAQBs9/0R/yzs=", + "ips": [ + "68.235.44.194", + "2607:9000:0:84::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-101", + "wgpubkey": "P1Y04kVMViwZrMhjcX8fDmuVWoKl3xm2Hv/aQOmPWH0=", + "ips": [ + "66.63.167.114", + "2607:fcd0:bb80:403::b32f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-102", + "wgpubkey": "6CwMg2aoKNSFFcIsW3R3SY5T6fBYwoRFifl8ZVlw+Vg=", + "ips": [ + "66.63.167.194", + "2607:fcd0:bb80:402::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-103", + "wgpubkey": "GO7SMFDm9Z29PLeX7cw8QndfUsdAe3jYQ8zDr91zt0U=", + "ips": [ + "66.63.167.162", + "2607:fcd0:bb80:404::b44f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-104", + "wgpubkey": "/WirOQ8FNF9tD1+/MYgIAWpjFKiJYhJJ7/w2QmKBrVo=", + "ips": [ + "66.63.167.146", + "2607:fcd0:bb80:405::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-201", + "wgpubkey": "+Xx2mJnoJ+JS11Z6g8mp6aUZV7p6DAN9ZTAzPaHakhM=", + "ips": [ + "87.249.134.1", + "2a02:6ea0:c61f::b63f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-202", + "wgpubkey": "rmN4IM0I0gF7V9503/xnQMOLsu9txl8GTqci9dgUO18=", + "ips": [ + "87.249.134.14", + "2a02:6ea0:c61f:1::b64f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-203", + "wgpubkey": "V0ilKm3bVqt0rmJ80sP0zSVK4m6O3nADi88IQAL5kjw=", + "ips": [ + "87.249.134.27", + "2a02:6ea0:c61f:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.211.194", + "2001:ac8:9a:82::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.177.66", + "2001:ac8:9a:84::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.3", + "2606:2e00:8007:1::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.4", + "2606:2e00:8007:1::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.5", + "2606:2e00:8007:1::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.6", + "2606:2e00:8007:1::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.7", + "2606:2e00:8007:1::5f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-001", + "wgpubkey": "EAzbWMQXxJGsd8j2brhYerGB3t5cPOXqdIDFspDGSng=", + "ips": [ + "146.70.211.66", + "2001:ac8:9a:76::1f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-002", + "wgpubkey": "OYG1hxzz3kUGpVeGjx9DcCYreMO3S6tZN17iHUK+zDE=", + "ips": [ + "146.70.211.2", + "2001:ac8:9a:75::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-003", + "wgpubkey": "jn/i/ekJOkkRUdMj2I4ViUKd3d/LAdTQ+ICKmBy1tkM=", + "ips": [ + "146.70.211.130", + "2001:ac8:9a:78::3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-101", + "wgpubkey": "fZXw+9I+tAxRaiYB1tbPYa9EFulu3TJ10SAZoHrS/0U=", + "ips": [ + "174.127.113.8", + "2606:2e00:8007:1::a30f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-102", + "wgpubkey": "C6fRMWc8NehE1Nsn4VTI5RQ1vkAf+nG+IN+jbC1MgSo=", + "ips": [ + "174.127.113.9", + "2606:2e00:8007:1::a31f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-103", + "wgpubkey": "WqCOcFoOHUS5w/7W+psWusNWNLQAQItMHwgBn+zU3V0=", + "ips": [ + "174.127.113.10", + "2606:2e00:8007:1::a32f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-104", + "wgpubkey": "c3OgLZw8kh5k3lqACXIiShPGr8xcIfdrUs+qRW9zmk4=", + "ips": [ + "174.127.113.11", + "2606:2e00:8007:1::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-105", + "wgpubkey": "REvzY8yCTggZmODs3FOjUc4uqwh4w4PCnNr7BV/7ZFw=", + "ips": [ + "174.127.113.12", + "2606:2e00:8007:1::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-106", + "wgpubkey": "k+h3AKF7Lkw5Z2RaCQ7PJzW1zhHZ127XY2YZgKg4mAQ=", + "ips": [ + "174.127.113.13", + "2606:2e00:8007:1::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-107", + "wgpubkey": "Zmv3KbVF3ZSGvkWrFsNx2qGXpaNg0AC2duEwoAVZrRI=", + "ips": [ + "174.127.113.14", + "2606:2e00:8007:1::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-108", + "wgpubkey": "fYuciekV90AUxyJPw2SLOy0Vo73XFS30jBBGIfhvtn4=", + "ips": [ + "174.127.113.15", + "2606:2e00:8007:1::a37f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-109", + "wgpubkey": "ICC/pGgEuhgJ8SZykkKBeXyqNtjHPwSTOo6xXGgMq20=", + "ips": [ + "174.127.113.16", + "2606:2e00:8007:1::a38f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-110", + "wgpubkey": "USDvnCyWR5ka523xnxy9KG4rnw/3i9mBprjjp0FQ1QE=", + "ips": [ + "174.127.113.17", + "2606:2e00:8007:1::a39f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-401", + "wgpubkey": "xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=", + "ips": [ + "37.19.200.156", + "2a02:6ea0:d20c:3::b72f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-402", + "wgpubkey": "sPQEji8BhxuM/Za0Q0/9aWYxyACtQF0qRpzaBLumEzo=", + "ips": [ + "37.19.200.143", + "2a02:6ea0:d20c:2::b71f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-403", + "wgpubkey": "4s9JIhxC/D02tosXYYcgrD+pHI+C7oTAFsXzVisKjRs=", + "ips": [ + "37.19.200.130", + "2a02:6ea0:d20c:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-501", + "wgpubkey": "8J4HNTRdwRX1me/sKxPTy8576fCcmVusC194ZLKyjQg=", + "ips": [ + "206.217.206.27", + "2606:2e00:8007:a:ae1f:6bff:fef5:7bf5" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-502", + "wgpubkey": "7RegQnJ70PNlB0bpICSlc/W48GCtzszhSelTdlK5QQ0=", + "ips": [ + "206.217.206.47", + "2606:2e00:8007:a:ae1f:6bff:fef5:7b21" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-503", + "wgpubkey": "si+P5Ef8D21CAkzh9NgrnIhbZDBcFxoYDaN6amSTkWE=", + "ips": [ + "206.217.206.67", + "2606:2e00:8007:a:ae1f:6bff:fef5:7beb" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-504", + "wgpubkey": "YROBTYZewygT97VTgMHxEwqaUiAjAvsuwTsuh5IBH1Y=", + "ips": [ + "206.217.206.87", + "2606:2e00:8007:a:ae1f:6bff:fef5:7b1b" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-505", + "wgpubkey": "bf59QZip/y9tvCF6S9pir32LuFtvWH7nayqhzplyGkQ=", + "ips": [ + "206.217.206.107", + "2606:2e00:8007:a:ae1f:6bff:fef5:7983" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.44.128.98", + "2607:9000:2000:13::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.44.128.226", + "2607:9000:2000:17::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-001", + "wgpubkey": "3clcc9092sgEsFGrUfcCBUzT9tN6uy12t77uTmSLqwc=", + "ips": [ + "198.44.128.194", + "2607:9000:2000:16::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-002", + "wgpubkey": "jh3kAesaULbfC0h7VHwNPiTrz04vPC0Aa4kwRjy2+2Q=", + "ips": [ + "198.44.128.162", + "2607:9000:2000:15::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-003", + "wgpubkey": "v7CG+wctmTw9LxuWBp3tGARithgbDU7nZZduSefkqzg=", + "ips": [ + "198.44.128.130", + "2607:9000:2000:14::a46f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-101", + "wgpubkey": "74U+9EQrMwVOafgXuSp8eaKG0+p4zjSsDe3J7+ojhx0=", + "ips": [ + "37.19.210.1", + "2a02:6ea0:d70a::b57f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-102", + "wgpubkey": "T44stCRbQXFCBCcpdDbZPlNHp2eZEi91ooyk0JDC21E=", + "ips": [ + "37.19.210.14", + "2a02:6ea0:d70a:1::b58f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-103", + "wgpubkey": "Az+PGHQ0xFElmRBv+PKZuRnEzKPrPtUpRD3vpxb4si4=", + "ips": [ + "37.19.210.27", + "2a02:6ea0:d70a:2::b59f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Detroit MI", + "isp": "HostRoyale", + "hostname": "us-det-wg-001", + "wgpubkey": "+USmlxhnLmlNkDnBbu+rXwjUwa383e0ilYEqPkEkNHA=", + "ips": [ + "185.141.119.131", + "2a06:3040:11:610::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Detroit MI", + "isp": "HostRoyale", + "hostname": "us-det-wg-002", + "wgpubkey": "cYqP1UqhOYuaj47e4jAbgL55h52L+ALjtML26OtBvFU=", + "ips": [ + "185.141.119.161", + "2a06:3040:11:610::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-001", + "wgpubkey": "NKscQ4mm24nsYWfpL85Cve+BKIExR0JaysldUtVSlzg=", + "ips": [ + "37.19.221.130", + "2a02:6ea0:e001::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-002", + "wgpubkey": "tzSfoiq9ZbCcE5I0Xz9kCrsWksDn0wgvaz9TiHYTmnU=", + "ips": [ + "37.19.221.143", + "2a02:6ea0:e001:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-003", + "wgpubkey": "fNSu30TCgbADxNKACx+5qWY6XGJOga4COmTZZE0k0R4=", + "ips": [ + "37.19.221.156", + "2a02:6ea0:e001:2::b55f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-004", + "wgpubkey": "NkZMYUEcHykPkAFdm3dE8l2U9P2mt58Dw6j6BWhzaCc=", + "ips": [ + "37.19.221.169", + "2a02:6ea0:e001:3::b56f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.44.129.162", + "2607:9000:3000:17::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.44.129.130", + "2607:9000:3000:16::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.41", + "2a02:6ea0:c859:4::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.54", + "2a02:6ea0:c859:5::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.66", + "2a0d:5600:8:38::d1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.130", + "2a0d:5600:8:39::d2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-403", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.194", + "2a0d:5600:8:3a::d3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-101", + "wgpubkey": "IDXrg8s0qYFAWcMcXFb6P/EHOESkTyotZCSlerQfyCQ=", + "ips": [ + "198.44.129.98", + "2607:9000:3000:15::a49f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-102", + "wgpubkey": "Ldwvbs6mOxEbpXLRA3Z/qmEyJo2wVTdQ94+v3UFsbBw=", + "ips": [ + "198.44.129.66", + "2607:9000:3000:14::a50f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-103", + "wgpubkey": "gabX4D/Yhut0IMl/9jRK+kMoHbkL38qaUm7r/dH5rWg=", + "ips": [ + "198.44.129.34", + "2607:9000:3000:13::a51f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-201", + "wgpubkey": "xWobY7DWTL+vL1yD4NWwbQ3V4e8qz10Yz+EFdkIjq0Y=", + "ips": [ + "169.150.203.2", + "2a02:6ea0:c859:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-202", + "wgpubkey": "SDnciTlujuy2APFTkhzfq5X+LDi+lhfU38wI2HBCxxs=", + "ips": [ + "169.150.203.15", + "2a02:6ea0:c859:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-203", + "wgpubkey": "W6/Yamxmfx3geWTwwtBbJe/J8UdEzOfa6M+cEpNPIwg=", + "ips": [ + "169.150.203.28", + "2a02:6ea0:c859:3::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-301", + "wgpubkey": "U4uhpKZm/G1i/qU6s0puSuI+UL4bNCWTuiZBJ8Hdi1Y=", + "ips": [ + "198.96.89.194", + "2607:fcd0:100:7c03::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-302", + "wgpubkey": "Ey0LihLvJ0YnkMLXK+Kcb4SniJiqoavQuASdRRFASXw=", + "ips": [ + "204.152.216.98", + "2607:fcd0:100:7c01::b29f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-303", + "wgpubkey": "AcExK2CiCHYWU6Sft49uYnLUhIZiId1M+ISzupOJznI=", + "ips": [ + "204.152.216.114", + "2607:fcd0:100:7c02::b30f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-401", + "wgpubkey": "KX+59wAvZwSKv/MVHsFVQS1j9Loaol0c8oOI/BGf3Bk=", + "ips": [ + "146.70.173.2", + "2a0d:5600:8:4::d1f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-402", + "wgpubkey": "EKZXvHlSDeqAjfC/m9aQR0oXfQ6Idgffa9L0DH5yaCo=", + "ips": [ + "146.70.173.66", + "2a0d:5600:8:6::d2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-403", + "wgpubkey": "mBqaWs6pti93U+1feyj6LRzzveNmeklancn3XuKoPWI=", + "ips": [ + "146.70.173.130", + "2a0d:5600:8:d::d3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-404", + "wgpubkey": "YGl+lj1tk08U9x9Z73zowUW3rk8i0nPmYkxGzNdE4VM=", + "ips": [ + "146.70.173.194", + "2a0d:5600:8:2f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-405", + "wgpubkey": "Pe86fNGUd+AIeaabsn7Hk4clQf1kJvxOXPykfVGjeho=", + "ips": [ + "146.70.172.2", + "2a0d:5600:8:37::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-406", + "wgpubkey": "K3KF3TCWbYcHF5XHL2zaifvQGHrPWoCjFYxDaJO71GA=", + "ips": [ + "146.70.174.2", + "2a0d:5600:8:3b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-501", + "wgpubkey": "IHFvbxyz7qK6x811dNNf0rs1MFLaZwW9C3FNwOLz6hY=", + "ips": [ + "23.162.40.4", + "2602:fa19:4::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-502", + "wgpubkey": "L3P0XU2RveHw0l845ME8X24xy3oOTMr9pTHkNo8Aw10=", + "ips": [ + "23.162.40.45", + "2602:fa19:4::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-503", + "wgpubkey": "tzDBizpxIHNLPvVdW3pop65cwWNkL73Gam3DUxHDfns=", + "ips": [ + "23.162.40.86", + "2602:fa19:4::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "McAllen TX", + "isp": "DataPacket", + "hostname": "us-txc-wg-001", + "wgpubkey": "+OCONjBoN5RytiPy000VOzhZsiu1tSzecmc1hl/q8hI=", + "ips": [ + "79.127.222.194", + "2a02:6ea0:fe00:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "McAllen TX", + "isp": "DataPacket", + "hostname": "us-txc-wg-002", + "wgpubkey": "mjv8qVNwhVKO0ePAI97CRil188uwdR/VR6ihcNY/hio=", + "ips": [ + "79.127.222.207", + "2a02:6ea0:fe00:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.187.194", + "2a0d:5600:6:107::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.183.66", + "2a0d:5600:6:108::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-001", + "wgpubkey": "FVEKAMJqaJU2AwWn5Mg9TK9IAfJc4XDUmSzEeC/VXGs=", + "ips": [ + "45.134.142.219", + "2a02:6ea0:cc1f:2::b62f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-002", + "wgpubkey": "H5t7PsMDnUAHrR8D2Jt3Mh6N6w43WmCzrOHShlEU+zw=", + "ips": [ + "45.134.142.206", + "2a02:6ea0:cc1f:1::b61f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-003", + "wgpubkey": "N/3F0QvCuiWWzCwaJmnPZO53LZrKn6sr7rItecrQSQY=", + "ips": [ + "45.134.142.193", + "2a02:6ea0:cc1f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-101", + "wgpubkey": "50/sEK7t3on/H2sunx+gzIjJI6E9/Y6gHOHQrvzsij4=", + "ips": [ + "146.70.187.2", + "2a0d:5600:6:104::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-102", + "wgpubkey": "sJw9LzH2sunqRes2FNi8l6+bd8jqFAiYFfUGTbCXlA4=", + "ips": [ + "146.70.187.66", + "2a0d:5600:6:105::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-103", + "wgpubkey": "TpPDIhObMTeoMVx0MvSstQaIH1EfRYqW2vzGTB+ETVk=", + "ips": [ + "146.70.187.130", + "2a0d:5600:6:106::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "Quadranet", + "hostname": "us-mia-wg-301", + "wgpubkey": "nCr87vBNEwrERnkcDhWENNVIMaLF+C0p3h9nqwguO2g=", + "ips": [ + "173.44.63.66", + "2607:ff48:aa81:2602::b25f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "Quadranet", + "hostname": "us-mia-wg-302", + "wgpubkey": "voRd3Wi8W4kaEMIJMy7IBkpkAVxQkYF0VubbK1+zgR8=", + "ips": [ + "104.129.41.194", + "2607:ff48:aa81:2603::b26f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "198.44.136.130", + "2607:9000:a000:15::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "198.44.136.162", + "2607:9000:a000:16::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-501", + "tcp": true, + "udp": true, + "ips": [ + "146.70.168.2", + "2a0d:5600:24:2c5::e01f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-502", + "tcp": true, + "udp": true, + "ips": [ + "146.70.166.2", + "2a0d:5600:24:2c4::e02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-503", + "tcp": true, + "udp": true, + "ips": [ + "146.70.166.66", + "2a0d:5600:24:2c1::e03f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-601", + "tcp": true, + "udp": true, + "ips": [ + "146.70.171.194", + "2a0d:5600:24:1375::f1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-602", + "tcp": true, + "udp": true, + "ips": [ + "146.70.185.130", + "2a0d:5600:24:136c::f2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-603", + "tcp": true, + "udp": true, + "ips": [ + "146.70.185.66", + "2a0d:5600:24:136b::f3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-301", + "wgpubkey": "IzqkjVCdJYC1AShILfzebchTlKCqVCt/SMEXolaS3Uc=", + "ips": [ + "143.244.47.65", + "2a02:6ea0:c43f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-302", + "wgpubkey": "gH/fZJwc9iLv9fazk09J/DUWT2X7/LFXijRS15e2n34=", + "ips": [ + "143.244.47.78", + "2a02:6ea0:c43f:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-303", + "wgpubkey": "KRO+RzrFV92Ah+qpHgAMKZH2jtjRlmJ4ayl0gletY3c=", + "ips": [ + "143.244.47.91", + "2a02:6ea0:c43f:2::b52f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-401", + "wgpubkey": "4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=", + "ips": [ + "198.44.136.34", + "2607:9000:a000:12::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-402", + "wgpubkey": "/o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=", + "ips": [ + "198.44.136.66", + "2607:9000:a000:13::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-403", + "wgpubkey": "pFM95uwAFj62uYDkJXcAPYaPmy+nl+dd92ZLV9bWbHQ=", + "ips": [ + "198.44.136.98", + "2607:9000:a000:14::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-404", + "wgpubkey": "pCZ9NnIgAEwrDy4H/eGz8NvNcbAg7UGFTGYruyCfVwU=", + "ips": [ + "198.44.136.194", + "2607:9000:a000:17::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-501", + "wgpubkey": "FMNXnFgDHNTrT9o49U8bb3Z8J90LZzVJPpRzKtJM9W8=", + "ips": [ + "146.70.165.2", + "2a0d:5600:24:2b6::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-502", + "wgpubkey": "cmUR4g9aIFDa5Xnp4B6Zjyp20jwgTTMgBdhcdvDV0FM=", + "ips": [ + "146.70.165.130", + "2a0d:5600:24:2b8::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-503", + "wgpubkey": "czE6NJ8CccA5jnJkKoZGDpMXFqSudeVTzxU5scLP/H8=", + "ips": [ + "146.70.165.194", + "2a0d:5600:24:2b9::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-504", + "wgpubkey": "MVa5yuoYnjXJtSCeBsyvaemuaK4KFN1p78+37Nvm2m0=", + "ips": [ + "146.70.166.130", + "2a0d:5600:24:2c2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-505", + "wgpubkey": "jrjogHbVDuPxyloBldvtB51TmebNJo+4rW2JFrN33iM=", + "ips": [ + "146.70.166.194", + "2a0d:5600:24:2c3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-506", + "wgpubkey": "IjdtI6sz8ZjU5tlK3eW4HAPp+GRvHErDtqxBcr8JvTM=", + "ips": [ + "146.70.165.66", + "2a0d:5600:24:2b7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-601", + "wgpubkey": "OKyEPafS1lnUTWqtVeWElkTzcmkvLi9dncBHbSyFrH8=", + "ips": [ + "146.70.185.2", + "2a0d:5600:24:136a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-602", + "wgpubkey": "4Lg7yQlukAMp6EX+2Ap+q4O+QIV/OEZyybtFJmN9umw=", + "ips": [ + "146.70.168.130", + "2a0d:5600:24:1378::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-603", + "wgpubkey": "s3N8Xeh6khECbgRYPk9pp5slw2uE0deOxa9rSJ6bzwE=", + "ips": [ + "146.70.168.66", + "2a0d:5600:24:1377::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-604", + "wgpubkey": "FIcFPDjxfF24xBrv+W7Bcqb2wADSWd+HAWPKYo6xZEk=", + "ips": [ + "146.70.171.66", + "2a0d:5600:24:1372::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-605", + "wgpubkey": "78nFhfPEjrfOxBkUf2ylM7w6upYBEcHXm93sr8CMTE4=", + "ips": [ + "146.70.171.130", + "2a0d:5600:24:1374::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-606", + "wgpubkey": "a8+VB6Cgah7Q5mWY860VfgU/h3Zf+pMpMdHB22e1uTQ=", + "ips": [ + "146.70.168.194", + "2a0d:5600:24:1379::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.133.34", + "2607:9000:7000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.133.66", + "2607:9000:7000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-wg-102", + "wgpubkey": "1BbuYcr+WcmgcUhZTJ48GxOjQW0k4iEYBnn1Axhm1yA=", + "ips": [ + "198.54.133.130", + "2607:9000:7000:15::b89f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-wg-103", + "wgpubkey": "aEJhNzQJYMH9VzB7bxhimyUFz3uo4mp1RD9VY3KAEWs=", + "ips": [ + "198.54.133.162", + "2607:9000:7000:16::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.130.34", + "2607:9000:4000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.130.50", + "2607:9000:4000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-101", + "wgpubkey": "tKUaUnY6dJhRx3zCMAFMa1I7baVt5QrpnmdRsW99MWk=", + "ips": [ + "198.54.130.82", + "2607:9000:4000:15::b83f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-102", + "wgpubkey": "XT06PnP77El1DOWfg5Kq6GiPzzfvQbTFfWlHPws/TQ0=", + "ips": [ + "198.54.130.98", + "2607:9000:4000:16::b84f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-103", + "wgpubkey": "4xCeK68I0TXZoy1e8VeQDCea/6Qeu57IAtCi8Lnllik=", + "ips": [ + "198.54.130.114", + "2607:9000:4000:17::b85f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-104", + "wgpubkey": "zSuNvGa8Zk+jc2niP1s75CLTFD/1U1Fqc6ypfzO9mB0=", + "ips": [ + "198.54.130.130", + "2607:9000:4000:18::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-105", + "wgpubkey": "XJDcYZ6peY1cfErhLQ0AqzGTxKuKXz5M//sFvEX8dAI=", + "ips": [ + "198.54.130.146", + "2607:9000:4000:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.132", + "2606:2e00:0:b9::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.133", + "2606:2e00:0:b9::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.134", + "2606:2e00:0:b9::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.135", + "2606:2e00:0:b9::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.136", + "2606:2e00:0:b9::5f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-106", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.137", + "2606:2e00:0:b9::6f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.150", + "2607:fc98:0:8a::f101" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.151", + "2607:fc98:0:8a::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-101", + "wgpubkey": "dbsApGxL4oNd6CyjPrtiV6ep+C1HaFuYGd0DPCHMF2o=", + "ips": [ + "69.4.234.147", + "2606:2e00:0:b9::b34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-102", + "wgpubkey": "g6yfZKBIS6BtXdTb5yXXVmOkkQ1OBxxJS3H67mebclw=", + "ips": [ + "69.4.234.138", + "2606:2e00:0:b9::b35f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-103", + "wgpubkey": "ioipHdOYhc4nVsQKghmJy/vvnMI38VLLFNZXWgxxOx8=", + "ips": [ + "69.4.234.139", + "2606:2e00:0:b9::b36f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-104", + "wgpubkey": "8gcGDG4XVifgKgjpkiRSxI4QA0lhU1LGX7v7ZL4AXxE=", + "ips": [ + "69.4.234.140", + "2606:2e00:0:b9::b37f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-105", + "wgpubkey": "vkbSMnaddVm4YWkuuf8rOSc45XTfpVLJEom0FaJWq2g=", + "ips": [ + "69.4.234.141", + "2606:2e00:0:b9::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-106", + "wgpubkey": "abx3jjkKD+7abroGzeELm4Esa4bESJV72Fm9Tp+YqAE=", + "ips": [ + "69.4.234.142", + "2606:2e00:0:b9::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-107", + "wgpubkey": "dJX3V47dAZWGc7BeJCvDfwSqdKRsfPUT9Lm7LzPs2CU=", + "ips": [ + "69.4.234.143", + "2606:2e00:0:b9::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-108", + "wgpubkey": "/fbfBjrhWKRTgOPy+esHuoeFCJWGX+nCYgTo8uKTMCE=", + "ips": [ + "69.4.234.144", + "2606:2e00:0:b9::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-109", + "wgpubkey": "dClWdBHZT7dwqXzIRzit6CIaJYAFtTL/yYZ8Knj8Cjk=", + "ips": [ + "69.4.234.145", + "2606:2e00:0:b9::f801" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-201", + "wgpubkey": "sSoow0tFfqSrZIUhFRaGsTvwQsUTe33RA/9PLn93Cno=", + "ips": [ + "69.4.234.9", + "2607:fc98:0:8a::f301" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-203", + "wgpubkey": "2yVEeOFScneJRCVTrqCjKlKHg3J2wwOwkY28iy47J1Q=", + "ips": [ + "69.4.234.131", + "2607:fc98:0:8a::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-204", + "wgpubkey": "SE7HGeByhTo8Ak7FGsjvrYOUJTydQ2L8fWjo17IvhSw=", + "ips": [ + "69.4.234.10", + "2607:fc98:0:8a::f601" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.34", + "2607:9000:8000:12::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.66", + "2607:9000:8000:13::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-001", + "wgpubkey": "Ow25Pdtyqbv/Y0I0myNixjJ2iljsKcH04PWvtJqbmCk=", + "ips": [ + "198.54.134.98", + "2607:9000:8000:14::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-002", + "wgpubkey": "aOt3gFGc0a0UMAdcxhBWX9TCnEabe2s66MHzjXU50Tc=", + "ips": [ + "198.54.134.130", + "2607:9000:8000:15::b95f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-003", + "wgpubkey": "Vim/OUBT3Bogv+FF623pAHXc/vmRwur2JKcNsLHQH1o=", + "ips": [ + "198.54.134.162", + "2607:9000:8000:16::b96f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-101", + "wgpubkey": "yohC6MIq62U+BmTdBjTFBQbj5jTaxRHtVdCp5AdDgAs=", + "ips": [ + "66.115.165.211", + "2607:f7a0:16:5::c01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-102", + "wgpubkey": "wfFi5sBBThR9EK1US0dbwaOiuNMIBpBBhEif9EnUeCM=", + "ips": [ + "66.115.165.212", + "2607:f7a0:16:5::c02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-103", + "wgpubkey": "5AsmDtBqLureV4JcG+dwFq35hUaAff4NzLCkJDkoWQQ=", + "ips": [ + "66.115.165.213", + "2607:f7a0:16:5::c03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-104", + "wgpubkey": "fUjjvrtnbokobdzudzXPzCM6Fli28Tsg5kArztU0YnU=", + "ips": [ + "66.115.165.214", + "2607:f7a0:16:5::c04f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-105", + "wgpubkey": "m0PSpvahFXuYOtGZ9hFAMErzKW7vhwqyd82rw+yBHz0=", + "ips": [ + "66.115.165.215", + "2607:f7a0:16:5::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-106", + "wgpubkey": "9xV2ZXE1dVChbxu/ca4jfXoCnYFv8fbP/OCFySD6RjA=", + "ips": [ + "66.115.165.216", + "2607:f7a0:16:5::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-107", + "wgpubkey": "2p37fAPhw+2uPJ5pP5Iy8hgs7506k+8ITqPIzbaa4zQ=", + "ips": [ + "66.115.165.217", + "2607:f7a0:16:5::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-108", + "wgpubkey": "x9/CJ28JOHah+HPRKQpVuCLL3v3eMWj7Xa7dotpPX2c=", + "ips": [ + "66.115.165.218", + "2607:f7a0:16:5::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-301", + "wgpubkey": "f3bMFNG3xcXRN/i0jHxo68CXFcNNlennuf1jdkPMEVM=", + "ips": [ + "142.147.89.195", + "2604:e8c0:7::b66f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-302", + "wgpubkey": "8wVb4HUgmpQEa5a1Q8Ff1hTDTJVaHts487bksJVugEo=", + "ips": [ + "142.147.89.210", + "2604:e8c0:7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-303", + "wgpubkey": "2ZQTRk/3jT+ccfG3G/QoJV3NFC4CFHQwGBCSokOvBnA=", + "ips": [ + "142.147.89.225", + "2604:e8c0:7::b68f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "DataPacket", + "hostname": "us-sjc-wg-401", + "wgpubkey": "2q0LGwWvnV2qbNEAgOOHh4tvol5vGeQXJZDAbazCSBY=", + "ips": [ + "79.127.217.34", + "2a02:6ea0:e611::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "DataPacket", + "hostname": "us-sjc-wg-402", + "wgpubkey": "+UZsgTzYTdG3LvqpL+V9ZkwEMiFcls32YlpuI0cqDQ4=", + "ips": [ + "79.127.217.47", + "2a02:6ea0:e611:1::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.131.34", + "2607:9000:5000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.131.66", + "2607:9000:5000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-001", + "wgpubkey": "bZQF7VRDRK/JUJ8L6EFzF/zRw2tsqMRk6FesGtTgsC0=", + "ips": [ + "138.199.43.91", + "2a02:6ea0:d80b:3::b75f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-002", + "wgpubkey": "Xt80FGN9eLy1vX3F29huj6oW2MnQt7ne3DMBpo525Qw=", + "ips": [ + "138.199.43.78", + "2a02:6ea0:d80b:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-003", + "wgpubkey": "4ke8ZSsroiI6Sp23OBbMAU6yQmdF3xU2N8CyzQXE/Qw=", + "ips": [ + "138.199.43.65", + "2a02:6ea0:d80b:1::b73f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-101", + "wgpubkey": "200em73iD9942d9hlHonAfNXGWwFQcicBVGHeHbdxVM=", + "ips": [ + "198.54.131.130", + "2607:9000:5000:15::b77f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-102", + "wgpubkey": "YwwaW1/1vFJKp22Je7btEhVXTzTckxMF1qesHN4T3QA=", + "ips": [ + "198.54.131.162", + "2607:9000:5000:16::b78f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-103", + "wgpubkey": "fU4oTJhFtwvmk0odRe9Jatc+DMh9gKz49WSzO0psCmU=", + "ips": [ + "198.54.131.98", + "2607:9000:5000:14::b03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-201", + "wgpubkey": "K+Xt/lYTSTavIW8RoQjzWI7tExy6sp1FqBi3n5pH5SI=", + "ips": [ + "199.229.250.52", + "2607:f7a0:c:4::c09f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-202", + "wgpubkey": "t2x4A+F04hKfxIHMcY2RswaVyj3XHelTT8Q1FAwBIj4=", + "ips": [ + "199.229.250.53", + "2607:f7a0:c:4::c10f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-203", + "wgpubkey": "eS44Rs1j3BotLKH8AV78KGZQtsMQKpjdYS9chXdxPnw=", + "ips": [ + "199.229.250.54", + "2607:f7a0:c:4::c11f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-204", + "wgpubkey": "WyzaVvsFivIx7iC+bYbEV5OhtjSw3aqjU5sB3DltQxI=", + "ips": [ + "199.229.250.55", + "2607:f7a0:c:4::f301" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-205", + "wgpubkey": "vnD/2bCGqH4b6zZSRuLGSw9oN4NhQdTW9jlMaa2N1AU=", + "ips": [ + "199.229.250.56", + "2607:f7a0:c:4::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-206", + "wgpubkey": "1TYUyuvJi+RQETmW3aKJDS5p9K7kutK+Qp4ooy92CBQ=", + "ips": [ + "199.229.250.57", + "2607:f7a0:c:4::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-207", + "wgpubkey": "mdYjW/giLeamWPUuHxLAIcornNrH/2HQrixhBpQZmHA=", + "ips": [ + "199.229.250.58", + "2607:f7a0:c:4::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-208", + "wgpubkey": "k4ah0qvHgn5IsalvehE7GPiDC4BOE9botvd+KITdtyg=", + "ips": [ + "199.229.250.59", + "2607:f7a0:c:4::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Quadranet", + "hostname": "us-sea-wg-301", + "wgpubkey": "ekaodfDtCmMmHBPWT04FObtHi9uxCn9mI2NB6WAsS0U=", + "ips": [ + "104.129.57.66", + "2607:fcd0:cd00:a00::b27f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Quadranet", + "hostname": "us-sea-wg-302", + "wgpubkey": "Plbre6XhYWgXzdAUD94/gqSy6C9z/nD40U2gIt+MAGQ=", + "ips": [ + "173.205.93.2", + "2607:fcd0:cd00:a01::b28f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Secaucus NJ", + "isp": "Quadranet", + "hostname": "us-uyk-wg-102", + "wgpubkey": "fD/JDsMLFxEZ7awcJJB9h0mjfRlcEvwF8e7arB2fHhU=", + "ips": [ + "104.223.118.34", + "2607:fcd0:ccc0:1d03::b38f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Secaucus NJ", + "isp": "Quadranet", + "hostname": "us-uyk-wg-103", + "wgpubkey": "Tysz0Ii2m+DsyhcWoQWxsXUdJxu1lKln4F7ML+nWPXA=", + "ips": [ + "173.205.85.34", + "2607:fcd0:ccc0:1d05::c41f" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "DataPacket", + "hostname": "ua-iev-wg-001", + "wgpubkey": "PO2o3ewguPP24wLy8bbDqx1xuAnTOIVzdzVGVT0d8kU=", + "ips": [ + "149.102.240.79", + "2a02:6ea0:e109:2::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "DataPacket", + "hostname": "ua-iev-wg-002", + "wgpubkey": "HUj/J8Rxx7QVGh3kJsFgPZoqtm2BQIX03vKJSIyTOSo=", + "ips": [ + "149.102.240.66", + "2a02:6ea0:e109:1::a02f" + ] + } + ] + }, + "nordvpn": { + "version": 5, + "timestamp": 1711034061, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.3" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.3" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.19" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.19" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.51" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.51" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.67" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.67" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "ar50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.48" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "ar50.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.48" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ar51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.64" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ar51.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.64" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ar52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.74" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ar52.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.74" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ar53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.84" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ar53.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.84" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ar54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.94" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ar54.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.94" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ar55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.111" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ar55.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.111" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ar56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.121" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ar56.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.121" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ar57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.149" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ar57.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.149" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ar58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.159" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ar58.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.159" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "au638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "au638.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "au639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "au639.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "au658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "au658.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "au659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "au659.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "au660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "au660.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "au661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "au661.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "au680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "au680.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "au681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "au681.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "au682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "au682.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "au733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "au733.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 785, + "hostname": "au785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.178" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 785, + "hostname": "au785.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.178" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 786, + "hostname": "au786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.182" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 786, + "hostname": "au786.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.182" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 787, + "hostname": "au787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.186" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 787, + "hostname": "au787.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.186" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 788, + "hostname": "au788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.154" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 788, + "hostname": "au788.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.154" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "au789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.250" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "au789.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.250" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "au801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.106" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "au801.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "au802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.114" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "au802.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.114" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "au803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.119" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "au803.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.119" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "au585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "au585.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "au586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "au586.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "au587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "au587.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "au588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "au588.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "au610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "au610.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "au611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "au611.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "au612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "au612.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "au613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "au613.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "au614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "au614.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "au615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "au615.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "au640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "au640.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "au641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "au641.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "au642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "au642.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "au643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "au643.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "au684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "au684.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "au685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "au685.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "au734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "au734.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 735, + "hostname": "au735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 735, + "hostname": "au735.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 736, + "hostname": "au736.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 736, + "hostname": "au736.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 737, + "hostname": "au737.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 737, + "hostname": "au737.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "au738.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "au738.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "au739.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "au739.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "au740.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "au740.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "au741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "au741.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "au742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "au742.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "au743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "au743.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "au744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "au744.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "au745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "au745.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "au797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "au797.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "au798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "au798.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "au799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "au799.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "au800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "au800.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "au569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "au569.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "au570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "au570.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "au595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "au595.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "au596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "au596.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "au644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "au644.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "au645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "au645.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "au646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "au646.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "au647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "au647.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "au665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "au665.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "au666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "au666.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "au667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "au667.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "au668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "au668.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "au669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "au669.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "au686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "au686.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "au688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "au688.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 689, + "hostname": "au689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 689, + "hostname": "au689.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "au690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "au690.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "au691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "au691.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 753, + "hostname": "au753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.192.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 753, + "hostname": "au753.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.192.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 754, + "hostname": "au754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 754, + "hostname": "au754.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "au755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "au755.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "au756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "au756.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "au757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "au757.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "au758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "au758.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "au759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "au759.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "au760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "au760.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "au761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "au761.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "au762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "au762.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "au763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "au763.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "au764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "au764.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "au765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "au765.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "au766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "au766.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "au767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "au767.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "au768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "au768.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "au769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "au769.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "au770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "au770.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 599, + "hostname": "au599.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 599, + "hostname": "au599.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 600, + "hostname": "au600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 600, + "hostname": "au600.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 601, + "hostname": "au601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 601, + "hostname": "au601.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "au602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "au602.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "au648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "au648.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "au649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "au649.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "au650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "au650.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "au651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "au651.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "au670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "au670.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "au671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "au671.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "au673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "au673.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "au692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "au692.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "au693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "au693.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "au694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "au694.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "au695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "au695.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "au772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.2" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "au772.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.2" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "au773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.6" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "au773.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.6" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "au774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.10" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "au774.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "au775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.226" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "au775.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "au777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.236" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "au777.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.236" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "au778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.241" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "au778.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.241" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "au779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.178" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "au779.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.178" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "au780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.185" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "au780.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.185" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "au781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.194" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "au781.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.194" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 782, + "hostname": "au782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.201" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 782, + "hostname": "au782.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.201" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 783, + "hostname": "au783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.26" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 783, + "hostname": "au783.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.26" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "au790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "au790.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "au791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "au791.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 792, + "hostname": "au792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 792, + "hostname": "au792.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "au793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "au793.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "au794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "au794.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "au795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "au795.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "au796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "au796.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "au529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "au529.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "au530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "au530.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "au531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "au531.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "au532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "au532.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "au533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "au533.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "au534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "au534.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "au535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "au535.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "au536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "au536.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "au537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "au537.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "au538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "au538.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "au576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "au576.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "au605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "au605.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "au606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "au606.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "au607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "au607.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "au623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "au623.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "au624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "au624.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "au652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "au652.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "au653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "au653.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "au654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "au654.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "au655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "au655.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "au656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "au656.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "au657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "au657.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "au700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "au700.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "au701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "au701.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "au702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "au702.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "au703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "au703.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 704, + "hostname": "au704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 704, + "hostname": "au704.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 705, + "hostname": "au705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 705, + "hostname": "au705.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "au706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "au706.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "au707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "au707.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "au711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.213.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "au711.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.213.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "au712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.213.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "au712.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.213.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "au713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "au713.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 714, + "hostname": "au714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 714, + "hostname": "au714.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "au725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.1" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "au725.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.1" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "au726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "au726.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "au727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.5" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "au727.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.5" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "au728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.7" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "au728.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.7" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "au729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.9" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "au729.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "au730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "au730.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "au731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.13" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "au731.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.13" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "au732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.15" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "au732.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "au746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.77" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "au746.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.77" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "au747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.79" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "au747.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.79" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "au748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.81" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "au748.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "au749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "au749.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "au750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.85" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "au750.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.85" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "au751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.87" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "au751.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.87" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "au752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.89" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "au752.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.89" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 784, + "hostname": "au784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 784, + "hostname": "au784.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 804, + "hostname": "au804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 805, + "hostname": "au805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 806, + "hostname": "au806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 807, + "hostname": "au807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.23" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 808, + "hostname": "au808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.26" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 809, + "hostname": "au809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.41" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 810, + "hostname": "au810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.38" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 811, + "hostname": "au811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "au812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "au813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "au814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.104" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 815, + "hostname": "au815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 816, + "hostname": "au816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.109" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 817, + "hostname": "au817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.111" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 818, + "hostname": "au818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.114" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 819, + "hostname": "au819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.116" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 820, + "hostname": "au820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.119" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 821, + "hostname": "au821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.121" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 822, + "hostname": "au822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 823, + "hostname": "au823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 824, + "hostname": "au824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.88" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "at80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.203" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "at80.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "at86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.100" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "at86.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.100" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "at88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "at88.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "217.64.127.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "at89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.75" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "at89.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "at90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.83" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "at90.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.83" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "at94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "at94.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "at95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.171" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "at95.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.171" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "at96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.202.83" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "at96.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.236.202.83" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "at97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.202.88" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "at97.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.236.202.88" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "at98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.227" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "at98.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.227" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "at99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.232" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "at99.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.232" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "at100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.211" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "at100.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.211" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "at101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.216" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "at101.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.216" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "at105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.59" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "at105.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.59" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "at106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.212.51" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "at106.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.244.212.51" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "at107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.19" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "at107.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.19" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "at108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.195" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "at108.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.195" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "at109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.211" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "at109.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.211" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "at110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "at110.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "at111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.3" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "at111.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.3" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "at112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.11" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "at112.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.11" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "at113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.19" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "at113.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.19" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "at116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.248" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "at116.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.248" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "at117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.242" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "at117.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.242" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "at118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.245" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "at118.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.245" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "at119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.75" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "at119.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "at120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.80" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "at120.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.80" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "at121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.85" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "at121.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.85" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "at122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "at122.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "at123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.7" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "at123.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.7" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "at124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.12" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "at124.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.12" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "at125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.17" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "at125.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.17" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "at126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.22" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "at126.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.22" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "at127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.27" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "at127.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.27" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "at128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.32" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "at128.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.32" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "at129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.37" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "at129.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.37" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "at130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.129" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "at130.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.129" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "at131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.133" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "at131.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.133" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "at132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.137" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "at132.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.137" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "at133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.141" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "at133.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.141" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "at134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.145" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "at134.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.145" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "at135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.149" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "at135.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.149" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "at136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.153" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "at136.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.153" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "at137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.218" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "at137.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.218" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "at138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.213" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "at138.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.213" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "at139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.208" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "at139.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.208" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "at140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.203" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "at140.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "at141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.198" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "at141.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.198" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "at142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.193" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "at142.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.193" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "at143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.115" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "at143.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.115" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "at144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.120" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "at144.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.120" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "at145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.81.195" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "at145.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "146.70.81.195" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "at146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.81.163" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "at146.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "146.70.81.163" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "at147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.162" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "at147.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.162" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "at148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.66" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "at148.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.66" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "at149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.158" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "at149.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.158" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "at150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.130" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "at150.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "at151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.71" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "at151.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.71" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "at152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.135" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "at152.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.135" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "at153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.139" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "at153.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.139" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "at154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.143" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "at154.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.143" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 155, + "hostname": "at155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.148" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 156, + "hostname": "at156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.150" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 157, + "hostname": "at157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.162" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 158, + "hostname": "at158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.164" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "be148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.137" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "be148.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.137" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "be149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.250" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "be149.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.250" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "be150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.115" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "be150.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.115" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "be151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.120" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "be151.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.120" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "be152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.131" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "be152.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.131" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "be153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "be153.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "be154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.216" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "be154.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.216" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "be155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.51" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "be155.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.51" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "be156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.21.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "be156.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.232.21.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "be157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.243" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "be157.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.243" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "be158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "be158.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "be159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.219" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "be159.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.219" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "be160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.227" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "be160.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.227" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "be161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "be161.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "be162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.123" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "be162.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.123" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "be163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "be163.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "be164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.203" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "be164.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.203" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "be165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.51" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "be165.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.51" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "be166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.56" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "be166.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "be167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.61" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "be167.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.61" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "be168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.251" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "be168.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.207.57.251" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "be169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.83" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "be169.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.83" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "be170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.107" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "be170.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.107" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "be171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "be171.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "be172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "be172.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "be173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.131" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "be173.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.131" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "be174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.139" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "be174.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.139" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "be175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.146" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "be175.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.146" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "be176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.165" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "be176.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.165" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "be177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.170" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "be177.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.170" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "be178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "be178.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "be179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.11" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "be179.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.11" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "be180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.19" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "be180.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.19" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "be181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.27" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "be181.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.27" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "be182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.35" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "be182.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.35" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "be183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.141" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "be183.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.141" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "be184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "be184.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "be185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.8" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "be185.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "be186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.13" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "be186.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.13" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "be187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.18" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "be187.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.18" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "be188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.23" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "be188.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.23" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "be189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.28" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "be189.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "be190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.33" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "be190.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.33" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "be191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.38" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "be191.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.38" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "be192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.43" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "be192.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "be193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.48" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "be193.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.48" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "be194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.53" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "be194.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.53" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "be195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.58" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "be195.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.58" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "be196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.63" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "be196.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.63" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "be197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.68" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "be197.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.68" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "be198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.73" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "be198.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.73" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "be199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.78" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "be199.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.78" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "be200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.83" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "be200.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.83" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "be201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.88" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "be201.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.88" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "be202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.93" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "be202.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.93" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "be203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.98" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "be203.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.98" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "be204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.90.123.171" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "be204.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.90.123.171" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "be205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.90.123.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "be205.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.90.123.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "be206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.205.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "be206.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "5.253.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "be207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.55.43" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "be207.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "146.70.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.14" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.14" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.27" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.27" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.40" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.40" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.52" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.52" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.64" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.64" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.76" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.76" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.88" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.88" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.100" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.100" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.112" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.112" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.129" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.129" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.142" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.155" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.155" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.168" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.168" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.180" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.180" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.192" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.192" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.204" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.204" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.216" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.216" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.228" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.228" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.240" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.240" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 228, + "hostname": "be228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.22" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 229, + "hostname": "be229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.24" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 230, + "hostname": "be230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.27.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 231, + "hostname": "be231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 232, + "hostname": "be232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.27.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.162.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", + "ips": [ + "45.95.162.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.162.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", + "ips": [ + "45.95.162.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.163.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", + "ips": [ + "45.95.163.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.163.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", + "ips": [ + "45.95.163.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.188.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", + "ips": [ + "45.134.188.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.188.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", + "ips": [ + "45.134.188.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.189.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", + "ips": [ + "45.134.189.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.189.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", + "ips": [ + "45.134.189.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.183" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.183" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.3.195" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.99.3.195" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.159" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.159" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.147" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.171" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.171" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.170.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.170.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.168.146" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.168.146" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.168.154" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.168.154" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.1" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.1" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.17" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.17" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.33" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.33" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.49" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.49" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.64" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.64" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.79" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.79" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.94" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.94" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.109" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.109" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.147" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.147" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.165" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.165" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.183" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.183" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.201" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.201" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.218" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.218" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.235" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.235" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.145" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.145" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.145" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.145" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.161" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.161" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.177" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.177" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.193" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.193" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.209" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.209" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.156.194" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "177.54.156.194" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.156.207" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "177.54.156.207" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.190.1" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", + "ips": [ + "45.134.190.1" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.190.3" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", + "ips": [ + "45.134.190.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.147" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.91" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.91" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.99" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.99" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.107" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.107" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.115" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.115" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.123" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.123" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.131" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.131" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.139" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.139" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.75" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.75" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.83" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.83" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.2" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.2" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.14" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.14" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.26" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.26" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.38" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.38" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.50" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.50" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.62" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.62" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.74" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.74" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.86" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.86" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.98" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.98" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.110" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.110" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.96" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.96" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.112" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.112" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.128" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.128" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.144" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.144" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.160" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.160" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.176" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.176" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.192" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.192" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.208" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.208" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.224" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.224" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.240" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.240" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.191.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", + "ips": [ + "45.134.191.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.191.3" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", + "ips": [ + "45.134.191.3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.90.243" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "86.106.90.243" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.115" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.115" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.59" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.43" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.43" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.83" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.91" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.115" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.115" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.123" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.123" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.131" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.139" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.139" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.155" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.155" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.163" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.163" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.136" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.139" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.139" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.131" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.112.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.112.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.74.35" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "176.113.74.35" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.83" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.84" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.84" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.91" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.180" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.180" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.188" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.212" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.212" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.220" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.220" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.22.75" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.232.22.75" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.22.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.232.22.76" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.244.215.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.196" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.244.215.196" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.33" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "154.47.22.33" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.34" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "154.47.22.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.12" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.17" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.22" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.22" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.27" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.27" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.32" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.37" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.47" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.57" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.67" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.67" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.72" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.87" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.87" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.117" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.117" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.127" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.127" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.137" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.137" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.157" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.157" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.167" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.167" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.172" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.172" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.192" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.192" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.202" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.207" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.207" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.212" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.212" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.217" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.217" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.222" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.222" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.227" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.227" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.232" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.232" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.237" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.242" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.247" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.12" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.17" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.22" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.22" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.27" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.27" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.32" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.37" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.47" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.57" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.67" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.67" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.72" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.87" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.87" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.117" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.117" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.127" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.127" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.137" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.137" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.157" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.157" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.167" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.167" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.247" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.172" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.172" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.192" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.192" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.202" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1690, + "hostname": "ca1690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.51" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1691, + "hostname": "ca1691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1692, + "hostname": "ca1692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1693, + "hostname": "ca1693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1694, + "hostname": "ca1694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1695, + "hostname": "ca1695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1696, + "hostname": "ca1696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1697, + "hostname": "ca1697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.19" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1698, + "hostname": "ca1698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1699, + "hostname": "ca1699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1700, + "hostname": "ca1700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.23" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1701, + "hostname": "ca1701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.25" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1702, + "hostname": "ca1702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1703, + "hostname": "ca1703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1704, + "hostname": "ca1704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1705, + "hostname": "ca1705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.46" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1706, + "hostname": "ca1706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1707, + "hostname": "ca1707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "ca1708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "ca1709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.249" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "ca1710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "ca1711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1712, + "hostname": "ca1712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "ca1713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.196" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "ca1714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1715, + "hostname": "ca1715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1716, + "hostname": "ca1716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.199" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1717, + "hostname": "ca1717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.201" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1718, + "hostname": "ca1718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.204" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1719, + "hostname": "ca1719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.206" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1720, + "hostname": "ca1720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.214" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1721, + "hostname": "ca1721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.216" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1722, + "hostname": "ca1722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.209" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1723, + "hostname": "ca1723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.136" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.138" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.138" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.140" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.140" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.144" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.144" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.146" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.146" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.148" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.148" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.150" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.150" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.154" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.154" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.156" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.156" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.158" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.158" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.160" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.160" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.4" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.16" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.40" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.40" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.64" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.64" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.76" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.112.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", + "ips": [ + "95.214.112.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.112.3" + ] + }, + { + "vpn": "wireguard", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", + "ips": [ + "95.214.112.3" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.4" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.4" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.24" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.24" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.44" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.44" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.64" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.64" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.84" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.84" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.21" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.21" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.41" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.41" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.61" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.61" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.81" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.81" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.1" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.1" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.26" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.26" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.51" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.51" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.76" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.76" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.100" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.100" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.129" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.129" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.154" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.154" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.179" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.179" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.204" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.204" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.228" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.228" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.195" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.195" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.203" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.203" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.211" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.211" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.219" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.219" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.227" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.227" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.235" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.235" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.3" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.3" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.11" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.11" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.19" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.19" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.27" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.27" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.35" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.35" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.43" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.43" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.1" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.1" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.3" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.3" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.5" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.5" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.7" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.7" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.9" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.9" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.11" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.11" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.13" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.13" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.15" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.15" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.17" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.17" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.19" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.19" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.21" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.21" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.23" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.23" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.25" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.25" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.27" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.27" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.29" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.29" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.31" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.31" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.161" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.161" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.129" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.129" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.177" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.177" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.193" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.193" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.209" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.209" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.225" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.225" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.17" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.17" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.33" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.33" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.65" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.65" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.81" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.81" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.145" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.145" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.49" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.49" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.27" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.27" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.38.149" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "212.102.38.149" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.38.146" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "212.102.38.146" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.186.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "89.238.186.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.3" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.156.174.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.91" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.156.174.91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.186.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "89.238.186.235" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.115" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.115" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.120" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.120" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.91" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.75" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.75" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.83" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.83" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.19" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.19" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.11" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.3" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.243" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.243" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.235" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.51" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.43" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.43" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.35" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.35" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.8" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.8" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.14" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.14" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.26" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.32" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.32" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.38" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.38" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.44" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.44" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.50" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.50" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.56" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.56" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.62" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.62" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.68" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.68" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.74" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.74" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.80" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.80" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.86" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.86" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.2" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.2" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.20" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.20" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.92" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.92" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.104" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.14" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.14" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.2" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.2" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.26" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.77" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.77" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.247" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.247" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.89" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.89" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.223" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.223" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.20" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.20" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.8" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.8" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.32" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.32" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.211" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.211" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.65" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.65" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.3" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.3" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.20.212" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "82.102.20.212" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.203" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.203" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.227" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.227" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.20.35" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "82.102.20.35" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.131" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.131" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.136" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.136" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.141" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.141" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.149" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.149" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.154" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.227" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.227" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.243" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.243" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.251" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.251" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.219" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.219" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.19" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.19" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.27" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.83" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.83" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.179" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.187" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.187" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.43" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.43" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.51" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.51" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.59" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.59" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.67" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.67" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.187" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.187" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.75" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.75" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.65.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "95.174.65.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.65.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "95.174.65.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.145.83" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.145.83" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.145.91" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.145.91" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.179" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.1" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.1" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.3" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.3" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.5" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.5" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.7" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.7" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.9" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.9" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.11" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.11" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.13" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.13" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.15" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.15" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.17" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.17" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.19" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.19" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.21" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.21" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.23" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.23" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.25" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.25" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.27" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.29" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.29" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.31" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.31" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.33" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.33" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.35" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.35" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.37" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.37" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.39" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.39" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 276, + "hostname": "dk276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.246" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 277, + "hostname": "dk277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.248" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 278, + "hostname": "dk278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.114" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 279, + "hostname": "dk279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.250" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.113.1" + ] + }, + { + "vpn": "wireguard", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", + "ips": [ + "95.214.113.1" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.113.3" + ] + }, + { + "vpn": "wireguard", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", + "ips": [ + "95.214.113.3" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.114.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", + "ips": [ + "95.214.114.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.114.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", + "ips": [ + "95.214.114.3" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.66.1" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", + "ips": [ + "212.97.66.1" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.66.3" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", + "ips": [ + "212.97.66.3" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.115.1" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", + "ips": [ + "95.214.115.1" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.115.3" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", + "ips": [ + "95.214.115.3" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.100" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.100" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.102" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.102" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.104" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.104" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.106" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.106" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.108" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.108" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.110" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.110" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.112" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.112" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.114" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.114" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.116" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.116" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.118" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.118" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.124" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.124" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.126" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.126" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.133" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.133" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.135" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.135" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.137" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.137" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.139" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.139" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.141" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.141" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.143" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.143" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.145" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.145" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.147" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.147" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.149" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.149" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.151" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.151" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.153" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.153" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.155" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.155" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.157" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.157" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.159" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.159" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.161" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.161" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.163" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.163" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.165" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.165" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.167" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.167" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.169" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.7" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.7" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.32" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.37" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.37" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.42" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.42" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.47" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.47" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.57" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.57" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.62" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.62" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.67" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.67" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.72" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.72" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.77" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.77" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.82" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.87" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.87" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.92" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.92" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.97" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.97" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.102" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.102" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.107" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.107" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.112" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.112" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.117" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.117" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.194" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.199" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.204" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.209" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.209" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.214" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.214" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.228" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.228" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.233" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.233" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.241" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.241" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.245" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.245" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.224" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.224" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.237" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.237" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.5" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.5" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.10" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.10" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.45" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.50" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.55" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.55" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.66" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.66" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.76" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.76" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.81" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.81" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.40" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.40" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.71" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.71" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.86" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.86" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.89" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.89" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.177" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.177" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.69" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.69" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.86" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.86" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.103" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.119" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.119" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.140" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.140" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.156" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.156" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.188" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.188" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.204" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.220" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.220" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.236" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.236" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 949, + "hostname": "fr949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 950, + "hostname": "fr950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.206" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 951, + "hostname": "fr951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 952, + "hostname": "fr952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.201" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.35.30.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.164" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.35.30.164" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.146.90.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.146.90.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.197" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.238.191.197" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.198" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.238.191.198" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 439, + "hostname": "fr439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.2.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 440, + "hostname": "fr440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.2.206" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.6" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.6" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.9" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.9" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.29" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.29" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.18.252" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "82.102.18.252" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 577, + "hostname": "fr577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 578, + "hostname": "fr578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.119" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.185.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.104.185.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.213.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.244.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.59" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.59" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.113" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.113" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.108" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.108" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.103" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.98" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.251" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.89.174.115" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.89.174.115" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.89.174.123" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.89.174.123" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.11" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.43" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.43" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 753, + "hostname": "fr753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.157" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 754, + "hostname": "fr754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.158" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.160" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.160" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.169" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.175" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.175" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.178" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.178" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.181" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.181" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.184" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.184" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.186" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.186" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.157" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.157" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.160" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.169" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.175" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.175" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.178" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.178" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.6" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.6" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.9" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.9" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.33" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.33" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.36" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.36" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.18.11" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "82.102.18.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.59.249.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "194.59.249.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 850, + "hostname": "fr850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.44" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 851, + "hostname": "fr851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.251" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.99" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.107" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.107" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.45" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.56" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.56" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.67" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.67" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.78" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.78" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.89" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.89" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.100" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.100" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.14" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.16" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.16" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.22" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.22" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "fr907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "fr907.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "fr908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.14" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "fr908.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "fr909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.16" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "fr909.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.16" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "fr910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "fr910.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "fr911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "fr911.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "fr912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.22" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "fr912.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.22" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "fr913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "fr913.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "fr914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.26" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "fr914.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.26" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "fr915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.28" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "fr915.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.28" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "fr916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "fr916.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "fr917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.32" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "fr917.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "fr918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "fr918.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "fr919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.36" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "fr919.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.36" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 920, + "hostname": "fr920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 921, + "hostname": "fr921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.100" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 922, + "hostname": "fr922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.108" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 923, + "hostname": "fr923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.110" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 924, + "hostname": "fr924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 925, + "hostname": "fr925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.105" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 941, + "hostname": "fr941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.116" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 942, + "hostname": "fr942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 943, + "hostname": "fr943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.120" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 944, + "hostname": "fr944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.122" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "fr945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "fr946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.84" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 947, + "hostname": "fr947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 948, + "hostname": "fr948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 953, + "hostname": "fr953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 954, + "hostname": "fr954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.29" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.29" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.104.248.170" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "86.104.248.170" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.100" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.100" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.102" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.102" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.104" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.104" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.106" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.106" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.108" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.108" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.110" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.110" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.112" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.112" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.114" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.17" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.17" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.24" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.31" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.31" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.45" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.52" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.52" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.59" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.59" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.66" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.73" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.73" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.80" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.80" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.87" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.87" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.94" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.94" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.101" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.101" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.108" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.115" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.122" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.122" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.129" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.136" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.143" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.143" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.149" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.149" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.155" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.155" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.161" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.161" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.167" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.167" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.185" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.185" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.191" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.191" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.197" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.241" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.241" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.248" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.248" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 507, + "hostname": "de507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 508, + "hostname": "de508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.116" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 509, + "hostname": "de509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.117" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 510, + "hostname": "de510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.118" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 654, + "hostname": "de654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.31.54.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 655, + "hostname": "de655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.31.54.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 675, + "hostname": "de675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.223.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 676, + "hostname": "de676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.223.116" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 677, + "hostname": "de677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "de678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "de679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "de680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.217" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "de681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.162" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "de682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.163" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "de683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.165" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "de684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "de685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.169" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "de686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.171" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "de687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "de688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "de689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.193" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 690, + "hostname": "de690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 691, + "hostname": "de691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 692, + "hostname": "de692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 693, + "hostname": "de693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 694, + "hostname": "de694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.203" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 695, + "hostname": "de695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 696, + "hostname": "de696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 697, + "hostname": "de697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 698, + "hostname": "de698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.211" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 699, + "hostname": "de699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.19.149" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "de700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.19.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 706, + "hostname": "de706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.214" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 707, + "hostname": "de707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 710, + "hostname": "de710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 712, + "hostname": "de712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 713, + "hostname": "de713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 714, + "hostname": "de714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.207" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 715, + "hostname": "de715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.120" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.123" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.123" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.126" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.129" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.132" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.132" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.135" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.135" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.50.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "212.103.50.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.50.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "212.103.50.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.204" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.194" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.194" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.199" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.138" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.138" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.141" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.141" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.144" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.147" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.147" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.150" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.150" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.153" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.153" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.156" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.156" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.187" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "83.143.245.187" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.184" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.23.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.232.23.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.13" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.13" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.23" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.23" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.195" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.200" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.205" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.205" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.210" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.215" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.215" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.225" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.225" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.230" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.230" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.131" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.131" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.136" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.72" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.77" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.77" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.85" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.85" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.90" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.141" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.141" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.146" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.146" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.219" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.219" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.151" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.104.184.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.227" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.75" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.75" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.83" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.83" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.99" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.99" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.107" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.107" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.115" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.181.195" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "77.243.181.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.15" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.15" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.21" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.24" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.27" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.27" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.30" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.33" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.33" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.36" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.39" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.39" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.42" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.45" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.48" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.54" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.54" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.57" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.57" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.60" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.63" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.63" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.66" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.69" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.69" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.72" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.75" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.75" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.78" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.78" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.81" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.81" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.84" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.84" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.87" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.87" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.90" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.93" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.93" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.96" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.99" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.99" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.102" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.102" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.105" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.105" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.108" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.111" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.111" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.114" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.117" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.117" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "83.143.245.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.220" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.220" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.91" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.91" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.174" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.175" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.175" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.176" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.177" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.177" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.178" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.181" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.182" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.182" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.1" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.1" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.4" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.5" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.11" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.11" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.159" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.159" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.166" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.187" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.187" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.194" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.194" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.201" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.208" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.215" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.215" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.211" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.104.184.211" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.240" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.212.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.87.212.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.212.11" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.87.212.11" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.227" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.243" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.243" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.251" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.251" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.59" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.59" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.26" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.50" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.50" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.62" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.62" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.74" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.74" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.86" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.86" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.4" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.16" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.16" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.20" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.20" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.176.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", + "ips": [ + "176.53.176.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.176.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", + "ips": [ + "176.53.176.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.2" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.2" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.28" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.28" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.54" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.54" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.80" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.80" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.105" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.105" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.130" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.130" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.155" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.155" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.180" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.180" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.205" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.205" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.230" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.230" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.16" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.16" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.18" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.18" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.20" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.20" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.22" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.22" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.24" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.24" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.26" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.26" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.28" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.28" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.30" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.30" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.32" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.32" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.34" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.34" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.36" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.36" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.177.1" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", + "ips": [ + "176.53.177.1" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.177.3" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", + "ips": [ + "176.53.177.3" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.178.1" + ] + }, + { + "vpn": "wireguard", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", + "ips": [ + "176.53.178.1" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.178.3" + ] + }, + { + "vpn": "wireguard", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", + "ips": [ + "176.53.178.3" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.179.1" + ] + }, + { + "vpn": "wireguard", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", + "ips": [ + "176.53.179.1" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.179.3" + ] + }, + { + "vpn": "wireguard", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", + "ips": [ + "176.53.179.3" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.32.1" + ] + }, + { + "vpn": "wireguard", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", + "ips": [ + "193.9.32.1" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.32.3" + ] + }, + { + "vpn": "wireguard", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", + "ips": [ + "193.9.32.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.213.82.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.226" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.226" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.229" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.229" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.232" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.232" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.235" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.238" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.238" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.241" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.241" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.244" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.244" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.247" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.247" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.250" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.250" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.86" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.86" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.34" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.34" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.44" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.44" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.54" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.54" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.49" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.49" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.39" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.39" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.66" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.66" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.71" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.71" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.76" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.76" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.81" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.81" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.1" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.1" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.3" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.5" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.5" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.7" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.7" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.9" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.9" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.11" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.11" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.13" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.15" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.15" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.17" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.17" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.19" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.21" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.21" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.23" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.23" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.8" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.8" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.13" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.18" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.18" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.23" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.23" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.19" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.27" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.35" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.35" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.43" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.43" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.100" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.100" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.102" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.102" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.104" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.104" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.106" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.106" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.108" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.108" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.110" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.110" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.112" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.112" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.116" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.116" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.118" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.118" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.120" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.120" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.122" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.122" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.124" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.124" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.126" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.126" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.128" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.128" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.132" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.132" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.134" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.134" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.136" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.136" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.138" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.138" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 311, + "hostname": "hk311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 312, + "hostname": "hk312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.56" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 313, + "hostname": "hk313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.37" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 314, + "hostname": "hk314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.42" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 315, + "hostname": "hk315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.226" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 316, + "hostname": "hk316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.228" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 317, + "hostname": "hk317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.233" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 318, + "hostname": "hk318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.99" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.99" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.28" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.28" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.83" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.83" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.171" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.171" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.243" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.243" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.235" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.187.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.104.187.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.115" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.115" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.123" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.123" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.27" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.35" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.35" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.43" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.43" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.67" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.67" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.91" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.91" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.243" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.243" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.100" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.100" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.102" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.102" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.104" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.104" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.106" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.106" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.108" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.108" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.110" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.110" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.112" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.112" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.114" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.114" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.116" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.116" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.118" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.118" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.1" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.1" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.2" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.3" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.3" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.4" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.4" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.5" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.5" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.6" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.6" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.7" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.7" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.8" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.8" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.9" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.9" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.10" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.10" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.100" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.100" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.102" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.102" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.104" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.104" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.106" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.106" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.108" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.108" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.110" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.110" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.112" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.112" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.114" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.114" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.116" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.116" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.118" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.118" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.48.83" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "84.247.48.83" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.131" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.115" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.115" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.123" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.195" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.195" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.203" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.203" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.211" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.211" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.219" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.219" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.227" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.227" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.235" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.235" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.75" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.75" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.83" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.83" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.91" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.91" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.99" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.99" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.107" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.107" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.115" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.115" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.123" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.131" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.139" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.139" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.195" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.195" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.3" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.11" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.11" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.19" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.14" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.14" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.40" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.40" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.52" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.52" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.64" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.64" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.76" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.76" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.88" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.88" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.100" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.100" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.112" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.112" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.129" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.129" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.142" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.168" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.168" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.180" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.180" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.192" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.192" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.204" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.204" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.216" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.216" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.228" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.228" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.240" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.240" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 174, + "hostname": "ie174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.137.215" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 175, + "hostname": "ie175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.137.217" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 176, + "hostname": "ie176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.243.34" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 177, + "hostname": "ie177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.243.36" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.33.1" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", + "ips": [ + "193.9.33.1" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.33.3" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", + "ips": [ + "193.9.33.3" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.21" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.21" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.32" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.32" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.44" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.44" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.56" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.56" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.68" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.68" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.80" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.80" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.91" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.91" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.102" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.102" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.113" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.113" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.22" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.22" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.23" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.23" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.24" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.24" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.25" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.25" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.26" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.26" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.27" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.27" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.28" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.28" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.30" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.30" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.31" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.31" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.33" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.33" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.39" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.39" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.75" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.108" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.108" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.98" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.98" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.118" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.103" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.103" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.113" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.113" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.171" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.171" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.163" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.163" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.127.179" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "192.145.127.179" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.211" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.211" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.219" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.219" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.227" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.227" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.243" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.243" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.171" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.171" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.179" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.179" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.187" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.187" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.195" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.195" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.203" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.203" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.43" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.43" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.51" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.59" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.59" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.67" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.67" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.243" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.243" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.251" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.251" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.236" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.236" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.231" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.231" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.226" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.226" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.75" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.83" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.83" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.27" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "45.9.251.27" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "45.9.251.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.43" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.43" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.123" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.123" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.195" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.195" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "95.174.64.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.91" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.91" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.242" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.242" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.247" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.247" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.42" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.42" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.37" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.37" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.32" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.32" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.27" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.27" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.22" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.22" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.17" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.17" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.7" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.7" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.2" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.2" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.58" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.58" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.53" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.53" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.48" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.48" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.181" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.181" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 241, + "hostname": "it241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.11" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 242, + "hostname": "it242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.13" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 243, + "hostname": "it243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.65" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "it244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.67" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 246, + "hostname": "it246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.80" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 247, + "hostname": "it247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.82" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 248, + "hostname": "it248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 249, + "hostname": "it249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.77" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 287, + "hostname": "it287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.85" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 288, + "hostname": "it288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.87" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 289, + "hostname": "it289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.4" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 290, + "hostname": "it290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.8" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.100" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.100" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.102" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.102" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.104" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.104" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.106" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.106" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.108" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.108" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.110" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.110" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.112" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.112" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.114" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.114" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.116" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.116" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.118" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.120" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.120" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.122" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.122" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.124" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.124" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.126" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.126" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.128" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.128" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.130" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.130" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.132" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.132" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.134" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.134" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.136" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.136" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.138" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.138" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.140" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.140" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.142" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.144" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.146" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.146" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.148" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.150" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.150" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.152" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.152" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.154" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.154" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.156" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.156" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.158" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.158" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.160" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.160" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.162" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.162" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.164" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.164" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.166" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.166" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.168" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.168" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.170" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.170" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.172" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.172" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.34.1" + ] + }, + { + "vpn": "wireguard", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", + "ips": [ + "193.9.34.1" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.34.3" + ] + }, + { + "vpn": "wireguard", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", + "ips": [ + "193.9.34.3" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.100" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.100" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.102" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.104" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.104" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.106" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.108" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.110" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.112" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.112" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.114" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.114" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.116" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.118" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.118" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.120" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.122" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.124" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.124" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.126" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.126" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.128" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.128" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.130" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.130" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.132" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.132" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.134" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.134" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.136" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.136" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.138" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.138" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.140" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.140" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.142" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.142" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.144" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.144" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.146" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.146" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.148" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.148" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.150" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.150" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.152" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.152" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.154" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.154" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.156" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.156" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.158" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.158" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.160" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.160" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.162" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.162" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.164" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.164" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.166" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.166" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.168" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.168" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.170" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.170" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.54" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.54" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.211" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.211" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.116" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.119" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.119" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.122" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.206" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.206" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.209" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.209" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.194" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.194" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.197" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.200" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.194" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.194" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.197" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.200" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.212" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.218" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.218" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.215" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.215" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.212" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.206" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.206" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.209" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.209" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.235" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.235" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.93" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.90" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.90" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.87" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.87" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.84" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.84" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.78" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.78" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.75" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.75" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.72" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.69" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.69" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.19" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.19" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "82.102.28.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "82.102.28.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.147" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.147" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.163" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.163" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.96" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.102" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.105" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.105" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.108" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.71" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.71" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.76" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.59" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.59" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "jp678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "jp679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.113" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "jp680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.121" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "jp681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.193" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "jp682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "jp683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "jp684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.205" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "jp685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.207" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "jp686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "jp687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.202" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "jp688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "jp689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.118" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "jp700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 701, + "hostname": "jp701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.103" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 702, + "hostname": "jp702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 703, + "hostname": "jp703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.98" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 704, + "hostname": "jp704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 705, + "hostname": "jp705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 716, + "hostname": "jp716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.220" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 717, + "hostname": "jp717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.222" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 718, + "hostname": "jp718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.215" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 719, + "hostname": "jp719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.217" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 720, + "hostname": "jp720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 721, + "hostname": "jp721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 722, + "hostname": "jp722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.233" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 723, + "hostname": "jp723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.235" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 724, + "hostname": "jp724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.239" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 725, + "hostname": "jp725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.241" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 726, + "hostname": "jp726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.246" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 727, + "hostname": "jp727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.248" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 408, + "hostname": "nl408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 409, + "hostname": "nl409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 757, + "hostname": "nl757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "nl945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "nl946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 957, + "hostname": "nl957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 958, + "hostname": "nl958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1020, + "hostname": "nl1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1021, + "hostname": "nl1021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1022, + "hostname": "nl1022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1023, + "hostname": "nl1023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1024, + "hostname": "nl1024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1025, + "hostname": "nl1025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1036, + "hostname": "nl1036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1037, + "hostname": "nl1037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1038, + "hostname": "nl1038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.55" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1039, + "hostname": "nl1039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1043, + "hostname": "nl1043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1044, + "hostname": "nl1044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1045, + "hostname": "nl1045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1046, + "hostname": "nl1046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.217" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1048, + "hostname": "nl1048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.210" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 222, + "hostname": "pl222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.21" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 223, + "hostname": "pl223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.23" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 224, + "hostname": "pl224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.34" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 225, + "hostname": "pl225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.36" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 126, + "hostname": "pt126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.243" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 127, + "hostname": "pt127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.245" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 128, + "hostname": "pt128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 129, + "hostname": "pt129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.196" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 556, + "hostname": "sg556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.41" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 557, + "hostname": "sg557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.43" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 558, + "hostname": "sg558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.36" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 559, + "hostname": "sg559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.38" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 600, + "hostname": "sg600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 601, + "hostname": "sg601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 602, + "hostname": "sg602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.107.210" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.27" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.27" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.40" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.40" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.52" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.52" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.64" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.64" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.76" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.76" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.88" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.88" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.100" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.100" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.112" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.112" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.129" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.129" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.142" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.142" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.155" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.155" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.168" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.168" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.180" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.180" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.192" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.204" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.204" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.216" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.216" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 148, + "hostname": "za148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.151" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 149, + "hostname": "za149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.153" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 150, + "hostname": "za150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.194" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 151, + "hostname": "za151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.196" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.72" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.72" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.66" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.66" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.5" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.5" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.10" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.10" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.14" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.75" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.75" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.44" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.44" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.49" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.49" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.54" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.54" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.59" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.59" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.104" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.104" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.99" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.99" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.0" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.0" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.26" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.26" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.32" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.32" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.48" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.48" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.64" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.64" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.80" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.80" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.96" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.96" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.112" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.112" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.128" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.128" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.144" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.144" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.50.243" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.50.243" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.42" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.42" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.211" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.211" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.219" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.219" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.50.251" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.50.251" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.114" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.114" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.234" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.234" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.53.3" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.53.3" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.53.83" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.53.83" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.211" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.211" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.179" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.179" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.227" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.100" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.100" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.102" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.102" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.104" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.104" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.106" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.106" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.108" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.108" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.110" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.110" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.112" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.112" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.114" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.114" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.116" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.116" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.118" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.118" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.120" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.120" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.122" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.122" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.124" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.124" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.126" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.126" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.128" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.128" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.130" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.130" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.132" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.132" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.134" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.134" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.136" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.136" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.138" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.138" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.140" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.140" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.142" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.142" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.144" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.144" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.146" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.146" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.243" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.243" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.75" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.75" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.72" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.72" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.69" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.69" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.66" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.66" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.115" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.115" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.227" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.232" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.232" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.237" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.237" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.107.117" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.206.107.117" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.131" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.131" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.139" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.139" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.147" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.147" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.227" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.19" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.19" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.171" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.123" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.123" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.251" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.251" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.155" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.155" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.11" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.11" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.3" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.235" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.203" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.203" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.171" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.203" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.203" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.251" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.93.182.251" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.178.211" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "89.238.178.211" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.1" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.3" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.5" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.7" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.7" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.9" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.9" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.11" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.11" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.13" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.13" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.15" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.15" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.17" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.17" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.19" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.19" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.21" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.21" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.23" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.23" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.25" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.25" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.29" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.29" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.31" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.31" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.33" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.33" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.35" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.35" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.22.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "146.70.22.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.22.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "146.70.22.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 214, + "hostname": "es214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.33" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 215, + "hostname": "es215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.35" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 216, + "hostname": "es216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.43" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 217, + "hostname": "es217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.45" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 218, + "hostname": "es218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.38" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 219, + "hostname": "es219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.40" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "es244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", + "ips": [ + "82.149.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", + "ips": [ + "82.149.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.173.34" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "194.127.173.34" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.174" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.174" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.175" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.175" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.148" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "195.242.213.148" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.145" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.153" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "195.242.213.153" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.125.108" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.230.125.108" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.132" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.236.201.132" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.219" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.219" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.75" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.75" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.123" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.123" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.145" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.130" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.130" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.150" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.150" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.140" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.140" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.135" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.135" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.219" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.219" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.3" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.5" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.7" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.7" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.9" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.9" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.13" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.13" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.15" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.17" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.17" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.21" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.23" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.23" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.25" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.25" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.29" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.29" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.31" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.31" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.33" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.33" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.37" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.37" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.39" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.39" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.41" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.41" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.45" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.45" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.47" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.47" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.49" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.49" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.53" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.131" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.131" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.139" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.139" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.147" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.147" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.107" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.107" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.240" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.240" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.96" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.96" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.112" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.112" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.128" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.128" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.144" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.144" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.160" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.160" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.176" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.176" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.192" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.192" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.208" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.208" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.224" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.224" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 598, + "hostname": "se598.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.186" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 599, + "hostname": "se599.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.188" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 600, + "hostname": "se600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.248" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 601, + "hostname": "se601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.250" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 602, + "hostname": "se602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.152" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 603, + "hostname": "se603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.157" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 604, + "hostname": "se604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.138" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 605, + "hostname": "se605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP" + ], + "number": 606, + "hostname": "se606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.156" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.137.172" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.137.172" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.170" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.170" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.173.35" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "194.127.173.35" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.146" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.146" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.196" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.196" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.228" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.228" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.220" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.220" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.212" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.212" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.131" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.132" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.132" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.39.112.20" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "84.39.112.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.84" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.84" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.136.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.136.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.163" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.163" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.150" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.150" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.145" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.145" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.140" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.140" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.135" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.130" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.236.201.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.147" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.236.201.147" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.67" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.75" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.75" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.83" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.83" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.91" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.91" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.99" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.99" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.107" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.107" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.121" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.121" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.129" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.129" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.131" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.131" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.133" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.133" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.135" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.137" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.137" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.141" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.141" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.143" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.143" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.145" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.145" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.147" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.147" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.149" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.149" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.151" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.153" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.153" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.155" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.155" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.14" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.14" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.16" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.16" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.18" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.18" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.20" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.22" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.22" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.24" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.24" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.26" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.26" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.28" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.28" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.30" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.30" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.32" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.32" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.34" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.34" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.36" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.36" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.142" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.151" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.161" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.161" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.181" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.181" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.190" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.190" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.199" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.199" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.208" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.208" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.226" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.226" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.245" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.245" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.217" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.217" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.203.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "217.138.203.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.75" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.75" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.83" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.83" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.91" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.91" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.206.105.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.206.105.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.170.195" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.212.170.195" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.35" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.35" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.51" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.51" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.59" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.59" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.51" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.51" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.59" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.59" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.67" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.142" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.152" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.152" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.162" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.162" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.172" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.172" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.182" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.182" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.192" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.192" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.201" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.201" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.210" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.210" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.228" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.228" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.237" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.237" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.246" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.246" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.245" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.245" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.247" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.247" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.249" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.249" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.251" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.251" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.240" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.240" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.224" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.224" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.208" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.208" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.192" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.192" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.176" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.176" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.160" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.160" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.144" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.144" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 413, + "hostname": "ch413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.118" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 414, + "hostname": "ch414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.120" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 415, + "hostname": "ch415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.113" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 416, + "hostname": "ch416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.96" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.96" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.112" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.112" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.128" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.128" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 420, + "hostname": "ch420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.6.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 421, + "hostname": "ch421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.6.153" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 422, + "hostname": "ch422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 423, + "hostname": "ch423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.68" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 424, + "hostname": "ch424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.98" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 425, + "hostname": "ch425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.100" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 426, + "hostname": "ch426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.103" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 427, + "hostname": "ch427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.105" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 428, + "hostname": "ch428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.111" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 430, + "hostname": "ch430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.116" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 431, + "hostname": "ch431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.118" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.79" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "84.17.37.79" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.100" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.100" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.102" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.102" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.104" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.104" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.106" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.106" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.108" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.108" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.110" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.110" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.112" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.112" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.116" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.116" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.118" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.118" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.120" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.120" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.122" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.122" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.124" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.124" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.126" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.126" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.128" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.128" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.130" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.132" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.132" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.134" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.134" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.136" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.136" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.138" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.138" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.64" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.64" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.66" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.66" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.68" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.68" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.70" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.70" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.72" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.72" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.96" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.96" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.99" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.99" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.47" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.47" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.102" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.102" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.105" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.105" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.134.20" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.134.20" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.134.67" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.134.67" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.170.99" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.170.99" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.170.163" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.170.163" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", + "ips": [ + "82.149.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", + "ips": [ + "82.149.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.62" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.62" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.50" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.50" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.38" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.38" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.26" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.26" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.14" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.14" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.2" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.2" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.74" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.74" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.86" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.86" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.98" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.98" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.110" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.110" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.136.155.130" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "45.136.155.130" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.136.155.142" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "45.136.155.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.139" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.139" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.143" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.143" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.151" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.151" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.159" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.159" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.167" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.167" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.175" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.175" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.172" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.166" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.166" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.161" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.161" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.180" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.155.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.155.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.64" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.77" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.77" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.103" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.168" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.194" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.194" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.246" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.246" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.71" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.71" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.84" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.97" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.188" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.201" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.241" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.241" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.44" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.54" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.56" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.60" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.62" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.64" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.70" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.74" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.74" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.76" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.78" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.80" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.80" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.88" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.94" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.96" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.180" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.47.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.141" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.47.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.49" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.19.217.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.19.217.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "139.28.219.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "139.28.219.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 765, + "hostname": "uk765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.28.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 766, + "hostname": "uk766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.28.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "uk812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.191.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "uk813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "uk814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.121.139.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 870, + "hostname": "uk870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.191.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 871, + "hostname": "uk871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.99.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 873, + "hostname": "uk873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 874, + "hostname": "uk874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 875, + "hostname": "uk875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 876, + "hostname": "uk876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 877, + "hostname": "uk877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.217.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 878, + "hostname": "uk878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.217.5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 879, + "hostname": "uk879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.223.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 880, + "hostname": "uk880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.223.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 884, + "hostname": "uk884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.169.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 885, + "hostname": "uk885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.169.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 886, + "hostname": "uk886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.44.79.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 887, + "hostname": "uk887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.44.79.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 888, + "hostname": "uk888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 889, + "hostname": "uk889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 890, + "hostname": "uk890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 891, + "hostname": "uk891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 892, + "hostname": "uk892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 893, + "hostname": "uk893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 894, + "hostname": "uk894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 895, + "hostname": "uk895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 896, + "hostname": "uk896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 897, + "hostname": "uk897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.65" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 898, + "hostname": "uk898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 899, + "hostname": "uk899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1602, + "hostname": "uk1602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.214.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1603, + "hostname": "uk1603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.214.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1604, + "hostname": "uk1604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.223.233.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1605, + "hostname": "uk1605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.223.233.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1606, + "hostname": "uk1606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.151.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1607, + "hostname": "uk1607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.151.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1608, + "hostname": "uk1608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.234.127.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1609, + "hostname": "uk1609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.234.127.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1610, + "hostname": "uk1610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1611, + "hostname": "uk1611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1612, + "hostname": "uk1612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.139" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1613, + "hostname": "uk1613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1614, + "hostname": "uk1614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1615, + "hostname": "uk1615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1616, + "hostname": "uk1616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1617, + "hostname": "uk1617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1618, + "hostname": "uk1618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1619, + "hostname": "uk1619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.153" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1620, + "hostname": "uk1620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1621, + "hostname": "uk1621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1622, + "hostname": "uk1622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1623, + "hostname": "uk1623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1624, + "hostname": "uk1624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1625, + "hostname": "uk1625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1626, + "hostname": "uk1626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1627, + "hostname": "uk1627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1628, + "hostname": "uk1628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1629, + "hostname": "uk1629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1630, + "hostname": "uk1630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1631, + "hostname": "uk1631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1632, + "hostname": "uk1632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1633, + "hostname": "uk1633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1634, + "hostname": "uk1634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1635, + "hostname": "uk1635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1636, + "hostname": "uk1636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.23" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1637, + "hostname": "uk1637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1638, + "hostname": "uk1638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1639, + "hostname": "uk1639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1640, + "hostname": "uk1640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1641, + "hostname": "uk1641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1642, + "hostname": "uk1642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1643, + "hostname": "uk1643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1644, + "hostname": "uk1644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1645, + "hostname": "uk1645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.41" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1646, + "hostname": "uk1646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1647, + "hostname": "uk1647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1648, + "hostname": "uk1648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1649, + "hostname": "uk1649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1650, + "hostname": "uk1650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1651, + "hostname": "uk1651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1652, + "hostname": "uk1652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1653, + "hostname": "uk1653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1654, + "hostname": "uk1654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1655, + "hostname": "uk1655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.114.129.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1657, + "hostname": "uk1657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1658, + "hostname": "uk1658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1659, + "hostname": "uk1659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1660, + "hostname": "uk1660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.95" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1661, + "hostname": "uk1661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1662, + "hostname": "uk1662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1663, + "hostname": "uk1663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1664, + "hostname": "uk1664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1665, + "hostname": "uk1665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.105" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.8" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.10" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.14" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.16" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.16" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.28" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.28" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "uk1708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "uk1709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "uk1710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "uk1711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.209" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "uk1713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "uk1714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.11" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.75" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.75" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.205" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.208" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.113.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "193.9.113.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.217" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.217" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.226" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.238" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.238" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.241" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.241" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.250" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.250" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.253" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.253" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.9" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.248" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.248" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.242" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.242" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.27" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.27" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.176.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.176.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.212" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.191.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.253.98.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.253.98.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.253.98.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.253.98.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.25" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.121" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.165" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.73.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.73.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.75.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.75.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.9.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.9.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.109.168.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.109.168.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.109.170.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.109.170.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.252.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.99.252.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.5.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.5.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.6.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.6.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.7.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.7.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.136.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.136.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.137.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.137.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.138.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.138.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.174.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.174.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.120.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.120.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.193.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.193.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.216.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.216.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.69.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.69.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.6.11" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.6.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.223.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.223.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.252.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.99.252.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.58.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.58.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.59.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.59.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.197.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.74.197.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.37" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.29" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.250" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.250" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.240" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.240" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.206" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.201" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.196" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.161" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.161" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.156" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.141" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.126" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.126" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.121" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.96" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.81" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.81" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.76" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.71" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.71" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.61" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.61" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.56" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.53" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.53" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.160.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.160.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.160.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.160.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.200.117" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.200.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.43" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.9" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.27" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.27" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.54" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.60" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.63" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.63" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.69" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.69" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.94" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.78" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.113" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.113" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.119" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.119" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.125" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.125" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.128" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.128" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.137" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.140" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.140" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.143" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.148" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.157" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.160" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.169" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.169" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.75" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.75" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.184" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.190" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.196" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.47" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.37" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.53" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.53" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.117" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.150.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.164" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.174" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.180" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.184" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.100" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.114" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.120" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.120" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.183" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.160" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.226" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.210" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.210" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.206" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.198" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.198" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.194" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.194" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.190" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.174" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.158" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.158" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.150" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.150" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.226.142.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.226.142.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.183" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.159" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.159" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.138" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.89" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.81" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.81" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.77" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.77" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.13" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.145" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.165" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.185" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.185" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.205" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.9.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.9.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.58.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.58.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.138.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.138.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.143.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.143.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.195.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.195.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.195.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.195.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.192.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.192.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.187.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.187.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.194.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.194.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.245.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.245.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.73.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.73.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.76.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.76.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.25.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.25.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.161.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.161.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.163.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.163.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.164.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.164.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.165.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.165.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.165.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.165.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.169.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.169.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.170.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.170.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.175.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.175.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.175.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.175.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.194.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.194.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.194.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.194.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.200.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.200.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.200.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.200.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.121.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.121.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.56.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.56.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.56.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.56.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.121.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.121.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.221.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.221.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.166.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.166.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.7" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.7" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.59" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.59" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.192.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.74.192.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.230" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.230" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.234" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.236" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.236" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.213.47" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.8" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.10" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.14" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.16" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.16" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.28" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.28" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.62" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.132" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.152" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.192" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.192" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.212" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.13" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.145" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.156" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.189" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.189" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.200" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.200" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.132" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.138" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.140" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Europe", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10562, + "hostname": "us10562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Europe", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10563, + "hostname": "us10563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.159" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.177" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.183" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2920, + "hostname": "us2920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2921, + "hostname": "us2921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2924, + "hostname": "us2924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.247.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2925, + "hostname": "us2925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.247.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2929, + "hostname": "us2929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2930, + "hostname": "us2930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.147.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2939, + "hostname": "us2939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.237.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2940, + "hostname": "us2940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.237.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2949, + "hostname": "us2949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2950, + "hostname": "us2950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4959, + "hostname": "us4959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4960, + "hostname": "us4960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4965, + "hostname": "us4965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4966, + "hostname": "us4966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4971, + "hostname": "us4971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4972, + "hostname": "us4972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4973, + "hostname": "us4973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4974, + "hostname": "us4974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4977, + "hostname": "us4977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4978, + "hostname": "us4978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4979, + "hostname": "us4979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4984, + "hostname": "us4984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4985, + "hostname": "us4985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4992, + "hostname": "us4992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4993, + "hostname": "us4993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4994, + "hostname": "us4994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.245.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4995, + "hostname": "us4995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.245.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.42.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "64.44.42.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "172.93.230.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.59.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10106, + "hostname": "us10106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10107, + "hostname": "us10107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10108, + "hostname": "us10108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.153.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10109, + "hostname": "us10109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10159, + "hostname": "us10159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10160, + "hostname": "us10160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10161, + "hostname": "us10161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.147.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10162, + "hostname": "us10162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10163, + "hostname": "us10163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10164, + "hostname": "us10164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.177" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.167" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.121" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.229" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.232" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10291, + "hostname": "us10291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10292, + "hostname": "us10292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10293, + "hostname": "us10293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10294, + "hostname": "us10294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10303, + "hostname": "us10303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10304, + "hostname": "us10304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10305, + "hostname": "us10305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10306, + "hostname": "us10306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10367, + "hostname": "us10367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10368, + "hostname": "us10368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10375, + "hostname": "us10375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10376, + "hostname": "us10376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10377, + "hostname": "us10377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10378, + "hostname": "us10378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10403, + "hostname": "us10403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10404, + "hostname": "us10404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10460, + "hostname": "us10460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10461, + "hostname": "us10461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10464, + "hostname": "us10464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10465, + "hostname": "us10465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10488, + "hostname": "us10488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10489, + "hostname": "us10489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10496, + "hostname": "us10496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10497, + "hostname": "us10497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10515, + "hostname": "us10515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10516, + "hostname": "us10516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10522, + "hostname": "us10522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10524, + "hostname": "us10524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10525, + "hostname": "us10525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10526, + "hostname": "us10526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10527, + "hostname": "us10527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10574, + "hostname": "us10574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10575, + "hostname": "us10575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10576, + "hostname": "us10576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10577, + "hostname": "us10577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2943, + "hostname": "us2943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2944, + "hostname": "us2944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4953, + "hostname": "us4953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4954, + "hostname": "us4954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4961, + "hostname": "us4961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4962, + "hostname": "us4962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4967, + "hostname": "us4967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4968, + "hostname": "us4968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4980, + "hostname": "us4980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4981, + "hostname": "us4981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4986, + "hostname": "us4986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4987, + "hostname": "us4987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4996, + "hostname": "us4996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4997, + "hostname": "us4997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4998, + "hostname": "us4998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4999, + "hostname": "us4999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.185" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.206" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.220" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.234" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10110, + "hostname": "us10110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10111, + "hostname": "us10111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10112, + "hostname": "us10112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10113, + "hostname": "us10113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.109" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.121" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.125" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.125" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.127" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.159" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.167" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.169" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10167, + "hostname": "us10167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10168, + "hostname": "us10168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10173, + "hostname": "us10173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10174, + "hostname": "us10174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10175, + "hostname": "us10175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10176, + "hostname": "us10176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10179, + "hostname": "us10179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10180, + "hostname": "us10180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10254, + "hostname": "us10254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10255, + "hostname": "us10255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10256, + "hostname": "us10256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10257, + "hostname": "us10257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10269, + "hostname": "us10269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10270, + "hostname": "us10270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10275, + "hostname": "us10275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10276, + "hostname": "us10276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10277, + "hostname": "us10277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10278, + "hostname": "us10278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10349, + "hostname": "us10349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10350, + "hostname": "us10350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10452, + "hostname": "us10452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10453, + "hostname": "us10453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10454, + "hostname": "us10454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10455, + "hostname": "us10455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10462, + "hostname": "us10462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10463, + "hostname": "us10463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10480, + "hostname": "us10480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10481, + "hostname": "us10481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10482, + "hostname": "us10482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10483, + "hostname": "us10483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10538, + "hostname": "us10538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10539, + "hostname": "us10539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10540, + "hostname": "us10540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10541, + "hostname": "us10541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10542, + "hostname": "us10542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10543, + "hostname": "us10543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10572, + "hostname": "us10572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10573, + "hostname": "us10573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10578, + "hostname": "us10578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10579, + "hostname": "us10579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.189" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2945, + "hostname": "us2945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.185.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2946, + "hostname": "us2946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.185.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4950, + "hostname": "us4950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4951, + "hostname": "us4951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4957, + "hostname": "us4957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4958, + "hostname": "us4958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4963, + "hostname": "us4963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4964, + "hostname": "us4964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4969, + "hostname": "us4969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4970, + "hostname": "us4970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4975, + "hostname": "us4975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4976, + "hostname": "us4976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4982, + "hostname": "us4982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4983, + "hostname": "us4983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4988, + "hostname": "us4988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4989, + "hostname": "us4989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4990, + "hostname": "us4990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4991, + "hostname": "us4991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.175.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.207.175.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.45.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.45.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.184" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.188" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "37.120.132.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.253" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.184" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.187", + "2a0d:5600:8:26a::3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.187", + "2a0d:5600:8:26a::3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.126.155", + "2a0d:5600:8:27a::3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.230.126.155", + "2a0d:5600:8:27a::3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.100.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "146.70.100.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10100, + "hostname": "us10100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10101, + "hostname": "us10101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10102, + "hostname": "us10102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10103, + "hostname": "us10103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10104, + "hostname": "us10104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10105, + "hostname": "us10105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10114, + "hostname": "us10114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10115, + "hostname": "us10115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10153, + "hostname": "us10153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10154, + "hostname": "us10154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10155, + "hostname": "us10155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10156, + "hostname": "us10156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10169, + "hostname": "us10169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10170, + "hostname": "us10170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10171, + "hostname": "us10171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10172, + "hostname": "us10172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10177, + "hostname": "us10177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10178, + "hostname": "us10178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10193, + "hostname": "us10193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10194, + "hostname": "us10194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10252, + "hostname": "us10252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10253, + "hostname": "us10253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10260, + "hostname": "us10260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10261, + "hostname": "us10261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10262, + "hostname": "us10262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10263, + "hostname": "us10263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10271, + "hostname": "us10271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10272, + "hostname": "us10272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10279, + "hostname": "us10279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10280, + "hostname": "us10280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10347, + "hostname": "us10347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10348, + "hostname": "us10348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10405, + "hostname": "us10405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10406, + "hostname": "us10406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10456, + "hostname": "us10456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10457, + "hostname": "us10457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10458, + "hostname": "us10458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10459, + "hostname": "us10459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10466, + "hostname": "us10466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10467, + "hostname": "us10467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10476, + "hostname": "us10476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10477, + "hostname": "us10477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10478, + "hostname": "us10478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10479, + "hostname": "us10479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10500, + "hostname": "us10500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10501, + "hostname": "us10501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10513, + "hostname": "us10513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10514, + "hostname": "us10514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10528, + "hostname": "us10528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10529, + "hostname": "us10529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10530, + "hostname": "us10530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10531, + "hostname": "us10531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10556, + "hostname": "us10556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10557, + "hostname": "us10557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10568, + "hostname": "us10568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10570, + "hostname": "us10570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10582, + "hostname": "us10582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10583, + "hostname": "us10583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10584, + "hostname": "us10584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10585, + "hostname": "us10585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "37.19.212.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.208" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "37.19.212.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "154.47.22.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "154.47.22.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.49" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.200" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.197" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.206" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.214.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "45.87.214.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.27.12.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "193.27.12.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10295, + "hostname": "us10295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10296, + "hostname": "us10296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10297, + "hostname": "us10297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10298, + "hostname": "us10298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10299, + "hostname": "us10299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10300, + "hostname": "us10300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10301, + "hostname": "us10301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10302, + "hostname": "us10302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10307, + "hostname": "us10307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10308, + "hostname": "us10308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10355, + "hostname": "us10355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10356, + "hostname": "us10356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10379, + "hostname": "us10379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10380, + "hostname": "us10380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10407, + "hostname": "us10407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10408, + "hostname": "us10408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10440, + "hostname": "us10440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10441, + "hostname": "us10441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10442, + "hostname": "us10442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10443, + "hostname": "us10443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10444, + "hostname": "us10444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10445, + "hostname": "us10445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10492, + "hostname": "us10492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10493, + "hostname": "us10493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10532, + "hostname": "us10532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10534, + "hostname": "us10534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10535, + "hostname": "us10535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10550, + "hostname": "us10550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10551, + "hostname": "us10551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10580, + "hostname": "us10580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10581, + "hostname": "us10581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "178.249.214.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.215" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.224" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.253" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.103.48.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.103.48.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.88" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.206.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.206.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.206.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.206.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.196.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.196.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.95" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.220" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.224" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.232" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.234" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.244" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.250" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.250" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.252" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.252" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.254" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.49" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.196.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.196.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.189.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "31.13.189.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.120.138.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10157, + "hostname": "us10157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10158, + "hostname": "us10158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10165, + "hostname": "us10165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10166, + "hostname": "us10166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10181, + "hostname": "us10181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10182, + "hostname": "us10182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10183, + "hostname": "us10183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10184, + "hostname": "us10184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10185, + "hostname": "us10185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10186, + "hostname": "us10186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10187, + "hostname": "us10187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10188, + "hostname": "us10188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10189, + "hostname": "us10189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10190, + "hostname": "us10190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10191, + "hostname": "us10191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10192, + "hostname": "us10192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10195, + "hostname": "us10195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10196, + "hostname": "us10196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10197, + "hostname": "us10197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10198, + "hostname": "us10198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10258, + "hostname": "us10258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10259, + "hostname": "us10259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10264, + "hostname": "us10264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10265, + "hostname": "us10265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10266, + "hostname": "us10266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10267, + "hostname": "us10267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10273, + "hostname": "us10273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10274, + "hostname": "us10274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10281, + "hostname": "us10281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10282, + "hostname": "us10282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10283, + "hostname": "us10283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10284, + "hostname": "us10284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10285, + "hostname": "us10285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10286, + "hostname": "us10286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10313, + "hostname": "us10313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10314, + "hostname": "us10314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10315, + "hostname": "us10315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10316, + "hostname": "us10316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10351, + "hostname": "us10351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10352, + "hostname": "us10352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10353, + "hostname": "us10353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10354, + "hostname": "us10354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.181" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.221" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10381, + "hostname": "us10381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10382, + "hostname": "us10382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10401, + "hostname": "us10401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10402, + "hostname": "us10402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10410, + "hostname": "us10410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.21.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10411, + "hostname": "us10411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.21.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10448, + "hostname": "us10448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10449, + "hostname": "us10449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10450, + "hostname": "us10450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10451, + "hostname": "us10451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10468, + "hostname": "us10468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10469, + "hostname": "us10469.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10470, + "hostname": "us10470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10471, + "hostname": "us10471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10472, + "hostname": "us10472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10473, + "hostname": "us10473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10474, + "hostname": "us10474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10475, + "hostname": "us10475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10490, + "hostname": "us10490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10491, + "hostname": "us10491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10494, + "hostname": "us10494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10495, + "hostname": "us10495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10511, + "hostname": "us10511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10512, + "hostname": "us10512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10536, + "hostname": "us10536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.47.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10537, + "hostname": "us10537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.47.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10552, + "hostname": "us10552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10553, + "hostname": "us10553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10554, + "hostname": "us10554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10555, + "hostname": "us10555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10558, + "hostname": "us10558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10559, + "hostname": "us10559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10560, + "hostname": "us10560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10561, + "hostname": "us10561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10564, + "hostname": "us10564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10565, + "hostname": "us10565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10566, + "hostname": "us10566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10567, + "hostname": "us10567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.95" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "156.146.51.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "156.146.51.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.88" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10287, + "hostname": "us10287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10288, + "hostname": "us10288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10289, + "hostname": "us10289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10290, + "hostname": "us10290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10309, + "hostname": "us10309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10310, + "hostname": "us10310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10311, + "hostname": "us10311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10312, + "hostname": "us10312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10438, + "hostname": "us10438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10439, + "hostname": "us10439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10484, + "hostname": "us10484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10485, + "hostname": "us10485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10486, + "hostname": "us10486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10487, + "hostname": "us10487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10498, + "hostname": "us10498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10499, + "hostname": "us10499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10544, + "hostname": "us10544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10545, + "hostname": "us10545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10546, + "hostname": "us10546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10547, + "hostname": "us10547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10548, + "hostname": "us10548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10549, + "hostname": "us10549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.142" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", + "ips": [ + "82.149.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", + "ips": [ + "82.149.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.64.1" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", + "ips": [ + "212.97.64.1" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.64.3" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", + "ips": [ + "212.97.64.3" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.65.1" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", + "ips": [ + "212.97.65.1" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.65.3" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", + "ips": [ + "212.97.65.3" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "vn18.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.220.51" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "vn18.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.51" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "vn19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.54" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "vn19.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.54" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "vn20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.57" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "vn20.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.57" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "vn21.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.220.6" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "vn21.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.6" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "vn22.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.41" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "vn22.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.41" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "vn27.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.47" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "vn27.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.47" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.241.132" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.241.132" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.241.148" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.241.148" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.217.212" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.217.212" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.43" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.43" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.121" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.121" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.48" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.48" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.53" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.53" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.58" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.58" + ] + } + ] + }, + "perfect privacy": { + "version": 1, + "timestamp": 1682032240, + "servers": [ + { + "vpn": "openvpn", + "city": "Amsterdam", + "tcp": true, + "udp": true, + "ips": [ + "37.48.94.1", + "37.48.94.1", + "37.48.94.1", + "95.211.95.233", + "85.17.28.145", + "95.168.167.236", + "85.17.64.131", + "95.211.95.244" + ] + }, + { + "vpn": "openvpn", + "city": "Basel", + "tcp": true, + "udp": true, + "ips": [ + "82.199.134.162", + "82.199.134.162", + "82.199.134.162", + "80.255.7.66" + ] + }, + { + "vpn": "openvpn", + "city": "Belgrade", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.98", + "152.89.160.98", + "152.89.160.98" + ] + }, + { + "vpn": "openvpn", + "city": "Berlin", + "tcp": true, + "udp": true, + "ips": [ + "80.255.7.98", + "80.255.7.98", + "80.255.7.98" + ] + }, + { + "vpn": "openvpn", + "city": "Bucharest", + "tcp": true, + "udp": true, + "ips": [ + "185.57.82.25", + "185.57.82.25", + "185.57.82.25" + ] + }, + { + "vpn": "openvpn", + "city": "Calais", + "tcp": true, + "udp": true, + "ips": [ + "149.202.77.77", + "149.202.77.77", + "149.202.77.77" + ] + }, + { + "vpn": "openvpn", + "city": "Chicago", + "tcp": true, + "udp": true, + "ips": [ + "104.237.193.26", + "104.237.193.26", + "104.237.193.26" + ] + }, + { + "vpn": "openvpn", + "city": "Copenhagen", + "tcp": true, + "udp": true, + "ips": [ + "185.152.32.66", + "185.152.32.66", + "185.152.32.66" + ] + }, + { + "vpn": "openvpn", + "city": "Dallas", + "tcp": true, + "udp": true, + "ips": [ + "138.128.136.164", + "138.128.136.164", + "138.128.136.164" + ] + }, + { + "vpn": "openvpn", + "city": "Erfurt", + "tcp": true, + "udp": true, + "ips": [ + "217.114.218.18", + "217.114.218.18", + "217.114.218.18" + ] + }, + { + "vpn": "openvpn", + "city": "Frankfurt", + "tcp": true, + "udp": true, + "ips": [ + "37.58.58.239", + "37.58.58.239", + "37.58.58.239", + "178.162.194.30" + ] + }, + { + "vpn": "openvpn", + "city": "Hamburg", + "tcp": true, + "udp": true, + "ips": [ + "80.255.7.114", + "80.255.7.114", + "80.255.7.114" + ] + }, + { + "vpn": "openvpn", + "city": "Hongkong", + "tcp": true, + "udp": true, + "ips": [ + "209.58.188.129", + "209.58.188.129", + "209.58.188.129" + ] + }, + { + "vpn": "openvpn", + "city": "Jerusalem", + "tcp": true, + "udp": true, + "ips": [ + "82.81.85.231", + "82.81.85.231", + "82.81.85.231" + ] + }, + { + "vpn": "openvpn", + "city": "London", + "tcp": true, + "udp": true, + "ips": [ + "82.199.130.34", + "82.199.130.34", + "82.199.130.34", + "5.187.21.98" + ] + }, + { + "vpn": "openvpn", + "city": "LosAngeles", + "tcp": true, + "udp": true, + "ips": [ + "162.245.206.242", + "162.245.206.242", + "162.245.206.242" + ] + }, + { + "vpn": "openvpn", + "city": "Madrid", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.146", + "185.183.106.146", + "185.183.106.146" + ] + }, + { + "vpn": "openvpn", + "city": "Malmoe", + "tcp": true, + "udp": true, + "ips": [ + "194.68.170.51", + "194.68.170.51", + "194.68.170.51" + ] + }, + { + "vpn": "openvpn", + "city": "Manchester", + "tcp": true, + "udp": true, + "ips": [ + "217.138.196.98", + "217.138.196.98", + "217.138.196.98" + ] + }, + { + "vpn": "openvpn", + "city": "Miami", + "tcp": true, + "udp": true, + "ips": [ + "38.132.118.66", + "38.132.118.66", + "38.132.118.66" + ] + }, + { + "vpn": "openvpn", + "city": "Milan", + "tcp": true, + "udp": true, + "ips": [ + "192.145.127.210", + "192.145.127.210", + "192.145.127.210" + ] + }, + { + "vpn": "openvpn", + "city": "Montreal", + "tcp": true, + "udp": true, + "ips": [ + "167.114.209.103", + "167.114.209.103", + "167.114.209.103" + ] + }, + { + "vpn": "openvpn", + "city": "Moscow", + "tcp": true, + "udp": true, + "ips": [ + "192.162.100.240", + "192.162.100.240", + "192.162.100.240" + ] + }, + { + "vpn": "openvpn", + "city": "NewYork", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.194", + "96.9.246.194", + "96.9.246.194" + ] + }, + { + "vpn": "openvpn", + "city": "Nuremberg", + "tcp": true, + "udp": true, + "ips": [ + "80.255.10.194", + "80.255.10.194", + "80.255.10.194", + "81.95.5.34" + ] + }, + { + "vpn": "openvpn", + "city": "Oslo", + "tcp": true, + "udp": true, + "ips": [ + "91.205.187.186", + "91.205.187.186", + "91.205.187.186" + ] + }, + { + "vpn": "openvpn", + "city": "Paris", + "tcp": true, + "udp": true, + "ips": [ + "5.135.143.84", + "5.135.143.84", + "5.135.143.84" + ] + }, + { + "vpn": "openvpn", + "city": "Prague", + "tcp": true, + "udp": true, + "ips": [ + "195.138.249.2", + "195.138.249.2", + "195.138.249.2" + ] + }, + { + "vpn": "openvpn", + "city": "Reykjavik", + "tcp": true, + "udp": true, + "ips": [ + "82.221.111.10", + "82.221.111.10", + "82.221.111.10" + ] + }, + { + "vpn": "openvpn", + "city": "Riga", + "tcp": true, + "udp": true, + "ips": [ + "46.183.221.194", + "46.183.221.194", + "46.183.221.194" + ] + }, + { + "vpn": "openvpn", + "city": "Rotterdam", + "tcp": true, + "udp": true, + "ips": [ + "31.204.150.106", + "31.204.150.106", + "31.204.150.106", + "31.204.150.138", + "31.204.152.189", + "31.204.152.102", + "31.204.153.106" + ] + }, + { + "vpn": "openvpn", + "city": "Singapore", + "tcp": true, + "udp": true, + "ips": [ + "103.254.153.202", + "103.254.153.202", + "103.254.153.202", + "209.58.162.197" + ] + }, + { + "vpn": "openvpn", + "city": "Stockholm", + "tcp": true, + "udp": true, + "ips": [ + "185.217.1.2", + "185.217.1.2", + "185.217.1.2", + "185.41.240.18" + ] + }, + { + "vpn": "openvpn", + "city": "Sydney", + "tcp": true, + "udp": true, + "ips": [ + "66.203.112.47", + "66.203.112.47", + "66.203.112.47", + "66.203.112.50" + ] + }, + { + "vpn": "openvpn", + "city": "Tokyo", + "tcp": true, + "udp": true, + "ips": [ + "31.204.145.166", + "31.204.145.166", + "31.204.145.166" + ] + }, + { + "vpn": "openvpn", + "city": "Vienna", + "tcp": true, + "udp": true, + "ips": [ + "146.70.28.34", + "146.70.28.34", + "146.70.28.34" + ] + }, + { + "vpn": "openvpn", + "city": "Warsaw", + "tcp": true, + "udp": true, + "ips": [ + "146.70.85.162", + "146.70.85.162", + "146.70.85.162" + ] + }, + { + "vpn": "openvpn", + "city": "Zurich", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.210", + "37.120.213.210", + "37.120.213.210", + "152.89.162.226", + "37.120.213.194" + ] + } + ] + }, + "privado": { + "version": 6, + "timestamp": 1724023161, + "servers": [ + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "arn-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "arn-007.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ath-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.232" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ber-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.128" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ber-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bts-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bud-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bud-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cdg-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cgk-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.16" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cgk-011.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "eze-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-011.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "gru-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "iev-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ist-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.80" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "kul-014.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lis-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.112" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lis-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lju-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "mxp-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "osl-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.160" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "otp-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "otp-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "rix-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.192" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "rix-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "sin-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "sof-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "tia-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.232" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "vie-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "waw-065.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "waw-066.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.247" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "zrh-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "zrh-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.11" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "bud-001.vpn.privado.io", + "udp": true, + "ips": [ + "185.128.26.194" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "bud-002.vpn.privado.io", + "udp": true, + "ips": [ + "185.128.26.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-025.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-026.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-027.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-028.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-029.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-030.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.45" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-031.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-032.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-033.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-034.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-035.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-036.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-037.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "beg-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "beg-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.152" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.64" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-007.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.64" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bru-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bru-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "cph-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "cph-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "dub-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "dub-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.168" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "hel-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.176" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "hel-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jnb-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jnb-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jrs-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jrs-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-061.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-062.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-063.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.51" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-064.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.58" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-065.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mad-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mad-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "man-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "man-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "prg-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "prg-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.232" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "rkv-007.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.72.15" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "svo-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "svo-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "akl-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "akl-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "bkk-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "bkk-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "den-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "den-016.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-055.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-056.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-059.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-061.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-062.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-063.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "hkg-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "hkg-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "icn-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "icn-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-014.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mnl-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mnl-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "nrt-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "nrt-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "pdx-031.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "pdx-032.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sea-021.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sea-022.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sfo-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sfo-008.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sjc-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sjc-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "syd-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "syd-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "tsa-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "tsa-016.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-088.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-089.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-090.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-091.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-092.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-093.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "atl-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "atl-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dca-086.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.61.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dtw-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.31.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dtw-008.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.31.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-059.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-061.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-062.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-063.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-064.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-065.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-066.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "mia-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "mia-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-087.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-088.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-089.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-090.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-091.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-092.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "stl-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "stl-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yul-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yul-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yyz-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yyz-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.240" + ] + } + ] + }, + "private internet access": { + "version": 1, + "timestamp": 1723811974, + "servers": [ + { + "vpn": "openvpn", + "region": "AU Adelaide", + "server_name": "adelaide401", + "hostname": "au-adelaide-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.62.8", + "173.244.62.16", + "173.244.62.26", + "173.244.62.12", + "173.244.62.18", + "173.244.62.25", + "173.244.62.27" + ] + }, + { + "vpn": "openvpn", + "region": "AU Adelaide", + "server_name": "adelaide402", + "hostname": "au-adelaide-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.62.51", + "173.244.62.60", + "173.244.62.57", + "173.244.62.43", + "173.244.62.56", + "173.244.62.46", + "173.244.62.44", + "173.244.62.41", + "173.244.62.36", + "173.244.62.54", + "173.244.62.45" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane401", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "223.252.34.45", + "223.252.34.50", + "223.252.34.37", + "223.252.34.47", + "223.252.34.41", + "223.252.34.39", + "223.252.34.48", + "223.252.34.36", + "223.252.34.51", + "223.252.34.56" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane402", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "202.125.43.73", + "202.125.43.79", + "202.125.43.90", + "202.125.43.92", + "202.125.43.93", + "202.125.43.84", + "202.125.43.75", + "202.125.43.70", + "202.125.43.80" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane403", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "202.125.43.16", + "202.125.43.21", + "202.125.43.6", + "202.125.43.18", + "202.125.43.4", + "202.125.43.8", + "202.125.43.7", + "202.125.43.24", + "202.125.43.25", + "202.125.43.22", + "202.125.43.19" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne423", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.75", + "173.239.194.89" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne425", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.146", + "173.239.194.139", + "173.239.194.150", + "173.239.194.133", + "173.239.194.134", + "173.239.194.159", + "173.239.194.152", + "173.239.194.138", + "173.239.194.142", + "173.239.194.155" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne426", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.160", + "173.239.194.181", + "173.239.194.171", + "173.239.194.162", + "173.239.194.173", + "173.239.194.174", + "173.239.194.169", + "173.239.194.180", + "173.239.194.170", + "173.239.194.178" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne429", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.61", + "173.239.203.57", + "173.239.203.68", + "173.239.203.44" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne430", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.76", + "173.239.203.95", + "173.239.203.82", + "173.239.203.90", + "173.239.203.77", + "173.239.203.73" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth403", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.61", + "179.61.228.56", + "179.61.228.46", + "179.61.228.62", + "179.61.228.41", + "179.61.228.22", + "179.61.228.25", + "179.61.228.9", + "179.61.228.16", + "179.61.228.58", + "179.61.228.3" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth404", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.91", + "179.61.228.121", + "179.61.228.87", + "179.61.228.119", + "179.61.228.113", + "179.61.228.114", + "179.61.228.101", + "179.61.228.67", + "179.61.228.81", + "179.61.228.78", + "179.61.228.110" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth405", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.183", + "179.61.228.149", + "179.61.228.165", + "179.61.228.180", + "179.61.228.168", + "179.61.228.184", + "179.61.228.181", + "179.61.228.133", + "179.61.228.138", + "179.61.228.136" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney420", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "117.120.9.25", + "117.120.9.21", + "117.120.9.27", + "117.120.9.22", + "117.120.9.30", + "117.120.9.29" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney421", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "117.120.9.37", + "117.120.9.41", + "117.120.9.45", + "117.120.9.43", + "117.120.9.35", + "117.120.9.44", + "117.120.9.39", + "117.120.9.38" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney431", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.16.81.92", + "154.16.81.96", + "154.16.81.71", + "154.16.81.81", + "154.16.81.94", + "154.16.81.76", + "154.16.81.86", + "154.16.81.91", + "154.16.81.70", + "154.16.81.88", + "154.16.81.78" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney432", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.16.81.120", + "154.16.81.107", + "154.16.81.111", + "154.16.81.117", + "154.16.81.129", + "154.16.81.116" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana401", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.141", + "31.171.154.135", + "31.171.154.139", + "31.171.154.131", + "31.171.154.134", + "31.171.154.133", + "31.171.154.138", + "31.171.154.137", + "31.171.154.132" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana402", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.121", + "31.171.154.124", + "31.171.154.119", + "31.171.154.125", + "31.171.154.117", + "31.171.154.123", + "31.171.154.126" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana403", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.74", + "31.171.154.78", + "31.171.154.77", + "31.171.154.72", + "31.171.154.70", + "31.171.154.76", + "31.171.154.73" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers403", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.10", + "176.125.228.8", + "176.125.228.9", + "176.125.228.6", + "176.125.228.3", + "176.125.228.4", + "176.125.228.5", + "176.125.228.12" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers404", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.16", + "176.125.228.23", + "176.125.228.20", + "176.125.228.22", + "176.125.228.21", + "176.125.228.17", + "176.125.228.24", + "176.125.228.18" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers405", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.35", + "176.125.228.32", + "176.125.228.38", + "176.125.228.37", + "176.125.228.33", + "176.125.228.31", + "176.125.228.28", + "176.125.228.39" + ] + }, + { + "vpn": "openvpn", + "region": "Andorra", + "server_name": "andorra406", + "hostname": "ad.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.217.167", + "173.239.217.177", + "173.239.217.132", + "173.239.217.175", + "173.239.217.135", + "173.239.217.141", + "173.239.217.131", + "173.239.217.134", + "173.239.217.130" + ] + }, + { + "vpn": "openvpn", + "region": "Andorra", + "server_name": "andorra407", + "hostname": "ad.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.217.162", + "173.239.217.161", + "173.239.217.146", + "173.239.217.166", + "173.239.217.148", + "173.239.217.154", + "173.239.217.152", + "173.239.217.164", + "173.239.217.157", + "173.239.217.160", + "173.239.217.155" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires408", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.50", + "146.70.38.60", + "146.70.38.53", + "146.70.38.56", + "146.70.38.52", + "146.70.38.44", + "146.70.38.51", + "146.70.38.59" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires409", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.86", + "146.70.38.77", + "146.70.38.82" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires410", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.97", + "146.70.38.94", + "146.70.38.89", + "146.70.38.93", + "146.70.38.95", + "146.70.38.100", + "146.70.38.92", + "146.70.38.99" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires411", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.112", + "146.70.38.113", + "146.70.38.102", + "146.70.38.107", + "146.70.38.111", + "146.70.38.103", + "146.70.38.114" + ] + }, + { + "vpn": "openvpn", + "region": "Armenia", + "server_name": "armenia403", + "hostname": "yerevan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.160.11", + "185.253.160.3", + "185.253.160.13", + "185.253.160.12", + "185.253.160.7", + "185.253.160.4", + "185.253.160.5" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Streaming Optimized", + "server_name": "melbourne434", + "hostname": "au-australia-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.192", + "173.239.203.213", + "173.239.203.209", + "173.239.203.197", + "173.239.203.218", + "173.239.203.194", + "173.239.203.216", + "173.239.203.191" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna401", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.138", + "156.146.60.133", + "156.146.60.139", + "156.146.60.140", + "156.146.60.136", + "156.146.60.134", + "156.146.60.131" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna402", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.26", + "156.146.60.22", + "156.146.60.30", + "156.146.60.4", + "156.146.60.2", + "156.146.60.9", + "156.146.60.18", + "156.146.60.21" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna403", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.84", + "156.146.60.66", + "156.146.60.76", + "156.146.60.73", + "156.146.60.90", + "156.146.60.65", + "156.146.60.85", + "156.146.60.80", + "156.146.60.74" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas401", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.90", + "95.181.238.96", + "95.181.238.91", + "95.181.238.97", + "95.181.238.88", + "95.181.238.98" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas402", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.109", + "95.181.238.107", + "95.181.238.103", + "95.181.238.105", + "95.181.238.108", + "95.181.238.101", + "95.181.238.100" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas407", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.61", + "95.181.238.53", + "95.181.238.60", + "95.181.238.58", + "95.181.238.62", + "95.181.238.51" + ] + }, + { + "vpn": "openvpn", + "region": "Bangladesh", + "server_name": "bangladesh404", + "hostname": "bangladesh.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "64.64.112.140", + "64.64.112.150", + "64.64.112.157", + "64.64.112.154", + "64.64.112.134", + "64.64.112.145", + "64.64.112.147", + "64.64.112.138", + "64.64.112.139", + "64.64.112.131" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels419", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.218.58", + "181.214.218.54", + "181.214.218.49", + "181.214.218.47", + "181.214.218.50" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels420", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.218.76", + "181.214.218.75", + "181.214.218.70", + "181.214.218.64", + "181.214.218.71", + "181.214.218.66", + "181.214.218.68", + "181.214.218.74", + "181.214.218.72" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels423", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.27.43", + "149.22.90.236", + "149.22.90.224", + "154.47.27.40", + "149.22.90.235", + "149.22.90.243", + "149.22.90.231", + "149.22.90.240", + "149.22.90.234", + "149.22.90.229" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels424", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.90.211", + "149.22.90.213", + "149.22.90.216", + "149.22.90.199", + "149.22.90.220", + "149.22.90.218" + ] + }, + { + "vpn": "openvpn", + "region": "Bolivia", + "server_name": "bolivia401", + "hostname": "bo-bolivia-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.91.13", + "84.247.91.16", + "84.247.91.24", + "84.247.91.9", + "84.247.91.28", + "84.247.91.12", + "84.247.91.7", + "84.247.91.20", + "84.247.91.26" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia and Herzegovina", + "server_name": "sarajevo403", + "hostname": "ba.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.36.138", + "98.159.36.130", + "98.159.36.129", + "98.159.36.139", + "98.159.36.134", + "98.159.36.136", + "98.159.36.132", + "98.159.36.137" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia and Herzegovina", + "server_name": "sarajevo404", + "hostname": "ba.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.36.142", + "98.159.36.143", + "98.159.36.150", + "98.159.36.153", + "98.159.36.149", + "98.159.36.144", + "98.159.36.151", + "98.159.36.145" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo401", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.253", + "188.241.177.252", + "188.241.177.243", + "188.241.177.249", + "188.241.177.246", + "188.241.177.254" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo402", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.56", + "188.241.177.62", + "188.241.177.53", + "188.241.177.59", + "188.241.177.52", + "188.241.177.51", + "188.241.177.61" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo404", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.180", + "188.241.177.110", + "188.241.177.109", + "188.241.177.181", + "188.241.177.108", + "188.241.177.107", + "188.241.177.178", + "188.241.177.182" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo407", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.98.43", + "146.70.98.41", + "146.70.98.39", + "146.70.98.42", + "146.70.98.46" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "server_name": "sofia405", + "hostname": "sofia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "94.156.14.19", + "94.156.14.27", + "94.156.14.11", + "94.156.14.9", + "94.156.14.2", + "94.156.14.7", + "94.156.14.16", + "94.156.14.21", + "94.156.14.28", + "94.156.14.14" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal424", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.105.32", + "84.247.105.36" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal431", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "140.228.24.106", + "140.228.24.224", + "140.228.24.91", + "140.228.24.112" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal433", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.120.205.30", + "37.120.205.15", + "37.120.205.24", + "37.120.205.17", + "37.120.205.26", + "37.120.205.27", + "37.120.205.21", + "37.120.205.14", + "37.120.205.19", + "37.120.205.16" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal435", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.193.6.153", + "91.193.6.135", + "91.193.6.144", + "91.193.6.150", + "91.193.6.148" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal436", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.193.6.163", + "91.193.6.171", + "91.193.6.183", + "91.193.6.186", + "91.193.6.167", + "91.193.6.175", + "91.193.6.174", + "91.193.6.169", + "91.193.6.170" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario415", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.36.49.216", + "149.36.49.231", + "149.36.49.228", + "149.36.49.224", + "149.36.49.215", + "149.36.49.236", + "149.36.49.235", + "149.36.49.233", + "149.36.49.227", + "149.36.49.226", + "149.36.49.232" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario418", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.50.218.32", + "149.50.218.31", + "149.50.218.52", + "149.50.218.38", + "149.50.218.29", + "149.50.218.34", + "149.50.218.51", + "149.50.218.47", + "149.50.218.45", + "149.50.218.40", + "149.50.218.37" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario443", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.50.218.75", + "149.50.218.71", + "149.50.218.74", + "149.50.218.60", + "149.50.218.78", + "149.50.218.56", + "149.50.218.72", + "149.50.218.57", + "149.50.218.64", + "149.50.218.68" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario Streaming Optimized", + "server_name": "ontario416", + "hostname": "ca-ontario-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.214.118", + "178.249.214.106", + "178.249.214.116", + "178.249.214.123", + "178.249.214.107", + "178.249.214.101", + "178.249.214.110", + "178.249.214.108", + "178.249.214.100" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto401", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.36.49.159", + "149.36.49.158" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto415", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.37", + "191.96.36.43" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto416", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.66", + "191.96.36.65", + "191.96.36.70", + "191.96.36.68" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto420", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.190", + "191.96.36.188", + "191.96.36.202", + "191.96.36.186" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto422", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.9", + "179.61.197.7", + "179.61.197.11", + "179.61.197.32", + "179.61.197.10", + "179.61.197.14", + "179.61.197.16", + "179.61.197.6" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto423", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.56", + "179.61.197.57", + "179.61.197.39", + "179.61.197.40", + "179.61.197.34", + "179.61.197.59" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto424", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.73", + "179.61.197.87" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto426", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.181", + "179.61.197.168" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver422", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.153.78", + "181.214.153.83", + "181.214.153.73", + "181.214.153.93", + "181.214.153.74", + "181.214.153.97", + "181.214.153.72", + "181.214.153.75" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver423", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.153.128", + "181.214.153.123", + "181.214.153.129", + "181.214.153.110", + "181.214.153.117", + "181.214.153.104" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver432", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.137", + "181.41.202.142", + "181.41.202.153", + "181.41.202.147", + "181.41.202.136", + "181.41.202.159", + "181.41.202.145" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver433", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.165", + "181.41.202.183", + "181.41.202.175", + "181.41.202.160", + "181.41.202.173", + "181.41.202.168" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver434", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.202", + "181.41.202.219", + "181.41.202.218", + "181.41.202.209", + "181.41.202.203", + "181.41.202.216", + "181.41.202.193" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "server_name": "cambodia401", + "hostname": "cambodia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.104", + "188.215.235.107", + "188.215.235.102", + "188.215.235.101", + "188.215.235.109", + "188.215.235.110", + "188.215.235.106", + "188.215.235.108", + "188.215.235.100" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "server_name": "cambodia402", + "hostname": "cambodia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.116", + "188.215.235.122", + "188.215.235.118", + "188.215.235.115", + "188.215.235.126", + "188.215.235.124", + "188.215.235.119" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "server_name": "chile401", + "hostname": "santiago.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.11.25", + "146.70.11.23", + "146.70.11.27", + "146.70.11.19", + "146.70.11.18", + "146.70.11.24" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "server_name": "chile402", + "hostname": "santiago.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.11.38", + "146.70.11.32", + "146.70.11.39", + "146.70.11.37", + "146.70.11.40", + "146.70.11.30", + "146.70.11.35" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china403", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.58", + "188.241.80.57", + "188.241.80.65", + "188.241.80.66", + "188.241.80.69", + "188.241.80.59", + "188.241.80.68", + "188.241.80.67" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china406", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.31", + "188.241.80.41", + "188.241.80.37", + "188.241.80.40", + "188.241.80.32", + "188.241.80.30", + "188.241.80.33", + "188.241.80.34" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china407", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.52", + "188.241.80.44", + "188.241.80.51", + "188.241.80.49", + "188.241.80.46", + "188.241.80.55", + "188.241.80.50" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "server_name": "colombia403", + "hostname": "bogota.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.16.101", + "154.47.16.106", + "154.47.16.102", + "154.47.16.99", + "154.47.16.104", + "154.47.16.109", + "154.47.16.122", + "154.47.16.120", + "154.47.16.108", + "154.47.16.105" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "server_name": "colombia404", + "hostname": "bogota.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.16.206", + "154.47.16.207", + "154.47.16.201", + "154.47.16.216", + "154.47.16.219", + "154.47.16.209", + "154.47.16.204", + "154.47.16.208", + "154.47.16.217", + "154.47.16.195", + "154.47.16.200" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica401", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.18", + "146.70.10.24", + "146.70.10.23", + "146.70.10.22", + "146.70.10.21", + "146.70.10.20", + "146.70.10.25" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica402", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.33", + "146.70.10.35", + "146.70.10.31", + "146.70.10.34", + "146.70.10.38", + "146.70.10.36" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica403", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.62", + "146.70.10.61", + "146.70.10.55", + "146.70.10.64", + "146.70.10.54" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "server_name": "zagreb403", + "hostname": "zagreb.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.29.154", + "154.47.29.139", + "154.47.29.147", + "154.47.29.146", + "154.47.29.144", + "154.47.29.130", + "154.47.29.134", + "154.47.29.153", + "154.47.29.135", + "154.47.29.136" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "server_name": "zagreb404", + "hostname": "zagreb.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.247.237", + "149.102.247.236", + "149.102.247.234", + "149.102.247.245", + "149.102.247.229", + "149.102.247.246", + "149.102.247.235", + "149.102.247.250", + "149.102.247.248" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "server_name": "cyprus403", + "hostname": "cyprus.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.162.14", + "185.253.162.9", + "185.253.162.4", + "185.253.162.7", + "185.253.162.12", + "185.253.162.11", + "185.253.162.5", + "185.253.162.3", + "185.253.162.8" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "server_name": "cyprus404", + "hostname": "cyprus.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.162.17", + "185.253.162.24", + "185.253.162.23", + "185.253.162.22", + "185.253.162.26", + "185.253.162.19", + "185.253.162.25", + "185.253.162.27" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague401", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.84", + "212.102.38.213", + "212.102.39.95", + "212.102.39.78", + "212.102.39.91", + "212.102.39.98", + "212.102.38.214", + "212.102.38.217", + "212.102.39.75", + "212.102.39.77" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague402", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.140", + "212.102.39.143", + "212.102.39.148", + "212.102.39.138", + "212.102.39.151", + "212.102.39.147", + "212.102.39.139", + "212.102.39.146", + "212.102.39.159", + "212.102.39.158", + "212.102.39.157" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague403", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.204", + "212.102.39.207", + "212.102.39.212", + "212.102.39.205", + "212.102.39.215", + "212.102.39.214", + "212.102.39.200", + "212.102.39.203", + "212.102.39.209", + "212.102.39.219", + "212.102.39.69" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin416", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.10", + "191.101.157.28", + "191.101.157.4", + "191.101.157.6", + "191.101.157.19", + "191.101.157.24", + "191.101.157.5", + "191.101.157.7", + "191.101.157.3" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin417", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.59", + "191.101.157.33", + "191.101.157.56", + "191.101.157.43", + "191.101.157.46", + "191.101.157.44", + "191.101.157.49", + "191.101.157.35", + "191.101.157.38", + "191.101.157.51" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin418", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.86", + "191.101.157.67", + "191.101.157.82", + "191.101.157.77", + "191.101.157.73", + "191.101.157.80", + "191.101.157.65", + "191.101.157.76" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin419", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.105", + "191.101.157.92", + "191.101.157.115", + "191.101.157.100" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt402", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.181.170.228", + "212.102.57.206", + "212.102.57.204", + "195.181.170.232", + "195.181.170.231" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt405", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.57.11", + "212.102.57.2", + "212.102.57.19", + "212.102.57.7", + "212.102.57.26", + "212.102.57.10", + "212.102.57.27", + "212.102.57.31", + "212.102.57.14", + "212.102.57.12", + "212.102.57.25" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt406", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.57.80", + "212.102.57.95", + "212.102.57.77", + "212.102.57.75", + "212.102.57.90", + "212.102.57.88" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt413", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "216.24.213.37", + "216.24.213.13" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt415", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.88.97.237", + "45.88.97.223", + "45.88.97.228", + "45.88.97.241" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "berlin423", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.229", + "191.101.157.239", + "191.101.157.234", + "191.101.157.241", + "191.101.157.226", + "191.101.157.252", + "191.101.157.235", + "191.101.157.242", + "191.101.157.253" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "frankfurt408", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.18.69", + "138.199.18.79", + "138.199.18.88", + "138.199.18.83", + "138.199.18.68", + "138.199.18.82", + "138.199.18.73", + "138.199.18.78", + "138.199.18.70", + "138.199.18.66" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "frankfurt419", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "216.24.216.215", + "216.24.216.210", + "216.24.216.182", + "216.24.216.198", + "216.24.216.200", + "216.24.216.206", + "216.24.216.213", + "216.24.216.189", + "216.24.216.199", + "216.24.216.176", + "216.24.216.203" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen402", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.67", + "188.126.94.84", + "188.126.94.69", + "188.126.94.73", + "188.126.94.79", + "188.126.94.81", + "188.126.94.85" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen403", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.118", + "188.126.94.102", + "188.126.94.104", + "188.126.94.105" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen404", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.186", + "188.126.94.179", + "188.126.94.169", + "188.126.94.180", + "188.126.94.166", + "188.126.94.190", + "188.126.94.189", + "188.126.94.187", + "188.126.94.177" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen408", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.106.40", + "46.246.106.35", + "46.246.106.42", + "46.246.106.38", + "46.246.106.43", + "46.246.106.37", + "46.246.106.41" + ] + }, + { + "vpn": "openvpn", + "region": "DK Streaming Optimized", + "server_name": "copenhagen405", + "hostname": "denmark-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.61", + "188.126.94.42", + "188.126.94.36", + "188.126.94.62", + "188.126.94.40", + "188.126.94.56", + "188.126.94.58", + "188.126.94.59", + "188.126.94.39", + "188.126.94.60" + ] + }, + { + "vpn": "openvpn", + "region": "DK Streaming Optimized", + "server_name": "copenhagen410", + "hostname": "denmark-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.109.146", + "149.88.109.138", + "149.88.109.144", + "149.88.109.150", + "149.88.109.151", + "149.88.109.157", + "149.88.109.145", + "149.88.109.139", + "149.88.109.155" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid401", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.67", + "212.102.49.76", + "195.181.167.36", + "195.181.167.41", + "212.102.49.86", + "195.181.167.34", + "195.181.167.37", + "212.102.49.77", + "212.102.49.70", + "212.102.49.88" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid402", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.9", + "212.102.49.24", + "212.102.49.6", + "212.102.49.16", + "212.102.49.3", + "212.102.49.23", + "212.102.49.31", + "212.102.49.22", + "212.102.49.27" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid403", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.186", + "212.102.49.203", + "212.102.49.195", + "212.102.49.212", + "212.102.49.215", + "212.102.49.192", + "212.102.49.201", + "212.102.49.211", + "212.102.49.205", + "212.102.49.217" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia401", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.132", + "196.245.54.135", + "196.245.54.143", + "196.245.54.142", + "196.245.54.134", + "196.245.54.131", + "196.245.54.133", + "196.245.54.137", + "196.245.54.138" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia402", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.154", + "196.245.54.151", + "196.245.54.150", + "196.245.54.158", + "196.245.54.153", + "196.245.54.148", + "196.245.54.155" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia403", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.168", + "196.245.54.171", + "196.245.54.170", + "196.245.54.172", + "196.245.54.161", + "196.245.54.165", + "196.245.54.166", + "196.245.54.169" + ] + }, + { + "vpn": "openvpn", + "region": "Ecuador", + "server_name": "ecuador401", + "hostname": "ec-ecuador-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.93.3", + "84.247.93.19", + "84.247.93.5", + "84.247.93.8", + "84.247.93.18", + "84.247.93.27", + "84.247.93.25", + "84.247.93.6" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "server_name": "cairo401", + "hostname": "egypt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.102", + "188.214.122.99", + "188.214.122.106", + "188.214.122.107", + "188.214.122.108", + "188.214.122.105", + "188.214.122.103", + "188.214.122.104" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "server_name": "cairo402", + "hostname": "egypt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.124", + "188.214.122.115", + "188.214.122.126", + "188.214.122.118", + "188.214.122.125", + "188.214.122.116" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn402", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.70", + "165.231.182.76", + "165.231.182.77", + "165.231.182.72", + "165.231.182.71" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn405", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.7", + "165.231.182.12", + "165.231.182.3", + "165.231.182.14", + "165.231.182.8", + "165.231.182.11", + "165.231.182.13", + "165.231.182.9", + "165.231.182.5" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn406", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.26", + "165.231.182.24", + "165.231.182.23", + "165.231.182.22" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn407", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.33", + "165.231.182.36" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn408", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.53", + "165.231.182.54", + "165.231.182.49", + "165.231.182.43", + "165.231.182.45", + "165.231.182.44" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn410", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.125", + "165.231.182.126", + "165.231.182.123" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki402", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.39", + "188.126.89.56", + "188.126.89.48", + "188.126.89.49", + "188.126.89.50", + "188.126.89.35", + "188.126.89.54", + "188.126.89.36", + "188.126.89.42", + "188.126.89.46" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki403", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.139", + "188.126.89.148", + "188.126.89.157", + "188.126.89.150", + "188.126.89.144", + "188.126.89.133", + "188.126.89.153", + "188.126.89.145", + "188.126.89.138" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki404", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.89", + "188.126.89.91", + "188.126.89.79", + "188.126.89.67", + "188.126.89.88", + "188.126.89.87", + "188.126.89.86", + "188.126.89.73", + "188.126.89.85" + ] + }, + { + "vpn": "openvpn", + "region": "FI Streaming Optimized", + "server_name": "helsinki401", + "hostname": "fi-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.7", + "188.126.89.6", + "188.126.89.9", + "188.126.89.12", + "188.126.89.16", + "188.126.89.29", + "188.126.89.27", + "188.126.89.17", + "188.126.89.18" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris402", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.63.139", + "156.146.63.143", + "156.146.63.147", + "156.146.63.135", + "156.146.63.150", + "156.146.63.160", + "156.146.63.141" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris410", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.217.38", + "191.101.217.12", + "191.101.217.32", + "191.101.217.40" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris412", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.31.66", + "191.101.31.53", + "191.101.31.55", + "191.101.31.47", + "191.101.31.41", + "191.101.31.68", + "191.101.31.49", + "191.101.31.65", + "191.101.31.50", + "191.101.31.61", + "191.101.31.42" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris415", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.63.204", + "156.146.63.210", + "156.146.63.196", + "156.146.63.206", + "156.146.63.188", + "156.146.63.213", + "156.146.63.207", + "156.146.63.187", + "156.146.63.202", + "156.146.63.186" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "server_name": "georgia403", + "hostname": "georgia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.236.13", + "95.181.236.12", + "95.181.236.4", + "95.181.236.9", + "95.181.236.11", + "95.181.236.5", + "95.181.236.10", + "95.181.236.3", + "95.181.236.7" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "server_name": "georgia404", + "hostname": "georgia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.236.25", + "95.181.236.16", + "95.181.236.19", + "95.181.236.18", + "95.181.236.17", + "95.181.236.24", + "95.181.236.20", + "95.181.236.15", + "95.181.236.22" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens401", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.6.76", + "195.146.6.85", + "195.146.6.78", + "195.146.6.71", + "195.146.6.73", + "195.146.6.80", + "195.146.6.83", + "195.146.6.75", + "195.146.6.72" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens402", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.6.64", + "195.146.6.60", + "195.146.6.54", + "195.146.6.59", + "195.146.6.58", + "195.146.6.63", + "195.146.6.52", + "195.146.6.56" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens403", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.4.74", + "195.146.4.85", + "195.146.4.75", + "195.146.4.77", + "195.146.4.81", + "195.146.4.78", + "195.146.4.76", + "195.146.4.72" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland403", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.143", + "91.90.120.135", + "91.90.120.139", + "91.90.120.136", + "91.90.120.137", + "91.90.120.144", + "91.90.120.138" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland404", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.151", + "91.90.120.152", + "91.90.120.147", + "91.90.120.149", + "91.90.120.159", + "91.90.120.150", + "91.90.120.153", + "91.90.120.155" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland405", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.168", + "91.90.120.173", + "91.90.120.162", + "91.90.120.163", + "91.90.120.166", + "91.90.120.171", + "91.90.120.164" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland407", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.201", + "91.90.120.198", + "91.90.120.196", + "91.90.120.202", + "91.90.120.200" + ] + }, + { + "vpn": "openvpn", + "region": "Guatemala", + "server_name": "guatemala401", + "hostname": "gt-guatemala-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.95.24", + "84.247.95.11", + "84.247.95.6", + "84.247.95.16", + "84.247.95.7", + "84.247.95.10", + "84.247.95.14", + "84.247.95.3" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "server_name": "hongkong402", + "hostname": "hk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.107.104.234", + "86.107.104.229", + "86.107.104.233", + "86.107.104.231", + "86.107.104.236", + "86.107.104.232", + "86.107.104.235", + "86.107.104.228" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "server_name": "hongkong404", + "hostname": "hk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.107.104.250", + "86.107.104.246", + "86.107.104.244", + "86.107.104.251", + "86.107.104.248", + "86.107.104.242", + "86.107.104.247", + "86.107.104.243" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest401", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.192.219", + "217.138.192.220", + "217.138.192.222", + "217.138.192.218", + "217.138.192.221" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest402", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.106.74.124", + "86.106.74.125", + "86.106.74.114", + "86.106.74.117", + "86.106.74.118", + "86.106.74.126", + "86.106.74.119", + "86.106.74.120", + "86.106.74.122" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest405", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.94.190.203", + "185.94.190.195", + "185.94.190.201", + "185.94.190.204", + "185.94.190.198", + "185.94.190.200", + "185.94.190.206", + "185.94.190.202" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano402", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.29", + "156.146.41.14", + "156.146.41.26", + "156.146.41.7", + "156.146.41.22", + "156.146.41.27", + "156.146.41.21", + "156.146.41.3" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano403", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.78", + "156.146.41.70", + "156.146.41.75", + "156.146.41.66", + "156.146.41.67", + "156.146.41.94", + "156.146.41.77", + "156.146.41.80", + "156.146.41.81", + "156.146.41.68" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano404", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.198", + "156.146.41.209", + "156.146.41.222", + "156.146.41.219", + "156.146.41.215", + "156.146.41.211", + "156.146.41.207", + "156.146.41.194", + "156.146.41.218", + "156.146.41.201" + ] + }, + { + "vpn": "openvpn", + "region": "IT Streaming Optimized", + "server_name": "milano405", + "hostname": "italy-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.54.47", + "138.199.54.39", + "138.199.54.44", + "138.199.54.46", + "138.199.54.34", + "138.199.54.38", + "138.199.54.36", + "138.199.54.48", + "138.199.54.42" + ] + }, + { + "vpn": "openvpn", + "region": "IT Streaming Optimized", + "server_name": "milano406", + "hostname": "italy-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.54.55", + "138.199.54.50", + "138.199.54.56", + "138.199.54.61", + "138.199.54.52", + "138.199.54.59", + "138.199.54.63", + "138.199.54.54" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "server_name": "reykjavik401", + "hostname": "is.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.193.35", + "45.133.193.44", + "45.133.193.37", + "45.133.193.36", + "45.133.193.46", + "45.133.193.38", + "45.133.193.42", + "45.133.193.45", + "45.133.193.40", + "45.133.193.43" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "server_name": "reykjavik402", + "hostname": "is.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.193.87", + "45.133.193.88", + "45.133.193.89", + "45.133.193.84", + "45.133.193.83", + "45.133.193.93", + "45.133.193.94" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "server_name": "mumbai414", + "hostname": "in.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "23.26.221.5", + "23.26.221.28", + "23.26.221.31", + "23.26.221.20", + "23.26.221.16", + "23.26.221.22", + "23.26.221.26", + "23.26.221.19", + "23.26.221.29", + "23.26.221.18" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "server_name": "indonesia403", + "hostname": "jakarta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "192.142.226.152", + "192.142.226.154", + "192.142.226.143", + "192.142.226.145", + "192.142.226.151", + "192.142.226.149", + "192.142.226.150", + "192.142.226.144" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin404", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.130.23", + "146.70.130.21", + "146.70.130.26", + "146.70.130.19", + "146.70.130.25", + "146.70.130.29", + "146.70.130.22" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin405", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.4", + "193.56.252.3" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin406", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.213", + "193.56.252.212", + "193.56.252.219", + "193.56.252.218", + "193.56.252.220", + "193.56.252.214" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin408", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.243", + "193.56.252.245", + "193.56.252.248", + "193.56.252.244", + "193.56.252.246", + "193.56.252.249" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin421", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.34.242.146", + "149.34.242.130", + "149.34.242.139", + "149.34.242.147", + "149.34.242.133" + ] + }, + { + "vpn": "openvpn", + "region": "Isle of Man", + "server_name": "douglas403", + "hostname": "man.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.124.5", + "91.90.124.19", + "91.90.124.6", + "91.90.124.13", + "91.90.124.10", + "91.90.124.14", + "91.90.124.8", + "91.90.124.17", + "91.90.124.7" + ] + }, + { + "vpn": "openvpn", + "region": "Isle of Man", + "server_name": "douglas404", + "hostname": "man.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.124.26", + "91.90.124.24", + "91.90.124.32", + "91.90.124.31", + "91.90.124.21", + "91.90.124.30", + "91.90.124.28", + "91.90.124.22" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "server_name": "jerusalem414", + "hostname": "israel.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.26.165", + "149.88.26.159", + "149.88.26.136", + "149.88.26.162", + "149.88.26.140", + "149.88.26.161", + "149.88.26.173", + "149.88.26.148", + "149.88.26.176", + "149.88.26.152", + "149.88.26.146" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "server_name": "jerusalem415", + "hostname": "israel.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.26.184", + "149.88.26.216", + "149.88.26.215", + "149.88.26.201", + "149.88.26.200", + "149.88.26.183", + "149.88.26.226", + "149.88.26.220", + "149.88.26.192", + "149.88.26.204" + ] + }, + { + "vpn": "openvpn", + "region": "JP Streaming Optimized", + "server_name": "tokyo401", + "hostname": "japan-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.133", + "149.22.87.146", + "149.22.87.132", + "149.22.87.141", + "149.22.87.144", + "149.22.87.138", + "149.22.87.134", + "149.22.87.152", + "149.22.87.151", + "149.22.87.137" + ] + }, + { + "vpn": "openvpn", + "region": "JP Streaming Optimized", + "server_name": "tokyo418", + "hostname": "japan-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.103.74", + "149.88.103.90", + "149.88.103.93", + "149.88.103.76", + "149.88.103.87", + "149.88.103.91", + "149.88.103.80", + "149.88.103.94", + "149.88.103.79", + "149.88.103.89" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo402", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.169", + "149.22.87.181", + "149.22.87.185", + "149.22.87.173", + "149.22.87.184", + "149.22.87.176", + "149.22.87.175", + "149.22.87.178", + "149.22.87.172" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo403", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.22", + "149.22.87.20", + "149.22.87.48", + "149.22.87.51" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo405", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.121", + "149.22.87.73", + "149.22.87.63", + "149.22.87.64", + "149.22.87.85", + "149.22.87.112", + "149.22.87.67", + "149.22.87.69" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo410", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.39.3", + "138.199.39.4", + "138.199.39.8", + "138.199.39.13", + "138.199.39.22", + "138.199.39.10", + "138.199.39.29", + "138.199.39.15", + "138.199.39.24", + "138.199.39.20" + ] + }, + { + "vpn": "openvpn", + "region": "Kazakhstan", + "server_name": "kazakhstan402", + "hostname": "kazakhstan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "62.133.47.15", + "62.133.47.24", + "62.133.47.20", + "62.133.47.26", + "62.133.47.19", + "62.133.47.23", + "62.133.47.22" + ] + }, + { + "vpn": "openvpn", + "region": "Kazakhstan", + "server_name": "kazakhstan403", + "hostname": "kazakhstan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "62.133.47.9", + "62.133.47.4", + "62.133.47.12", + "62.133.47.3", + "62.133.47.10", + "62.133.47.6", + "62.133.47.11" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga405", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.85", + "196.196.53.91", + "196.196.53.92", + "196.196.53.89", + "196.196.53.83", + "196.196.53.87" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga406", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.109", + "196.196.53.99", + "196.196.53.108", + "196.196.53.102", + "196.196.53.106" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga407", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.58", + "196.196.53.62", + "196.196.53.61", + "196.196.53.57" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga408", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.132", + "196.196.53.137", + "196.196.53.136", + "196.196.53.133", + "196.196.53.139", + "196.196.53.135", + "196.196.53.141", + "196.196.53.142" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "server_name": "liechtenstein401", + "hostname": "liechtenstein.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.122.31", + "91.90.122.30", + "91.90.122.23", + "91.90.122.29", + "91.90.122.24", + "91.90.122.22", + "91.90.122.28", + "91.90.122.21" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "server_name": "liechtenstein403", + "hostname": "liechtenstein.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.122.7", + "91.90.122.8", + "91.90.122.13", + "91.90.122.17", + "91.90.122.4", + "91.90.122.9", + "91.90.122.10", + "91.90.122.12" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius401", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.50", + "194.32.122.58", + "194.32.122.59", + "194.32.122.47", + "194.32.122.48", + "194.32.122.52", + "194.32.122.49" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius402", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.41", + "194.32.122.40" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius403", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.63", + "194.32.122.72", + "194.32.122.64", + "194.32.122.62", + "194.32.122.61", + "194.32.122.70", + "194.32.122.65", + "194.32.122.69", + "194.32.122.73", + "194.32.122.68" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius404", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.81", + "194.32.122.84", + "194.32.122.80", + "194.32.122.77", + "194.32.122.85", + "194.32.122.79", + "194.32.122.83" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "server_name": "luxembourg410", + "hostname": "lu.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.113.213", + "37.46.113.208", + "37.46.113.194", + "37.46.113.207", + "37.46.113.216", + "37.46.113.205", + "37.46.113.197", + "37.46.113.192", + "37.46.113.215", + "37.46.113.202", + "37.46.113.220" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "server_name": "luxembourg412", + "hostname": "lu.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.113.158", + "37.46.113.167", + "37.46.113.166", + "37.46.113.169", + "37.46.113.154", + "37.46.113.159", + "37.46.113.168", + "37.46.113.165", + "37.46.113.174" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "server_name": "macau403", + "hostname": "macau.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.252.92.3", + "84.252.92.10", + "84.252.92.5", + "84.252.92.6", + "84.252.92.11", + "84.252.92.8", + "84.252.92.7" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "server_name": "macau404", + "hostname": "macau.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.252.92.18", + "84.252.92.21", + "84.252.92.19", + "84.252.92.27", + "84.252.92.26", + "84.252.92.17", + "84.252.92.20" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "server_name": "malaysia401", + "hostname": "kualalumpur.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.15.33", + "146.70.15.26", + "146.70.15.31", + "146.70.15.25", + "146.70.15.28", + "146.70.15.32", + "146.70.15.18", + "146.70.15.29", + "146.70.15.22" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "server_name": "malaysia402", + "hostname": "kualalumpur.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.15.36", + "146.70.15.45", + "146.70.15.43", + "146.70.15.40", + "146.70.15.42", + "146.70.15.46" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta403", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.11", + "176.125.230.3", + "176.125.230.5", + "176.125.230.8", + "176.125.230.9", + "176.125.230.4", + "176.125.230.7", + "176.125.230.15", + "176.125.230.6" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta404", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.24", + "176.125.230.20", + "176.125.230.18", + "176.125.230.22", + "176.125.230.25", + "176.125.230.17", + "176.125.230.19", + "176.125.230.23", + "176.125.230.21", + "176.125.230.28" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta405", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.31", + "176.125.230.34", + "176.125.230.38", + "176.125.230.40", + "176.125.230.39", + "176.125.230.37", + "176.125.230.36" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico403", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.15", + "77.81.142.11", + "77.81.142.5", + "77.81.142.14", + "77.81.142.4" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico408", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.85", + "77.81.142.84", + "77.81.142.80", + "77.81.142.81", + "77.81.142.88", + "77.81.142.83" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico409", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.100", + "77.81.142.104", + "77.81.142.99", + "77.81.142.93", + "77.81.142.92", + "77.81.142.102", + "77.81.142.103", + "77.81.142.98", + "77.81.142.101" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico413", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.246", + "77.81.142.247", + "77.81.142.243" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "server_name": "chisinau401", + "hostname": "md.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.175.129.44", + "178.175.129.37", + "178.175.129.45", + "178.175.129.41", + "178.175.129.36", + "178.175.129.42", + "178.175.129.35", + "178.175.129.39", + "178.175.129.46" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "server_name": "chisinau402", + "hostname": "md.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.175.128.44", + "178.175.128.42", + "178.175.128.39", + "178.175.128.43", + "178.175.128.45", + "178.175.128.35", + "178.175.128.38", + "178.175.128.41", + "178.175.128.37" + ] + }, + { + "vpn": "openvpn", + "region": "Monaco", + "server_name": "monaco403", + "hostname": "monaco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.233.9", + "95.181.233.4", + "95.181.233.6", + "95.181.233.7", + "95.181.233.10", + "95.181.233.13" + ] + }, + { + "vpn": "openvpn", + "region": "Monaco", + "server_name": "monaco404", + "hostname": "monaco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.233.17", + "95.181.233.21", + "95.181.233.16", + "95.181.233.15", + "95.181.233.25", + "95.181.233.18", + "95.181.233.23", + "95.181.233.22" + ] + }, + { + "vpn": "openvpn", + "region": "Mongolia", + "server_name": "mongolia405", + "hostname": "mongolia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "192.142.227.19", + "192.142.227.17", + "192.142.227.21", + "192.142.227.23", + "192.142.227.15", + "192.142.227.18", + "192.142.227.20", + "192.142.227.14", + "192.142.227.24" + ] + }, + { + "vpn": "openvpn", + "region": "Montenegro", + "server_name": "montenegro403", + "hostname": "montenegro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.229.6", + "176.125.229.15", + "176.125.229.13", + "176.125.229.12", + "176.125.229.11", + "176.125.229.4", + "176.125.229.3", + "176.125.229.14" + ] + }, + { + "vpn": "openvpn", + "region": "Montenegro", + "server_name": "montenegro404", + "hostname": "montenegro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.229.21", + "176.125.229.20", + "176.125.229.27", + "176.125.229.18", + "176.125.229.24", + "176.125.229.26", + "176.125.229.22", + "176.125.229.19", + "176.125.229.25" + ] + }, + { + "vpn": "openvpn", + "region": "Morocco", + "server_name": "morocco403", + "hostname": "morocco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.232.8", + "95.181.232.6", + "95.181.232.3", + "95.181.232.9", + "95.181.232.10", + "95.181.232.13", + "95.181.232.5" + ] + }, + { + "vpn": "openvpn", + "region": "Morocco", + "server_name": "morocco404", + "hostname": "morocco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.232.39", + "95.181.232.37", + "95.181.232.36", + "95.181.232.35", + "95.181.232.33", + "95.181.232.32", + "95.181.232.29" + ] + }, + { + "vpn": "openvpn", + "region": "NL Netherlands Streaming Optimized", + "server_name": "amsterdam404", + "hostname": "nl-netherlands-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.173", + "143.244.41.165", + "143.244.41.159", + "143.244.41.160", + "143.244.41.158", + "143.244.41.162", + "143.244.41.182", + "143.244.41.175", + "143.244.41.167", + "143.244.41.166" + ] + }, + { + "vpn": "openvpn", + "region": "Nepal", + "server_name": "kathmandu401", + "hostname": "np-nepal-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.97.9", + "84.247.97.12", + "84.247.97.16", + "84.247.97.7", + "84.247.97.14", + "84.247.97.8", + "84.247.97.15", + "84.247.97.13", + "84.247.97.5" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam403", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.155", + "143.244.41.146", + "143.244.41.154", + "143.244.41.132", + "143.244.41.137", + "143.244.41.131", + "143.244.41.152", + "143.244.41.139" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam412", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.208", + "143.244.41.218", + "143.244.41.213", + "143.244.41.193" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam429", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.78.54.173", + "195.78.54.206", + "195.78.54.207", + "195.78.54.161", + "195.78.54.185", + "195.78.54.180", + "195.78.54.192", + "195.78.54.171", + "195.78.54.205", + "195.78.54.165", + "195.78.54.193" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam441", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.35.104", + "212.102.35.100", + "212.102.35.107", + "212.102.35.91", + "212.102.35.97", + "212.102.35.93", + "212.102.35.101", + "212.102.35.84" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand403", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.43", + "179.61.240.57", + "179.61.240.51", + "179.61.240.17", + "179.61.240.25", + "179.61.240.2", + "179.61.240.22", + "179.61.240.18", + "179.61.240.61", + "179.61.240.47" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand404", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.110", + "179.61.240.77", + "179.61.240.89", + "179.61.240.120", + "179.61.240.85", + "179.61.240.95", + "179.61.240.74", + "179.61.240.99", + "179.61.240.73", + "179.61.240.92", + "179.61.240.90", + "179.61.240.125" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand405", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.137", + "179.61.240.162", + "179.61.240.164", + "179.61.240.153", + "179.61.240.170", + "179.61.240.144", + "179.61.240.163", + "179.61.240.181", + "179.61.240.150", + "179.61.240.167", + "179.61.240.132", + "179.61.240.184" + ] + }, + { + "vpn": "openvpn", + "region": "Nigeria", + "server_name": "nigeria405", + "hostname": "nigeria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.65.137", + "146.70.65.138", + "146.70.65.133", + "146.70.65.134", + "146.70.65.142", + "146.70.65.131" + ] + }, + { + "vpn": "openvpn", + "region": "Nigeria", + "server_name": "nigeria406", + "hostname": "nigeria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.65.148", + "146.70.65.153", + "146.70.65.154", + "146.70.65.151", + "146.70.65.152", + "146.70.65.155", + "146.70.65.156" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "server_name": "macedonia401", + "hostname": "mk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.225.28.232", + "185.225.28.231", + "185.225.28.234", + "185.225.28.233", + "185.225.28.237", + "185.225.28.238" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "server_name": "macedonia402", + "hostname": "mk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.225.31.21", + "185.225.31.29", + "185.225.31.19", + "185.225.31.25", + "185.225.31.24", + "185.225.31.26", + "185.225.31.27" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo401", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.49", + "46.246.122.40", + "46.246.122.43", + "46.246.122.51", + "46.246.122.41", + "46.246.122.55", + "46.246.122.38", + "46.246.122.50", + "46.246.122.56", + "46.246.122.44", + "46.246.122.46", + "46.246.122.57" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo402", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.81", + "46.246.122.78", + "46.246.122.93", + "46.246.122.94", + "46.246.122.75", + "46.246.122.70", + "46.246.122.73", + "46.246.122.83" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo403", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.100", + "46.246.122.114", + "46.246.122.105", + "46.246.122.112" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo404", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.169", + "46.246.122.178", + "46.246.122.171", + "46.246.122.174", + "46.246.122.182", + "46.246.122.172", + "46.246.122.163", + "46.246.122.187", + "46.246.122.189" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama405", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.49", + "91.90.126.43", + "91.90.126.46", + "91.90.126.36", + "91.90.126.37", + "91.90.126.44", + "91.90.126.38", + "91.90.126.40" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama407", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.66", + "91.90.126.67", + "91.90.126.72", + "91.90.126.74", + "91.90.126.73", + "91.90.126.79", + "91.90.126.78" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama408", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.93", + "91.90.126.82", + "91.90.126.86", + "91.90.126.85", + "91.90.126.90", + "91.90.126.84", + "91.90.126.91", + "91.90.126.89", + "91.90.126.94" + ] + }, + { + "vpn": "openvpn", + "region": "Peru", + "server_name": "peru401", + "hostname": "pe-peru-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.99.21", + "84.247.99.19", + "84.247.99.27", + "84.247.99.7", + "84.247.99.9", + "84.247.99.22", + "84.247.99.30", + "84.247.99.13", + "84.247.99.11", + "84.247.99.20", + "84.247.99.5" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines401", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.142", + "188.214.125.139", + "188.214.125.135", + "188.214.125.132", + "188.214.125.134", + "188.214.125.141", + "188.214.125.137", + "188.214.125.136" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines402", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.149", + "188.214.125.147", + "188.214.125.156", + "188.214.125.151", + "188.214.125.153" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines403", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.183", + "188.214.125.180", + "188.214.125.189", + "188.214.125.184", + "188.214.125.190", + "188.214.125.187", + "188.214.125.185" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw410", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.40", + "138.199.59.35", + "138.199.59.47", + "138.199.59.37", + "138.199.59.43", + "138.199.59.54", + "138.199.59.57", + "138.199.59.55", + "138.199.59.36", + "138.199.59.44", + "138.199.59.51" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw413", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.222", + "138.199.59.212", + "138.199.59.205", + "138.199.59.197", + "138.199.59.219", + "138.199.59.199", + "138.199.59.196", + "138.199.59.208", + "138.199.59.202", + "138.199.59.198", + "138.199.59.204" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw414", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.236", + "138.199.59.243", + "138.199.59.238", + "138.199.59.239", + "138.199.59.240", + "138.199.59.244", + "138.199.59.241" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "server_name": "lisbon404", + "hostname": "pt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.59.43", + "146.70.59.47", + "146.70.59.42", + "146.70.59.41", + "146.70.59.40", + "146.70.59.36", + "146.70.59.39", + "146.70.59.45" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "server_name": "lisbon405", + "hostname": "pt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.59.10", + "146.70.59.11", + "146.70.59.21", + "146.70.59.19", + "146.70.59.14", + "146.70.59.28", + "146.70.59.6", + "146.70.59.17", + "146.70.59.7", + "146.70.59.22", + "146.70.59.33" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "server_name": "qatar402", + "hostname": "qatar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.234.29", + "95.181.234.28", + "95.181.234.30", + "95.181.234.27", + "95.181.234.37", + "95.181.234.36", + "95.181.234.35" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "server_name": "qatar404", + "hostname": "qatar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.234.25", + "95.181.234.19", + "95.181.234.15", + "95.181.234.24", + "95.181.234.16", + "95.181.234.21", + "95.181.234.22", + "95.181.234.18" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "server_name": "romania401", + "hostname": "ro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.52.44", + "143.244.52.62", + "143.244.52.51", + "143.244.52.39", + "143.244.52.45", + "143.244.52.33", + "143.244.52.40", + "143.244.52.46", + "143.244.52.54", + "143.244.52.64" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "server_name": "romania402", + "hostname": "ro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.54.23", + "143.244.54.22", + "143.244.54.6", + "143.244.54.20", + "143.244.54.19", + "143.244.54.8", + "143.244.54.29", + "143.244.54.21", + "143.244.54.25" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm402", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.40", + "46.246.8.66", + "46.246.8.58", + "46.246.8.69", + "46.246.8.61" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm403", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.109", + "46.246.8.94", + "46.246.8.108", + "46.246.8.95", + "46.246.8.74" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm404", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.139", + "46.246.8.136", + "46.246.8.131", + "46.246.8.134", + "46.246.8.130", + "46.246.8.127", + "46.246.8.111", + "46.246.8.125", + "46.246.8.140", + "46.246.8.119" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm407", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.112.19.25", + "212.112.19.24", + "212.112.19.26", + "212.112.19.20", + "212.112.19.27", + "212.112.19.30", + "212.112.19.29" + ] + }, + { + "vpn": "openvpn", + "region": "SE Streaming Optimized", + "server_name": "stockholm406", + "hostname": "sweden-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.3.223", + "46.246.3.250", + "46.246.3.221", + "46.246.3.238", + "46.246.3.247", + "46.246.3.232", + "46.246.3.242", + "46.246.3.235", + "46.246.3.239", + "46.246.3.249" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "server_name": "saudiarabia403", + "hostname": "saudiarabia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.235.17", + "95.181.235.6", + "95.181.235.9", + "95.181.235.11", + "95.181.235.8", + "95.181.235.4", + "95.181.235.3", + "95.181.235.16" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "server_name": "saudiarabia404", + "hostname": "saudiarabia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.235.153", + "95.181.235.149", + "95.181.235.158", + "95.181.235.151", + "95.181.235.148", + "95.181.235.150", + "95.181.235.157" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "server_name": "belgrade402", + "hostname": "rs.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.115.21", + "37.46.115.20", + "37.46.115.25", + "37.46.115.23", + "37.46.115.30", + "37.46.115.24", + "37.46.115.22", + "37.46.115.28" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore401", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.195", + "156.146.57.186", + "156.146.57.196", + "156.146.57.177", + "156.146.57.173", + "156.146.57.189", + "156.146.57.190", + "156.146.57.174" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore402", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.119", + "156.146.57.118", + "156.146.57.109", + "156.146.57.116", + "156.146.57.105", + "156.146.57.115", + "156.146.57.113" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore403", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.47", + "156.146.57.52", + "156.146.57.68", + "156.146.57.67", + "156.146.57.48", + "156.146.57.54", + "156.146.57.46", + "156.146.57.61", + "156.146.57.55" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore404", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.24.10", + "138.199.24.12", + "138.199.24.23", + "138.199.24.25", + "138.199.24.8", + "138.199.24.16", + "138.199.24.15", + "138.199.24.24" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "server_name": "bratislava403", + "hostname": "sk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.232.16", + "149.102.232.14", + "149.102.232.21", + "149.102.232.19", + "149.102.232.23", + "149.102.232.13", + "149.102.232.20", + "149.102.232.17", + "149.102.232.15", + "149.102.232.11", + "149.102.232.4" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "server_name": "bratislava404", + "hostname": "sk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.232.51", + "149.102.232.42", + "149.102.232.44", + "149.102.232.31", + "149.102.232.38", + "149.102.232.46", + "149.102.232.45", + "149.102.232.34", + "149.102.232.37", + "149.102.232.53", + "149.102.232.35" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "server_name": "slovenia401", + "hostname": "slovenia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.185", + "195.80.150.189", + "195.80.150.190", + "195.80.150.181", + "195.80.150.187", + "195.80.150.182", + "195.80.150.188" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "server_name": "slovenia402", + "hostname": "slovenia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.142", + "195.80.150.137", + "195.80.150.136", + "195.80.150.138", + "195.80.150.135", + "195.80.150.133", + "195.80.150.141", + "195.80.150.139" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "server_name": "johannesburg411", + "hostname": "za.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.30.54", + "154.47.30.43", + "154.47.30.45", + "154.47.30.57", + "154.47.30.33", + "154.47.30.38", + "154.47.30.34", + "154.47.30.49", + "154.47.30.53", + "154.47.30.52" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "server_name": "seoul401", + "hostname": "kr-south-korea-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.102.7", + "84.247.102.5", + "84.247.102.3", + "84.247.102.13", + "84.247.102.16", + "84.247.102.6", + "84.247.102.11", + "84.247.102.10", + "84.247.102.12" + ] + }, + { + "vpn": "openvpn", + "region": "Sri Lanka", + "server_name": "srilanka403", + "hostname": "srilanka.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.239.9", + "95.181.239.4", + "95.181.239.10", + "95.181.239.8", + "95.181.239.7", + "95.181.239.12", + "95.181.239.11" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich405", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.36.174", + "212.102.36.162", + "212.102.36.171", + "212.102.36.175", + "212.102.36.182", + "212.102.36.180", + "212.102.36.184", + "212.102.36.177", + "212.102.36.173", + "212.102.36.164" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich411", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "79.142.79.38", + "79.142.79.29", + "79.142.79.56", + "79.142.79.58", + "79.142.79.37", + "79.142.79.53", + "79.142.79.45", + "79.142.79.52", + "79.142.79.34", + "79.142.79.51" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich412", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "79.142.79.87", + "79.142.79.65", + "79.142.79.89", + "79.142.79.66", + "79.142.79.75", + "79.142.79.79", + "79.142.79.64", + "79.142.79.67", + "79.142.79.62", + "79.142.79.88", + "79.142.79.90" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "server_name": "taiwan405", + "hostname": "taiwan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.49.52", + "173.244.49.51", + "173.244.49.62", + "173.244.49.54", + "173.244.49.73", + "173.244.49.59", + "173.244.49.65", + "173.244.49.66", + "173.244.49.70", + "173.244.49.61", + "173.244.49.57" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "server_name": "taiwan406", + "hostname": "taiwan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.49.85", + "173.244.49.77", + "173.244.49.91", + "173.244.49.96", + "173.244.49.75", + "173.244.49.76", + "173.244.49.89" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul401", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.76", + "188.213.34.75", + "188.213.34.67", + "188.213.34.73", + "188.213.34.69", + "188.213.34.68", + "188.213.34.74", + "188.213.34.70", + "188.213.34.72" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul402", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.93", + "188.213.34.88", + "188.213.34.85", + "188.213.34.90" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul403", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.106", + "188.213.34.110", + "188.213.34.105", + "188.213.34.103", + "188.213.34.108" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul404", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.142", + "188.213.34.139", + "188.213.34.141", + "188.213.34.140" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london402", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.63.146", + "212.102.63.147", + "212.102.63.151", + "212.102.63.145", + "212.102.63.152", + "212.102.63.149", + "212.102.63.153", + "212.102.63.134" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london408", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.110.13.26", + "194.110.13.32", + "194.110.13.15", + "194.110.13.12", + "194.110.13.29" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london409", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.215.176.50", + "181.215.176.59", + "181.215.176.49", + "181.215.176.56" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london410", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.215.176.81", + "181.215.176.76", + "181.215.176.80", + "181.215.176.95", + "181.215.176.66", + "181.215.176.77", + "181.215.176.67", + "181.215.176.94", + "181.215.176.89" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london434", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.110.13.96", + "194.110.13.77", + "194.110.13.93", + "194.110.13.81", + "194.110.13.80" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester401", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.37", + "193.239.84.45", + "193.239.84.38", + "193.239.84.43" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester402", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.59", + "193.239.84.50", + "193.239.84.54", + "193.239.84.55", + "193.239.84.62" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester403", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.76", + "193.239.84.71" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester420", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.43", + "45.133.172.51", + "45.133.172.55", + "45.133.172.39", + "45.133.172.35", + "45.133.172.57" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester421", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.81", + "45.133.172.86", + "45.133.172.88", + "45.133.172.97" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester425", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.211", + "45.133.172.224", + "45.133.172.218", + "45.133.172.217", + "45.133.172.206", + "45.133.172.219" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester426", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.237", + "45.133.172.250", + "45.133.172.239", + "45.133.172.232", + "45.133.172.249" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton401", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.36", + "98.159.234.30", + "98.159.234.8", + "98.159.234.18", + "98.159.234.23", + "98.159.234.19", + "98.159.234.41" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton402", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.52", + "98.159.234.51", + "98.159.234.68", + "98.159.234.60", + "98.159.234.44", + "98.159.234.82", + "98.159.234.78", + "98.159.234.46", + "98.159.234.72", + "98.159.234.55" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton403", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.88", + "98.159.234.93", + "98.159.234.113", + "98.159.234.90", + "98.159.234.94", + "98.159.234.107", + "98.159.234.105", + "98.159.234.86", + "98.159.234.123", + "98.159.234.118" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton404", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.156", + "98.159.234.141", + "98.159.234.147", + "98.159.234.135" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london441", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.30.165", + "138.199.30.177", + "138.199.30.170", + "138.199.30.176", + "138.199.30.168", + "138.199.30.175", + "138.199.30.166", + "138.199.30.157", + "138.199.30.178", + "138.199.30.161" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london445", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.53.82", + "212.102.53.85", + "212.102.52.6", + "212.102.53.87", + "212.102.53.83", + "212.102.52.2", + "212.102.52.4", + "212.102.53.86" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london446", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.28.4", + "138.199.28.5", + "138.199.28.74", + "138.199.28.6", + "138.199.28.65", + "138.199.28.64", + "138.199.28.2", + "138.199.28.8", + "138.199.28.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Alabama", + "server_name": "alabama402", + "hostname": "us-alabama-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.6.4", + "84.239.6.17", + "84.239.6.12", + "84.239.6.5", + "84.239.6.14", + "84.239.6.16", + "84.239.6.20", + "84.239.6.13", + "84.239.6.10" + ] + }, + { + "vpn": "openvpn", + "region": "US Alaska", + "server_name": "alaska402", + "hostname": "us-alaska-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.52.21", + "84.239.52.4", + "84.239.52.17", + "84.239.52.10", + "84.239.52.5", + "84.239.52.19", + "84.239.52.11", + "84.239.52.18", + "84.239.52.20", + "84.239.52.9" + ] + }, + { + "vpn": "openvpn", + "region": "US Arkansas", + "server_name": "littlerock402", + "hostname": "us-arkansas-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.28.14", + "84.239.28.10", + "84.239.28.17", + "84.239.28.9", + "84.239.28.16", + "84.239.28.19", + "84.239.28.2", + "84.239.28.20", + "84.239.28.12" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta412", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.167.55", + "181.214.167.64", + "181.214.167.47", + "181.214.167.49" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta417", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.167.196", + "181.214.167.205", + "181.214.167.225", + "181.214.167.209", + "181.214.167.220", + "181.214.167.219", + "181.214.167.200" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta419", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "5.182.110.19", + "5.182.110.21", + "5.182.110.27", + "5.182.110.11", + "5.182.110.25", + "5.182.110.15", + "5.182.110.7", + "5.182.110.8" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta420", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "5.182.110.61", + "5.182.110.62", + "5.182.110.57", + "5.182.110.37", + "5.182.110.59", + "5.182.110.66", + "5.182.110.55" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta426", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "156.146.46.154", + "156.146.46.222" + ] + }, + { + "vpn": "openvpn", + "region": "US Baltimore", + "server_name": "baltimore401", + "hostname": "us-baltimore.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.3", + "84.239.43.29", + "84.239.43.30", + "84.239.43.19", + "84.239.43.25", + "84.239.43.12", + "84.239.43.10", + "84.239.43.13", + "84.239.43.2", + "84.239.43.8", + "84.239.43.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Baltimore", + "server_name": "baltimore402", + "hostname": "us-baltimore.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.54", + "84.239.43.41", + "84.239.43.33", + "84.239.43.49", + "84.239.43.53", + "84.239.43.46", + "84.239.43.45", + "84.239.43.56", + "84.239.43.50", + "84.239.43.43", + "84.239.43.59" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles404", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.21", + "84.17.45.6", + "84.17.45.16", + "84.17.45.2" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles414", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.145.144", + "102.129.145.148", + "102.129.145.146", + "102.129.145.140", + "102.129.145.130", + "102.129.145.155", + "102.129.145.145", + "102.129.145.156", + "102.129.145.150" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles433", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.106.84", + "191.96.106.85", + "191.96.106.97", + "191.96.106.94", + "191.96.106.86", + "191.96.106.95", + "191.96.106.74", + "191.96.106.99", + "191.96.106.93", + "191.96.106.72", + "191.96.106.88" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles436", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.106.173", + "191.96.106.171", + "191.96.106.181", + "191.96.106.169" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles446", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.48.21", + "143.244.48.28", + "143.244.48.11", + "143.244.48.17" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago407", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.165.71", + "181.214.165.96", + "181.214.165.56", + "181.214.165.53" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago409", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.165.187", + "181.214.165.154", + "181.214.165.178", + "181.214.165.159", + "181.214.165.166", + "181.214.165.160", + "181.214.165.158" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago414", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.164.179", + "181.214.164.160", + "181.214.164.181", + "181.214.164.156", + "181.214.164.157" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago418", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.132", + "181.214.166.101", + "181.214.166.143", + "181.214.166.112", + "181.214.166.122", + "181.214.166.129", + "181.214.166.104" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago420", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.199", + "181.214.166.201" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago421", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.225", + "181.214.166.238", + "181.214.166.222", + "181.214.166.242", + "181.214.166.227", + "181.214.166.234", + "181.214.166.250", + "181.214.166.248" + ] + }, + { + "vpn": "openvpn", + "region": "US Connecticut", + "server_name": "connecticut402", + "hostname": "us-connecticut-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.9", + "84.239.47.24", + "84.239.47.10", + "84.239.47.11", + "84.239.47.21", + "84.239.47.4", + "84.239.47.14", + "84.239.47.15", + "84.239.47.3", + "84.239.47.29", + "84.239.47.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Connecticut", + "server_name": "connecticut404", + "hostname": "us-connecticut-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.64", + "84.239.47.70", + "84.239.47.83", + "84.239.47.67", + "84.239.47.77", + "84.239.47.78", + "84.239.47.73", + "84.239.47.90", + "84.239.47.63", + "84.239.47.81", + "84.239.47.76", + "84.239.47.75" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver419", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.57", + "181.41.206.51", + "181.41.206.58", + "181.41.206.54", + "181.41.206.53", + "181.41.206.61", + "181.41.206.56" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver421", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.80", + "181.41.206.89", + "181.41.206.85" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver429", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.205", + "181.41.206.203", + "181.41.206.207", + "181.41.206.201", + "181.41.206.212", + "181.41.206.209" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver430", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.221", + "181.41.206.224", + "181.41.206.223", + "181.41.206.220", + "181.41.206.218" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver433", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.210.85", + "37.19.210.87", + "37.19.210.80", + "37.19.210.67", + "37.19.210.86", + "37.19.210.93", + "37.19.210.75" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey426", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.55", + "102.165.16.67", + "102.165.16.66", + "102.165.16.64", + "102.165.16.50", + "102.165.16.49", + "102.165.16.69", + "102.165.16.56", + "102.165.16.65", + "102.165.16.52", + "102.165.16.57" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey428", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.117", + "102.165.16.121", + "102.165.16.107", + "102.165.16.120", + "102.165.16.103", + "102.165.16.112", + "102.165.16.102" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey434", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.55", + "204.93.149.58", + "204.93.149.44", + "204.93.149.65" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey438", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.189", + "204.93.149.167", + "204.93.149.163", + "204.93.149.187", + "204.93.149.176" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey440", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.252", + "204.93.149.236", + "204.93.149.243", + "204.93.149.248", + "204.93.149.225" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey401", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.44.77", + "143.244.44.71", + "143.244.44.65", + "143.244.44.85", + "143.244.44.73", + "143.244.44.74" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey414", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.28", + "138.199.10.27", + "138.199.10.16", + "138.199.10.26", + "138.199.10.5", + "138.199.10.9", + "138.199.10.13", + "138.199.10.19" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey419", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.197.144", + "37.19.197.151", + "37.19.197.139", + "37.19.197.150", + "37.19.197.154", + "37.19.197.131", + "37.19.197.141", + "37.19.197.149", + "37.19.197.153" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey425", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.26", + "102.165.16.22", + "102.165.16.35", + "102.165.16.34", + "102.165.16.13", + "102.165.16.12", + "102.165.16.37", + "102.165.16.36", + "102.165.16.14" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami417", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.34", + "102.129.152.37", + "102.129.152.28", + "102.129.152.15", + "102.129.152.39", + "102.129.152.38", + "102.129.152.26", + "102.129.152.16", + "102.129.152.18", + "102.129.152.36", + "102.129.152.20" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami419", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.86", + "102.129.152.73", + "102.129.152.95", + "102.129.152.70" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami420", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.110", + "102.129.152.129", + "102.129.152.108", + "102.129.152.122", + "102.129.152.102", + "102.129.152.101", + "102.129.152.126" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami428", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.153.185", + "102.129.153.179", + "102.129.153.171", + "102.129.153.161" + ] + }, + { + "vpn": "openvpn", + "region": "US Honolulu", + "server_name": "honolulu401", + "hostname": "us-honolulu.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.26", + "84.239.5.5", + "84.239.5.29", + "84.239.5.27", + "84.239.5.15", + "84.239.5.23", + "84.239.5.24", + "84.239.5.19" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston422", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.120", + "191.96.67.105", + "191.96.67.108", + "191.96.67.94", + "191.96.67.111", + "191.96.67.113", + "191.96.67.119", + "191.96.67.107" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston424", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.167", + "191.96.67.168", + "191.96.67.189", + "191.96.67.164", + "191.96.67.181", + "191.96.67.175", + "191.96.67.172" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston426", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.233", + "191.96.67.229", + "191.96.67.246", + "191.96.67.234", + "191.96.67.245" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston432", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.221.23", + "37.19.221.11", + "37.19.221.15", + "37.19.221.2" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston433", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.221.33", + "37.19.221.31", + "37.19.221.50", + "37.19.221.49", + "37.19.221.52", + "37.19.221.29", + "37.19.221.32", + "37.19.221.37" + ] + }, + { + "vpn": "openvpn", + "region": "US Idaho", + "server_name": "idaho402", + "hostname": "us-idaho-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.12.145", + "84.239.12.148", + "84.239.12.150", + "84.239.12.144", + "84.239.12.139", + "84.239.12.135", + "84.239.12.130", + "84.239.12.149", + "84.239.12.137", + "84.239.12.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Indiana", + "server_name": "indiana403", + "hostname": "us-indiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.20", + "84.239.16.11", + "84.239.16.2", + "84.239.16.5", + "84.239.16.19", + "84.239.16.10", + "84.239.16.15", + "84.239.16.4", + "84.239.16.14", + "84.239.16.17", + "84.239.16.13" + ] + }, + { + "vpn": "openvpn", + "region": "US Indiana", + "server_name": "indiana404", + "hostname": "us-indiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.25", + "84.239.16.31", + "84.239.16.37", + "84.239.16.38", + "84.239.16.33", + "84.239.16.34", + "84.239.16.27", + "84.239.16.26", + "84.239.16.32" + ] + }, + { + "vpn": "openvpn", + "region": "US Iowa", + "server_name": "iowa402", + "hostname": "us-iowa-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.15", + "84.239.17.6", + "84.239.17.3", + "84.239.17.10", + "84.239.17.8", + "84.239.17.17", + "84.239.17.16", + "84.239.17.9", + "84.239.17.12" + ] + }, + { + "vpn": "openvpn", + "region": "US Kansas", + "server_name": "kansas402", + "hostname": "us-kansas-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.31.5", + "84.239.31.17", + "84.239.31.2", + "84.239.31.21", + "84.239.31.13", + "84.239.31.18" + ] + }, + { + "vpn": "openvpn", + "region": "US Kentucky", + "server_name": "kentucky402", + "hostname": "us-kentucky-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.6.135", + "84.239.6.142", + "84.239.6.147", + "84.239.6.130", + "84.239.6.134", + "84.239.6.145", + "84.239.6.148", + "84.239.6.132", + "84.239.6.146", + "84.239.6.149" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas422", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.93", + "191.101.61.83", + "191.101.61.85", + "191.101.61.100" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas424", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.143", + "191.101.61.158", + "191.101.61.163", + "191.101.61.157" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas426", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "173.239.226.153", + "173.239.226.151", + "173.239.226.162", + "173.239.226.143", + "173.239.226.155", + "173.239.226.142", + "173.239.226.159" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas427", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "173.239.226.199", + "173.239.226.198", + "173.239.226.202", + "173.239.226.221", + "173.239.226.207", + "173.239.226.215", + "173.239.226.192" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas429", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.217", + "191.101.61.199", + "191.101.61.209", + "191.101.61.212" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "losangeles408", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.48.198", + "143.244.48.194", + "143.244.48.154", + "143.244.48.192", + "143.244.48.204" + ] + }, + { + "vpn": "openvpn", + "region": "US Louisiana", + "server_name": "louisiana402", + "hostname": "us-louisiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.28.132", + "84.239.28.140", + "84.239.28.142", + "84.239.28.138", + "84.239.28.145", + "84.239.28.136", + "84.239.28.133", + "84.239.28.146", + "84.239.28.139" + ] + }, + { + "vpn": "openvpn", + "region": "US Maine", + "server_name": "maine402", + "hostname": "us-maine-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.37.8", + "84.239.37.13", + "84.239.37.16", + "84.239.37.5", + "84.239.37.17", + "84.239.37.19", + "84.239.37.12", + "84.239.37.11", + "84.239.37.14" + ] + }, + { + "vpn": "openvpn", + "region": "US Massachusetts", + "server_name": "massachusetts404", + "hostname": "us-massachusetts-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "149.40.50.36", + "149.40.50.46", + "149.40.50.41", + "149.40.50.40", + "149.40.50.51", + "149.40.50.48", + "149.40.50.47", + "149.40.50.57", + "149.40.50.54" + ] + }, + { + "vpn": "openvpn", + "region": "US Massachusetts", + "server_name": "massachusetts405", + "hostname": "us-massachusetts-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "149.40.50.24", + "149.40.50.11", + "149.40.50.15", + "149.40.50.22", + "149.40.50.9", + "149.40.50.21", + "149.40.50.12", + "149.40.50.23", + "149.40.50.8", + "149.40.50.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Michigan", + "server_name": "michigan403", + "hostname": "us-michigan-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.132", + "84.239.17.140", + "84.239.17.145", + "84.239.17.137", + "84.239.17.141", + "84.239.17.136", + "84.239.17.138", + "84.239.17.142", + "84.239.17.143", + "84.239.17.135", + "84.239.17.144" + ] + }, + { + "vpn": "openvpn", + "region": "US Michigan", + "server_name": "michigan404", + "hostname": "us-michigan-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.160", + "84.239.17.166", + "84.239.17.164", + "84.239.17.162", + "84.239.17.151", + "84.239.17.156", + "84.239.17.152", + "84.239.17.165", + "84.239.17.170" + ] + }, + { + "vpn": "openvpn", + "region": "US Minnesota", + "server_name": "minnesota402", + "hostname": "us-minnesota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.25.9", + "84.239.25.13", + "84.239.25.16", + "84.239.25.8", + "84.239.25.12", + "84.239.25.7", + "84.239.25.5", + "84.239.25.19" + ] + }, + { + "vpn": "openvpn", + "region": "US Mississippi", + "server_name": "mississippi402", + "hostname": "us-mississippi-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.31.144", + "84.239.31.133", + "84.239.31.131", + "84.239.31.140", + "84.239.31.143", + "84.239.31.138", + "84.239.31.135", + "84.239.31.132", + "84.239.31.149" + ] + }, + { + "vpn": "openvpn", + "region": "US Missouri", + "server_name": "missouri402", + "hostname": "us-missouri-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.141", + "84.239.16.144", + "84.239.16.135", + "84.239.16.133", + "84.239.16.140", + "84.239.16.146", + "84.239.16.138", + "84.239.16.132", + "84.239.16.134" + ] + }, + { + "vpn": "openvpn", + "region": "US Montana", + "server_name": "montana402", + "hostname": "us-montana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.142", + "84.239.47.141", + "84.239.47.138", + "84.239.47.143", + "84.239.47.150", + "84.239.47.134", + "84.239.47.146", + "84.239.47.149", + "84.239.47.137" + ] + }, + { + "vpn": "openvpn", + "region": "US Nebraska", + "server_name": "nebraska402", + "hostname": "us-nebraska-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.25.131", + "84.239.25.139", + "84.239.25.143", + "84.239.25.150", + "84.239.25.134", + "84.239.25.141", + "84.239.25.140", + "84.239.25.148", + "84.239.25.136" + ] + }, + { + "vpn": "openvpn", + "region": "US New Hampshire", + "server_name": "newhampshire402", + "hostname": "us-new-hampshire-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.14", + "84.239.41.7", + "84.239.41.13", + "84.239.41.17", + "84.239.41.18", + "84.239.41.11", + "84.239.41.12", + "84.239.41.8", + "84.239.41.3" + ] + }, + { + "vpn": "openvpn", + "region": "US New Mexico", + "server_name": "newmexico402", + "hostname": "us-new-mexico-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.33.16", + "84.239.33.12", + "84.239.33.6", + "84.239.33.19", + "84.239.33.17", + "84.239.33.2", + "84.239.33.20", + "84.239.33.9", + "84.239.33.7" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork432", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.198.142", + "37.19.198.145", + "37.19.198.32", + "37.19.198.134", + "37.19.198.144", + "37.19.198.36", + "37.19.198.137", + "37.19.198.139", + "37.19.198.35", + "37.19.198.143", + "37.19.198.131", + "37.19.198.157" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork435", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.150.55", + "191.96.150.20", + "191.96.150.41", + "191.96.150.31", + "191.96.150.39", + "191.96.150.7", + "191.96.150.49", + "191.96.150.40", + "191.96.150.17", + "191.96.150.32", + "191.96.150.44", + "191.96.150.27" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork438", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "154.16.192.48", + "154.16.192.42", + "154.16.192.55", + "154.16.192.22", + "154.16.192.50", + "154.16.192.12", + "154.16.192.9", + "154.16.192.53", + "154.16.192.37", + "154.16.192.10", + "154.16.192.46" + ] + }, + { + "vpn": "openvpn", + "region": "US North Carolina", + "server_name": "northcarolina402", + "hostname": "us-north-carolina-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.7.2", + "84.239.7.11", + "84.239.7.9", + "84.239.7.4", + "84.239.7.7", + "84.239.7.19", + "84.239.7.14", + "84.239.7.5", + "84.239.7.12", + "84.239.7.10" + ] + }, + { + "vpn": "openvpn", + "region": "US North Dakota", + "server_name": "northdakota402", + "hostname": "us-north-dakota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.48.9", + "84.239.48.20", + "84.239.48.19", + "84.239.48.5", + "84.239.48.10", + "84.239.48.11", + "84.239.48.8", + "84.239.48.4", + "84.239.48.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Ohio", + "server_name": "ohio403", + "hostname": "us-ohio-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.144", + "84.239.27.130", + "84.239.27.140", + "84.239.27.133", + "84.239.27.145", + "84.239.27.137", + "84.239.27.146", + "84.239.27.149", + "84.239.27.131", + "84.239.27.143" + ] + }, + { + "vpn": "openvpn", + "region": "US Ohio", + "server_name": "ohio404", + "hostname": "us-ohio-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.169", + "84.239.27.163", + "84.239.27.171", + "84.239.27.164", + "84.239.27.162", + "84.239.27.166", + "84.239.27.157", + "84.239.27.172" + ] + }, + { + "vpn": "openvpn", + "region": "US Oklahoma", + "server_name": "oklahoma402", + "hostname": "us-oklahoma-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.33.136", + "84.239.33.132", + "84.239.33.137", + "84.239.33.149", + "84.239.33.141", + "84.239.33.131", + "84.239.33.134", + "84.239.33.143", + "84.239.33.145" + ] + }, + { + "vpn": "openvpn", + "region": "US Oregon", + "server_name": "oregon402", + "hostname": "us-oregon-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.48.140", + "84.239.48.150", + "84.239.48.139", + "84.239.48.144", + "84.239.48.135", + "84.239.48.132", + "84.239.48.146", + "84.239.48.147", + "84.239.48.143", + "84.239.48.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Pennsylvania", + "server_name": "pennsylvania403", + "hostname": "us-pennsylvania-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.136", + "84.239.41.134", + "84.239.41.137", + "84.239.41.140", + "84.239.41.143", + "84.239.41.142", + "84.239.41.145", + "84.239.41.149", + "84.239.41.141", + "84.239.41.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Pennsylvania", + "server_name": "pennsylvania404", + "hostname": "us-pennsylvania-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.199", + "84.239.41.193", + "84.239.41.200", + "84.239.41.202", + "84.239.41.210", + "84.239.41.196", + "84.239.41.191", + "84.239.41.206", + "84.239.41.192", + "84.239.41.195", + "84.239.41.209" + ] + }, + { + "vpn": "openvpn", + "region": "US Rhode Island", + "server_name": "rhodeisland402", + "hostname": "us-rhode-island-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.45.7", + "84.239.45.14", + "84.239.45.12", + "84.239.45.13", + "84.239.45.5", + "84.239.45.3", + "84.239.45.15", + "84.239.45.6", + "84.239.45.8" + ] + }, + { + "vpn": "openvpn", + "region": "US Salt Lake City", + "server_name": "saltlake401", + "hostname": "us-saltlakecity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.144", + "84.239.5.154", + "84.239.5.141", + "84.239.5.160", + "84.239.5.140", + "84.239.5.159", + "84.239.5.156", + "84.239.5.157", + "84.239.5.132", + "84.239.5.152" + ] + }, + { + "vpn": "openvpn", + "region": "US Salt Lake City", + "server_name": "saltlake402", + "hostname": "us-saltlakecity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.164", + "84.239.5.183", + "84.239.5.182", + "84.239.5.167", + "84.239.5.174", + "84.239.5.188", + "84.239.5.165", + "84.239.5.169", + "84.239.5.172", + "84.239.5.177", + "84.239.5.185" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle401", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.202", + "156.146.48.25", + "156.146.48.24", + "156.146.48.23", + "156.146.48.28", + "156.146.48.3" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle404", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.103.30", + "191.96.103.22", + "191.96.103.25", + "191.96.103.20", + "191.96.103.32", + "191.96.103.8", + "191.96.103.26", + "191.96.103.13", + "191.96.103.17", + "191.96.103.28" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle412", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.11", + "191.96.37.14", + "191.96.37.10", + "191.96.37.17", + "191.96.37.9", + "191.96.37.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle413", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.40", + "191.96.37.55", + "191.96.37.39", + "191.96.37.53", + "191.96.37.36", + "191.96.37.63" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle415", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.119", + "191.96.37.125", + "191.96.37.111", + "191.96.37.98", + "191.96.37.101" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley402", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.56", + "102.129.232.77", + "102.129.232.88", + "102.129.232.80", + "102.129.232.89", + "102.129.232.78" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley403", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.108", + "102.129.232.138", + "102.129.232.106", + "102.129.232.125" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley406", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.229", + "102.129.232.250", + "102.129.232.223", + "102.129.232.233" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley408", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.252.33", + "102.129.252.29", + "102.129.252.36", + "102.129.252.31", + "102.129.252.25", + "102.129.252.5" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley415", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.71", + "191.96.255.76", + "191.96.255.51", + "191.96.255.63", + "191.96.255.52", + "191.96.255.58", + "191.96.255.88", + "191.96.255.77", + "191.96.255.67" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley416", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.109", + "191.96.255.99", + "191.96.255.118", + "191.96.255.130", + "191.96.255.112", + "191.96.255.108" + ] + }, + { + "vpn": "openvpn", + "region": "US South Carolina", + "server_name": "southcarolina402", + "hostname": "us-south-carolina-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.7.158", + "84.239.7.132", + "84.239.7.135", + "84.239.7.141", + "84.239.7.155", + "84.239.7.151", + "84.239.7.140", + "84.239.7.130", + "84.239.7.139", + "84.239.7.144" + ] + }, + { + "vpn": "openvpn", + "region": "US South Dakota", + "server_name": "southdakota402", + "hostname": "us-south-dakota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.50.19", + "84.239.50.9", + "84.239.50.20", + "84.239.50.10", + "84.239.50.5", + "84.239.50.14", + "84.239.50.17", + "84.239.50.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Tennessee", + "server_name": "tennessee402", + "hostname": "us-tennessee-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.10.13", + "84.239.10.19", + "84.239.10.14", + "84.239.10.7", + "84.239.10.2", + "84.239.10.4", + "84.239.10.10", + "84.239.10.15" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas405", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.93.52", + "181.214.93.77", + "181.214.93.51", + "181.214.93.72" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas406", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.93.133", + "181.214.93.110", + "181.214.93.125", + "181.214.93.105" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas410", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.8", + "102.129.234.11", + "102.129.234.7", + "102.129.234.20", + "102.129.234.30" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas412", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.134", + "102.129.234.109", + "102.129.234.122", + "102.129.234.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas413", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.171", + "102.129.234.182", + "102.129.234.175", + "102.129.234.149", + "102.129.234.146", + "102.129.234.172", + "102.129.234.169" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas417", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.215.182.117", + "181.215.182.123", + "181.215.182.122", + "181.215.182.104", + "181.215.182.106", + "181.215.182.133" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas425", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "156.146.39.24", + "156.146.39.29", + "156.146.39.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Vermont", + "server_name": "vermont402", + "hostname": "us-vermont-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.45.149", + "84.239.45.143", + "84.239.45.138", + "84.239.45.139", + "84.239.45.150", + "84.239.45.142", + "84.239.45.141", + "84.239.45.148", + "84.239.45.145", + "84.239.45.140" + ] + }, + { + "vpn": "openvpn", + "region": "US Virginia", + "server_name": "virginia403", + "hostname": "us-virginia-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.10.145", + "84.239.10.134", + "84.239.10.137", + "84.239.10.132", + "84.239.10.148", + "84.239.10.141", + "84.239.10.131", + "84.239.10.136" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington432", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.14", + "181.214.94.8", + "181.214.94.24", + "181.214.94.6", + "181.214.94.21", + "181.214.94.20", + "181.214.94.18", + "181.214.94.32" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington433", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.59", + "181.214.94.43" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington436", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.143", + "181.214.94.152", + "181.214.94.155", + "181.214.94.142", + "181.214.94.158", + "181.214.94.153", + "181.214.94.154" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington437", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.185", + "181.214.94.176", + "181.214.94.192", + "181.214.94.179", + "181.214.94.174", + "181.214.94.172", + "181.214.94.182", + "181.214.94.168" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington438", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.223", + "181.214.94.198" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington441", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.235.44", + "102.129.235.64" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington442", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.235.72", + "102.129.235.79" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix409", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "172.98.87.164", + "172.98.87.163", + "172.98.87.153", + "172.98.87.180", + "172.98.87.190", + "172.98.87.133" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix410", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.252.177", + "184.170.252.175", + "184.170.252.154", + "184.170.252.165" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix411", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.252.214", + "107.181.184.181", + "184.170.252.206", + "184.170.252.252", + "184.170.252.225", + "107.181.184.178", + "184.170.252.204", + "184.170.252.221", + "184.170.252.250", + "184.170.252.231" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix414", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.242.197", + "184.170.242.137", + "184.170.242.139", + "184.170.242.183", + "184.170.242.144", + "184.170.242.162", + "184.170.242.172" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix415", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.242.222", + "184.170.242.234", + "184.170.242.221", + "184.170.242.242", + "184.170.242.227", + "184.170.242.230", + "184.170.242.214" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "phoenix406", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.241.6", + "184.170.241.4", + "184.170.241.3", + "184.170.241.5" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "siliconvalley407", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.192", + "102.129.232.208", + "102.129.232.195", + "102.129.232.206", + "102.129.232.199", + "102.129.232.190", + "102.129.232.207", + "102.129.232.202", + "102.129.232.204" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "siliconvalley414", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.24", + "191.96.255.4", + "191.96.255.18", + "191.96.255.13", + "191.96.255.36", + "191.96.255.27", + "191.96.255.44", + "191.96.255.40", + "191.96.255.35", + "191.96.255.22", + "191.96.255.29" + ] + }, + { + "vpn": "openvpn", + "region": "US West Virginia", + "server_name": "westvirginia402", + "hostname": "us-west-virginia-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.12.8", + "84.239.12.17", + "84.239.12.4", + "84.239.12.14", + "84.239.12.2", + "84.239.12.11", + "84.239.12.18", + "84.239.12.19", + "84.239.12.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Wilmington", + "server_name": "wilmington401", + "hostname": "us-wilmington.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.148", + "84.239.43.158", + "84.239.43.144", + "84.239.43.137", + "84.239.43.159", + "84.239.43.140", + "84.239.43.133", + "84.239.43.131", + "84.239.43.155", + "84.239.43.150" + ] + }, + { + "vpn": "openvpn", + "region": "US Wilmington", + "server_name": "wilmington402", + "hostname": "us-wilmington.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.190", + "84.239.43.179", + "84.239.43.182", + "84.239.43.168", + "84.239.43.176", + "84.239.43.162", + "84.239.43.174", + "84.239.43.177", + "84.239.43.171", + "84.239.43.184" + ] + }, + { + "vpn": "openvpn", + "region": "US Wisconsin", + "server_name": "wisconsin402", + "hostname": "us-wisconsin-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.19", + "84.239.27.15", + "84.239.27.4", + "84.239.27.11", + "84.239.27.5", + "84.239.27.10", + "84.239.27.17", + "84.239.27.12", + "84.239.27.7", + "84.239.27.13" + ] + }, + { + "vpn": "openvpn", + "region": "US Wyoming", + "server_name": "wyoming402", + "hostname": "us-wyoming-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.50.141", + "84.239.50.145", + "84.239.50.132", + "84.239.50.142", + "84.239.50.143", + "84.239.50.144", + "84.239.50.138", + "84.239.50.137" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "server_name": "kiev407", + "hostname": "ua.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.239.42.43", + "84.239.42.55", + "84.239.42.38", + "84.239.42.35", + "84.239.42.58", + "84.239.42.42", + "84.239.42.34", + "84.239.42.33", + "84.239.42.50" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "server_name": "kiev408", + "hostname": "ua.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.239.42.29", + "84.239.42.20", + "84.239.42.18", + "84.239.42.23", + "84.239.42.26", + "84.239.42.5", + "84.239.42.22", + "84.239.42.3", + "84.239.42.10" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai402", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.102.9", + "146.70.102.4", + "146.70.102.13", + "146.70.102.12", + "146.70.102.3", + "146.70.102.5", + "146.70.102.14", + "146.70.102.11", + "146.70.102.10" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai403", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.193.155", + "217.138.193.153", + "217.138.193.151", + "217.138.193.146", + "217.138.193.148", + "217.138.193.149" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai404", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.193.164", + "217.138.193.172", + "217.138.193.162", + "217.138.193.171", + "217.138.193.170", + "217.138.193.168", + "217.138.193.173", + "217.138.193.169" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "server_name": "uruguay401", + "hostname": "uy-uruguay-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.101.6", + "84.247.101.17", + "84.247.101.15", + "84.247.101.7", + "84.247.101.29", + "84.247.101.5", + "84.247.101.28", + "84.247.101.18", + "84.247.101.11", + "84.247.101.4" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela404", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.15", + "95.181.237.22", + "95.181.237.17", + "95.181.237.24", + "95.181.237.16", + "95.181.237.19", + "95.181.237.18", + "95.181.237.20" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela405", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.32", + "95.181.237.28", + "95.181.237.37", + "95.181.237.27", + "95.181.237.30", + "95.181.237.29" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela406", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.46", + "95.181.237.49", + "95.181.237.40", + "95.181.237.48", + "95.181.237.47", + "95.181.237.50", + "95.181.237.44" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "server_name": "vietnam403", + "hostname": "vietnam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.247.132", + "173.239.247.136", + "173.239.247.142", + "173.239.247.147", + "173.239.247.149", + "173.239.247.146", + "173.239.247.130", + "173.239.247.148", + "173.239.247.135", + "173.239.247.141" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "server_name": "vietnam404", + "hostname": "vietnam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.247.165", + "173.239.247.156", + "173.239.247.171", + "173.239.247.158", + "173.239.247.167", + "173.239.247.173", + "173.239.247.155" + ] + } + ] + }, + "privatevpn": { + "version": 4, + "timestamp": 1654006579, + "servers": [ + { + "vpn": "openvpn", + "country": "Argentina", + "city": "BuenosAires", + "hostname": "ar-bue.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "181.119.160.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "au-mel.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "103.231.88.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney1", + "hostname": "au-syd.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.96" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Wien", + "hostname": "at-wie.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.91" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "be-bru.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.104.186.211" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "SaoPaulo", + "hostname": "br-sao.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.162.230.59" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-sof.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.94.192.163" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-mon.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.163", + "87.101.92.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "ca-van.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "74.3.160.19" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "cl-san.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "216.241.14.227" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "ca-tor.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.148.7.3", + "45.148.7.6", + "45.148.7.8" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "co-bog.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "201.217.220.27" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "SanJose", + "hostname": "cr-san.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "190.10.8.218" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "hr-zag.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "85.10.56.127" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Nicosia", + "hostname": "cy-nic.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.173.226.47" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-pra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "dk-cop.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "62.115.255.188", + "62.115.255.189" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris1", + "hostname": "fr-par.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "80.239.199.102", + "80.239.199.103", + "80.239.199.104", + "80.239.199.105" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt1", + "hostname": "de-fra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.130", + "193.180.119.131" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Nuremberg", + "hostname": "de-nur.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.89.36.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "gr-ath.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "154.57.3.33" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "HongKong", + "hostname": "hk-hon.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.58" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hu-bud.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.104.187.67" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "is-rey.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.221.113.210" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "hostname": "id-jak.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "23.248.170.136" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-dub.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.67" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "city": "Ballasalla", + "hostname": "im-bal.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "81.27.96.89" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "it-mil.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.85.3", + "45.130.85.6", + "217.212.240.90", + "217.212.240.91", + "217.212.240.92", + "217.212.240.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo1", + "hostname": "jp-tok.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.160.154", + "89.187.161.142" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "kr-seo.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.73.37" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "lv-rig.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.199.103.164" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "hostname": "lt-sia.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.64.104.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Steinsel", + "hostname": "lu-ste.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "94.242.250.71" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "KualaLumpur", + "hostname": "my-kua.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "128.1.160.184" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "MexicoCity", + "hostname": "mx-mex.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "190.60.16.28" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "md-chi.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "178.17.172.99" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam1", + "hostname": "nl-ams.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.194", + "193.180.119.195", + "193.180.119.196", + "193.180.119.197" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "nz-auc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.252.191.34" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "no-osl.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "91.205.186.26" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "PanamaCity", + "hostname": "pa-pan.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "200.110.155.235" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "pe-lim.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "170.0.81.107" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "ph-man.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "128.1.209.12" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Torun", + "hostname": "pl-tor.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "91.236.55.255", + "185.72.199.130" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt-lis.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "130.185.85.107" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bukarest", + "hostname": "ro-buk.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.40.181.203" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Krasnoyarsk", + "hostname": "ru-kra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.87.11" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "hostname": "ru-mos.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.103.138" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "StPetersburg", + "hostname": "ru-pet.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "95.213.148.99" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-bel.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.166" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sg-sin.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "143.244.33.81" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sk-bra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "46.29.2.168" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "za-joh.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "129.232.185.115", + "129.232.209.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "es-mad.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.212.244.92", + "217.212.244.93" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "hostname": "se-got.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.187.91.19", + "193.187.91.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Kista", + "hostname": "se-kis.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.187.88.216", + "193.187.88.217", + "193.187.88.218", + "193.187.88.219", + "193.187.88.220", + "193.187.88.221", + "193.187.88.222" + ] + }, + { + "country": "Sweden", + "city": "Stockholm", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.2" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-sto.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.87.3", + "45.130.87.5", + "45.130.87.7", + "45.130.87.9", + "45.130.87.12", + "45.130.87.14", + "45.130.87.16", + "45.130.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich1", + "hostname": "ch-zur.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.212.245.92", + "217.212.245.93" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tw-tai.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "2.58.241.51" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "th-ban.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "103.27.203.234" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "tr-ist.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.38.180.28" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kiev", + "hostname": "ua-kie.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "192.121.68.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Nikolaev", + "hostname": "ua-nik.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "194.54.83.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-dub.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.59" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London2", + "hostname": "uk-lon2.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.41.242.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London7", + "hostname": "uk-lon7.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.125.204.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "uk-man.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.206.227.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "us-atl.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.170.130", + "138.199.2.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Buffalo", + "hostname": "us-buf.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "172.245.13.115", + "192.210.199.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "us-dal.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.164.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "LasVegas", + "hostname": "us-las.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.102.30.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "us-mia.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "195.181.163.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "NewYork1", + "hostname": "us-nyc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.86.3", + "45.130.86.5", + "45.130.86.8", + "45.130.86.10", + "45.130.86.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "us-pho.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.102.30.131" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "HoChiMinhCity", + "hostname": "vn-hoc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "210.2.64.5" + ] + } + ] + }, + "protonvpn": { + "version": 4, + "timestamp": 1722515320, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#1", + "hostname": "al-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "78.159.131.1" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#1", + "hostname": "al-01.protonvpn.net", + "wgpubkey": "Nr6AyJsd1NlSQ7JTWybr5eCtvV1zW7AUUx26w5sowDQ=", + "stream": true, + "port_forward": true, + "ips": [ + "78.159.131.1" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#25", + "hostname": "al-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.4" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#25", + "hostname": "al-02.protonvpn.net", + "wgpubkey": "D6VgBbcmr53evqwGGsdZNDneeg4tlag/KQ3+glPJ9js=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.4" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#1", + "hostname": "dz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.44" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#1", + "hostname": "dz-02.protonvpn.net", + "wgpubkey": "hDiyYDFs6HjVR+kJhX3pnq0rkUf3bT2++rQxJicoaVE=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.44" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#10", + "hostname": "dz-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.137.1" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#10", + "hostname": "dz-01.protonvpn.net", + "wgpubkey": "JobdIlwHN75a1pPOqfUNu0a1eQXcwqaz5vyrq0qT6Ek=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.137.1" + ] + }, + { + "vpn": "openvpn", + "country": "Angola", + "city": "Luanda", + "server_name": "AO#1", + "hostname": "ao-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.12" + ] + }, + { + "vpn": "wireguard", + "country": "Angola", + "city": "Luanda", + "server_name": "AO#1", + "hostname": "ao-02.protonvpn.net", + "wgpubkey": "eFEhiG7vdkDSwqtwOgECFE7x8Xr8NnJfh0QU1XK6jwA=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.12" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.186" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-03.protonvpn.net", + "wgpubkey": "BSXSJgI+cpLA2TrGL2swcqaXuCSjNNw9PVK7E0yCqFo=", + "secure_core": true, + "ips": [ + "185.159.157.186" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.105" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-04.protonvpn.net", + "wgpubkey": "pPR96SBtq9grARK6XDm5WI3XP1d8Le19Jl/HA9p7o00=", + "secure_core": true, + "ips": [ + "185.159.157.105" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#20", + "hostname": "node-ar-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "66.90.72.170" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#20", + "hostname": "node-ar-03.protonvpn.net", + "wgpubkey": "BSXSJgI+cpLA2TrGL2swcqaXuCSjNNw9PVK7E0yCqFo=", + "stream": true, + "ips": [ + "66.90.72.170" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#25", + "hostname": "node-ar-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.161" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#25", + "hostname": "node-ar-04.protonvpn.net", + "wgpubkey": "pPR96SBtq9grARK6XDm5WI3XP1d8Le19Jl/HA9p7o00=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.161" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-11.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.192" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-11.protonvpn.net", + "wgpubkey": "8kyi2e0ziUqhs+ooJYYI0yaVhv/bneUC1fhV5X2q/SE=", + "secure_core": true, + "ips": [ + "185.159.157.192" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-15.protonvpn.net", + "wgpubkey": "cyTFQG65skA/WgLJyt+WCvj2Y2i0wB+snKe0gWGd+Xo=", + "secure_core": true, + "ips": [ + "185.159.157.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.212" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-16.protonvpn.net", + "wgpubkey": "22eXRgMiS/iVgGxxksbmlk1JDgFoV7RXPvGLuaCOPiY=", + "secure_core": true, + "ips": [ + "185.159.157.212" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.252" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-17.protonvpn.net", + "wgpubkey": "JvLQppw/l3O+HUdx551RfhJy5eTSv2wZCEIgfBbOADE=", + "secure_core": true, + "ips": [ + "185.159.157.252" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.253" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-19.protonvpn.net", + "wgpubkey": "hPKSC01LiQsP+1pzPm98CFZXqkESBuwqdmMe+4ujeEs=", + "secure_core": true, + "ips": [ + "185.159.157.253" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.60" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-20.protonvpn.net", + "wgpubkey": "Xmre1psA04kUzSUMuAq0QGQe3dqQBXOw8dzRCs6tYUs=", + "secure_core": true, + "ips": [ + "79.135.104.60" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.199" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-12.protonvpn.net", + "wgpubkey": "KIm+13jfrrbXNPqYpd+WaWnCrgubWaSQnj8xn1Od8Fk=", + "secure_core": true, + "ips": [ + "185.159.158.199" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.205" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-13.protonvpn.net", + "wgpubkey": "mfJQLevPV800jb6E+dqgIZ8fjMfej5h0bBp9n/xuZRg=", + "secure_core": true, + "ips": [ + "185.159.158.205" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.206" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-14.protonvpn.net", + "wgpubkey": "Trt8stfmQTk/VTzR3jx3SSAIi0SSOSDOTtMln9bd4jY=", + "secure_core": true, + "ips": [ + "185.159.158.206" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.207" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-18.protonvpn.net", + "wgpubkey": "2dFWLSyohbnz02CORBKdh/bPh2PUqpfJISaWIN5/fHI=", + "secure_core": true, + "ips": [ + "185.159.158.207" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#109", + "hostname": "node-au-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.210" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#109", + "hostname": "node-au-17.protonvpn.net", + "wgpubkey": "JvLQppw/l3O+HUdx551RfhJy5eTSv2wZCEIgfBbOADE=", + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.210" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#187", + "hostname": "node-au-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.98" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#187", + "hostname": "node-au-15.protonvpn.net", + "wgpubkey": "cyTFQG65skA/WgLJyt+WCvj2Y2i0wB+snKe0gWGd+Xo=", + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#166", + "hostname": "node-au-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "144.48.39.226" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#166", + "hostname": "node-au-18.protonvpn.net", + "wgpubkey": "2dFWLSyohbnz02CORBKdh/bPh2PUqpfJISaWIN5/fHI=", + "stream": true, + "port_forward": true, + "ips": [ + "144.48.39.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#213", + "hostname": "node-au-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.216.220.98" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#213", + "hostname": "node-au-19.protonvpn.net", + "wgpubkey": "hPKSC01LiQsP+1pzPm98CFZXqkESBuwqdmMe+4ujeEs=", + "stream": true, + "port_forward": true, + "ips": [ + "103.216.220.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "server_name": "AU#145", + "hostname": "node-au-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.229.18" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "server_name": "AU#145", + "hostname": "node-au-16.protonvpn.net", + "wgpubkey": "22eXRgMiS/iVgGxxksbmlk1JDgFoV7RXPvGLuaCOPiY=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.229.18" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "server_name": "AU#133", + "hostname": "node-au-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.162" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "server_name": "AU#133", + "hostname": "node-au-20.protonvpn.net", + "wgpubkey": "Xmre1psA04kUzSUMuAq0QGQe3dqQBXOw8dzRCs6tYUs=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.162" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "server_name": "AU#230", + "hostname": "node-au-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.18" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "server_name": "AU#230", + "hostname": "node-au-13.protonvpn.net", + "wgpubkey": "mfJQLevPV800jb6E+dqgIZ8fjMfej5h0bBp9n/xuZRg=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.18" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#1", + "hostname": "node-au-11.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.236" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#1", + "hostname": "node-au-11.protonvpn.net", + "wgpubkey": "8kyi2e0ziUqhs+ooJYYI0yaVhv/bneUC1fhV5X2q/SE=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.236" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#14", + "hostname": "node-au-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.225" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#14", + "hostname": "node-au-12.protonvpn.net", + "wgpubkey": "KIm+13jfrrbXNPqYpd+WaWnCrgubWaSQnj8xn1Od8Fk=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.225" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#200", + "hostname": "node-au-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "180.149.229.130" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#200", + "hostname": "node-au-14.protonvpn.net", + "wgpubkey": "Trt8stfmQTk/VTzR3jx3SSAIi0SSOSDOTtMln9bd4jY=", + "stream": true, + "port_forward": true, + "ips": [ + "180.149.229.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.190" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-05.protonvpn.net", + "wgpubkey": "m42PUb14xPOnibFpJIt/NM+IJ/p2PkV5QJclCixwDEk=", + "secure_core": true, + "ips": [ + "185.159.157.190" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.191" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-06.protonvpn.net", + "wgpubkey": "yv5wDhSmTb0DeMLOp4g/xLeLcFDpz+wpcUvhaJtn83A=", + "secure_core": true, + "ips": [ + "185.159.157.191" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-07.protonvpn.net", + "wgpubkey": "zJ9EtguoeooUHMQa9G4GSBjCV+x+mGsBTbqPHNrzrFo=", + "secure_core": true, + "ips": [ + "79.135.104.50" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#33", + "hostname": "node-at-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.132.139.2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#33", + "hostname": "node-at-07.protonvpn.net", + "wgpubkey": "zJ9EtguoeooUHMQa9G4GSBjCV+x+mGsBTbqPHNrzrFo=", + "stream": true, + "port_forward": true, + "ips": [ + "91.132.139.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#61", + "hostname": "node-at-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.19.193" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#61", + "hostname": "node-at-05.protonvpn.net", + "wgpubkey": "m42PUb14xPOnibFpJIt/NM+IJ/p2PkV5QJclCixwDEk=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.19.193" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#75", + "hostname": "node-at-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.133.97" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#75", + "hostname": "node-at-06.protonvpn.net", + "wgpubkey": "yv5wDhSmTb0DeMLOp4g/xLeLcFDpz+wpcUvhaJtn83A=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.133.97" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#1", + "hostname": "az-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.124.1" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#1", + "hostname": "az-01.protonvpn.net", + "wgpubkey": "DhNpGwLwzXGSwKXySOUXcmJStXGoGdlrfPZUtmC1jwY=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.124.1" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#25", + "hostname": "az-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.16" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#25", + "hostname": "az-02.protonvpn.net", + "wgpubkey": "pTyAyofpye8wYQlCLHceUdtsb5tLrlAzxj7CJgFVcF0=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.16" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka", + "server_name": "BD#1", + "hostname": "bd-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "36.50.238.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "city": "Dhaka", + "server_name": "BD#1", + "hostname": "bd-01.protonvpn.net", + "wgpubkey": "c/eAClffFRwvFjz+If4N/FFnu7Q9orSG8c+ubQVvGTg=", + "stream": true, + "port_forward": true, + "ips": [ + "36.50.238.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#1", + "hostname": "by-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.147.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#1", + "hostname": "by-01.protonvpn.net", + "wgpubkey": "kX+0PkpEXz9r/rkRugH7SKTVxkDFh6yRCbuMsLHkemw=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.147.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#25", + "hostname": "by-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.24" + ] + }, + { + "vpn": "wireguard", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#25", + "hostname": "by-02.protonvpn.net", + "wgpubkey": "RUHO1OX9FqSvvJ+Ec8q2a2p6wnuvoMKx3Z2Op94qaCI=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.24" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "CH-BE#1", + "hostname": "node-be-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.227" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "CH-BE#1", + "hostname": "node-be-04.protonvpn.net", + "wgpubkey": "s4t00o/80zIqjUYTSpavg5kQ1lYRV7DXL1/yTG67JQI=", + "secure_core": true, + "ips": [ + "185.159.157.227" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.138" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-02.protonvpn.net", + "wgpubkey": "jiIKlk1tiyPgxJ4sP/xy4eCuibeeSlOhPmkNxFR/iA8=", + "secure_core": true, + "ips": [ + "185.159.158.138" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.217" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-05.protonvpn.net", + "wgpubkey": "ehajSjB9QTlhy30zbemS7ypGrQ+5Ej71jJ/+52JRkGI=", + "secure_core": true, + "ips": [ + "185.159.158.217" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#29", + "hostname": "node-be-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.50" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#29", + "hostname": "node-be-05.protonvpn.net", + "wgpubkey": "ehajSjB9QTlhy30zbemS7ypGrQ+5Ej71jJ/+52JRkGI=", + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#41", + "hostname": "node-be-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.178" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#41", + "hostname": "node-be-04.protonvpn.net", + "wgpubkey": "s4t00o/80zIqjUYTSpavg5kQ1lYRV7DXL1/yTG67JQI=", + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.178" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#58", + "hostname": "node-be-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.128.133.226" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#58", + "hostname": "node-be-02.protonvpn.net", + "wgpubkey": "jiIKlk1tiyPgxJ4sP/xy4eCuibeeSlOhPmkNxFR/iA8=", + "stream": true, + "port_forward": true, + "ips": [ + "45.128.133.226" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "server_name": "IS-BR#2", + "hostname": "node-br-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.177" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "server_name": "IS-BR#2", + "hostname": "node-br-04.protonvpn.net", + "wgpubkey": "0FnhfTGup0LHPmBCsuDN4tVqlgOaItDwayQokhWapFQ=", + "secure_core": true, + "ips": [ + "185.159.158.177" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#21", + "hostname": "node-br-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.251.97" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#21", + "hostname": "node-br-04.protonvpn.net", + "wgpubkey": "0FnhfTGup0LHPmBCsuDN4tVqlgOaItDwayQokhWapFQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.251.97" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#9", + "hostname": "node-br-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "188.241.177.226" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#9", + "hostname": "node-br-03.protonvpn.net", + "wgpubkey": "luPfTXionRhSL8Lvhz6ETA/aoWRlb9Dofqcr6ODMzgk=", + "stream": true, + "port_forward": true, + "ips": [ + "188.241.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "SE-BR#1", + "hostname": "node-br-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.89" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "SE-BR#1", + "hostname": "node-br-03.protonvpn.net", + "wgpubkey": "luPfTXionRhSL8Lvhz6ETA/aoWRlb9Dofqcr6ODMzgk=", + "secure_core": true, + "ips": [ + "185.159.156.89" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "server_name": "SE-BG#1", + "hostname": "node-bg-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.95" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "server_name": "SE-BG#1", + "hostname": "node-bg-02.protonvpn.net", + "wgpubkey": "uGWCYbDAzsaE7Ly2ZOX/9E5isl7Q0kXQX6TYFdAwtz0=", + "secure_core": true, + "ips": [ + "185.159.156.95" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "server_name": "BG#13", + "hostname": "node-bg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.55.225" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "server_name": "BG#13", + "hostname": "node-bg-02.protonvpn.net", + "wgpubkey": "uGWCYbDAzsaE7Ly2ZOX/9E5isl7Q0kXQX6TYFdAwtz0=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.55.225" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "server_name": "SE-KH#1", + "hostname": "node-kh-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.83" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "server_name": "SE-KH#1", + "hostname": "node-kh-01.protonvpn.net", + "wgpubkey": "D4M0O60wCBf1nYWOmXRfK7IpgG7VBBwQLeWVFLIqFG4=", + "secure_core": true, + "ips": [ + "185.159.156.83" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh", + "server_name": "KH#1", + "hostname": "node-kh-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.82" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "city": "Phnom Penh", + "server_name": "KH#1", + "hostname": "node-kh-01.protonvpn.net", + "wgpubkey": "D4M0O60wCBf1nYWOmXRfK7IpgG7VBBwQLeWVFLIqFG4=", + "port_forward": true, + "ips": [ + "188.215.235.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-09.protonvpn.net", + "wgpubkey": "4+452KKZ/BpmTeJ0Ua5YulgtVJKrFlw0AKKo4PtlYxM=", + "secure_core": true, + "ips": [ + "185.159.157.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.188" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-12.protonvpn.net", + "wgpubkey": "e0wrSY2v5Cwt8qyio3YTQNOvh3EYb5biJKpkuIdgNk8=", + "secure_core": true, + "ips": [ + "185.159.157.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.189" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-13.protonvpn.net", + "wgpubkey": "bXjH25gkRdWvXKahKY4iJNE+v/TVdT0uXE6WQJrX51Q=", + "secure_core": true, + "ips": [ + "185.159.157.189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.231" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-16.protonvpn.net", + "wgpubkey": "b5Wy36VwywSceq7wfLAe/QxcQ/UQC11txwkGes/CEWc=", + "secure_core": true, + "ips": [ + "185.159.157.231" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.230" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-18.protonvpn.net", + "wgpubkey": "RWj/yInIFoGovnNO3wKBcMrdPmDjckc0TVNgOSSZsgs=", + "secure_core": true, + "ips": [ + "185.159.157.230" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.89" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-20.protonvpn.net", + "wgpubkey": "2BEMYqJguSc+NP7pSMo65SGQtbg3ExtZgYGaZ6VHiD8=", + "secure_core": true, + "ips": [ + "185.159.157.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.90" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-21.protonvpn.net", + "wgpubkey": "ZBptfdRNxso1dS36d076Rmv7DDAaTs5qdVZE6vbzYwg=", + "secure_core": true, + "ips": [ + "185.159.157.90" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.88" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-22.protonvpn.net", + "wgpubkey": "nCSpFYxP/UfbfceoXRdWrdm8JLTsfM6oBFbqnvv7Dhw=", + "secure_core": true, + "ips": [ + "185.159.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.36" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-23.protonvpn.net", + "wgpubkey": "Y46WhKEXcCGgPn+LXHDrlD93hgVzrA2mju7XQBbyyXU=", + "secure_core": true, + "ips": [ + "79.135.104.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-24.protonvpn.net", + "wgpubkey": "nLx6LJgXWOtnlKV65ruYMGjiw4DERImZGCpN3lolm1I=", + "secure_core": true, + "ips": [ + "79.135.104.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.54" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-25.protonvpn.net", + "wgpubkey": "mS8GfqvUvazXvSYg7VHV7s8eEyU0yyGjJwYgdjHq23A=", + "secure_core": true, + "ips": [ + "79.135.104.54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-26.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.53" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-26.protonvpn.net", + "wgpubkey": "9mTDh5Tku0gxDdzqxnpnzItHQBm2h2B2hXnUHvhGCFw=", + "secure_core": true, + "ips": [ + "79.135.104.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-27.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.58" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-27.protonvpn.net", + "wgpubkey": "szjIaWj1+sWfmmap7eqtkgHDPl/y8HLHt+eeNbl/0w0=", + "secure_core": true, + "ips": [ + "79.135.104.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-28.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.59" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-28.protonvpn.net", + "wgpubkey": "UR8vjVYrrWYadCwLKiAabKTIdxM4yikmCXnvKWm89D8=", + "secure_core": true, + "ips": [ + "79.135.104.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.74" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-29.protonvpn.net", + "wgpubkey": "32BouQp7QBFlZTBW8goSEE+kDnyEqbjYGKWNOdqx4DM=", + "secure_core": true, + "ips": [ + "79.135.104.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.75" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-30.protonvpn.net", + "wgpubkey": "xw17Os6trr64hGzsWUPLYEkfDVcqxhAjp1xZ+RTSUnA=", + "secure_core": true, + "ips": [ + "79.135.104.75" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-31.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-31.protonvpn.net", + "wgpubkey": "7nj3Zh17Dzx+1SKIPE+dPfFmDbTTOggDK6SfK6tlEgE=", + "secure_core": true, + "ips": [ + "79.135.104.76" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-32.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-32.protonvpn.net", + "wgpubkey": "/A3MV6y7f3NMD0vGPNVqHMkUX/cJQGqM+PrUmxId/Xw=", + "secure_core": true, + "ips": [ + "79.135.104.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-33.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.78" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-33.protonvpn.net", + "wgpubkey": "rROokcTHabt9RJ++V8yfCelZVznfMZDLENtn8X1sLVA=", + "secure_core": true, + "ips": [ + "79.135.104.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-34.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.88" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-34.protonvpn.net", + "wgpubkey": "WajeJDezN7JFBe//v/VMsASFyBUk01Hlyvjb0T+dTjE=", + "secure_core": true, + "ips": [ + "79.135.104.88" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-36.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.89" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-36.protonvpn.net", + "wgpubkey": "9IRaE2wqcAVkN9ceUMFZa7roE1iDIVJEk5S4wMKsO30=", + "secure_core": true, + "ips": [ + "79.135.104.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-17.protonvpn.net", + "wgpubkey": "28hrybwV/NiiMXvl1ynBvDvEvs1m8ABUzyvkQ7+ST3I=", + "secure_core": true, + "ips": [ + "185.159.158.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.218" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-19.protonvpn.net", + "wgpubkey": "aQ2NoOYEObG9tDMwdc4VxK6hjW+eA0PLfgbH7ffmagU=", + "secure_core": true, + "ips": [ + "185.159.158.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-35.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-35.protonvpn.net", + "wgpubkey": "KiCvg9+bh7/ssQDALW3uXSTLaURS3mgZdi/O9CxlFXo=", + "secure_core": true, + "ips": [ + "185.159.158.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#109", + "hostname": "node-ca-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.18" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#109", + "hostname": "node-ca-18.protonvpn.net", + "wgpubkey": "RWj/yInIFoGovnNO3wKBcMrdPmDjckc0TVNgOSSZsgs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.18" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#121", + "hostname": "node-ca-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#121", + "hostname": "node-ca-19.protonvpn.net", + "wgpubkey": "aQ2NoOYEObG9tDMwdc4VxK6hjW+eA0PLfgbH7ffmagU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#133", + "hostname": "node-ca-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "172.98.82.146" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#133", + "hostname": "node-ca-20.protonvpn.net", + "wgpubkey": "2BEMYqJguSc+NP7pSMo65SGQtbg3ExtZgYGaZ6VHiD8=", + "stream": true, + "ips": [ + "172.98.82.146" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#157", + "hostname": "node-ca-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "176.113.74.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#157", + "hostname": "node-ca-24.protonvpn.net", + "wgpubkey": "nLx6LJgXWOtnlKV65ruYMGjiw4DERImZGCpN3lolm1I=", + "stream": true, + "port_forward": true, + "ips": [ + "176.113.74.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#169", + "hostname": "node-ca-27.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#169", + "hostname": "node-ca-27.protonvpn.net", + "wgpubkey": "szjIaWj1+sWfmmap7eqtkgHDPl/y8HLHt+eeNbl/0w0=", + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#201", + "hostname": "node-ca-28.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#201", + "hostname": "node-ca-28.protonvpn.net", + "wgpubkey": "UR8vjVYrrWYadCwLKiAabKTIdxM4yikmCXnvKWm89D8=", + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#85", + "hostname": "node-ca-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.50" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#85", + "hostname": "node-ca-16.protonvpn.net", + "wgpubkey": "b5Wy36VwywSceq7wfLAe/QxcQ/UQC11txwkGes/CEWc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#97", + "hostname": "node-ca-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.34" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#97", + "hostname": "node-ca-17.protonvpn.net", + "wgpubkey": "28hrybwV/NiiMXvl1ynBvDvEvs1m8ABUzyvkQ7+ST3I=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#10", + "hostname": "node-ca-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.33" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#10", + "hostname": "node-ca-12.protonvpn.net", + "wgpubkey": "e0wrSY2v5Cwt8qyio3YTQNOvh3EYb5biJKpkuIdgNk8=", + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.33" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#331", + "hostname": "node-ca-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#331", + "hostname": "node-ca-23.protonvpn.net", + "wgpubkey": "Y46WhKEXcCGgPn+LXHDrlD93hgVzrA2mju7XQBbyyXU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#343", + "hostname": "node-ca-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#343", + "hostname": "node-ca-25.protonvpn.net", + "wgpubkey": "mS8GfqvUvazXvSYg7VHV7s8eEyU0yyGjJwYgdjHq23A=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#355", + "hostname": "node-ca-26.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#355", + "hostname": "node-ca-26.protonvpn.net", + "wgpubkey": "9mTDh5Tku0gxDdzqxnpnzItHQBm2h2B2hXnUHvhGCFw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#368", + "hostname": "node-ca-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.55" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#368", + "hostname": "node-ca-29.protonvpn.net", + "wgpubkey": "32BouQp7QBFlZTBW8goSEE+kDnyEqbjYGKWNOdqx4DM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#394", + "hostname": "node-ca-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#394", + "hostname": "node-ca-30.protonvpn.net", + "wgpubkey": "xw17Os6trr64hGzsWUPLYEkfDVcqxhAjp1xZ+RTSUnA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#420", + "hostname": "node-ca-31.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.1" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#420", + "hostname": "node-ca-31.protonvpn.net", + "wgpubkey": "7nj3Zh17Dzx+1SKIPE+dPfFmDbTTOggDK6SfK6tlEgE=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#49", + "hostname": "node-ca-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "178.249.214.65" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#49", + "hostname": "node-ca-09.protonvpn.net", + "wgpubkey": "4+452KKZ/BpmTeJ0Ua5YulgtVJKrFlw0AKKo4PtlYxM=", + "stream": true, + "port_forward": true, + "ips": [ + "178.249.214.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#69", + "hostname": "node-ca-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.44" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#69", + "hostname": "node-ca-13.protonvpn.net", + "wgpubkey": "bXjH25gkRdWvXKahKY4iJNE+v/TVdT0uXE6WQJrX51Q=", + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#141", + "hostname": "node-ca-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.177.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#141", + "hostname": "node-ca-21.protonvpn.net", + "wgpubkey": "ZBptfdRNxso1dS36d076Rmv7DDAaTs5qdVZE6vbzYwg=", + "stream": true, + "ips": [ + "107.181.177.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#149", + "hostname": "node-ca-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.177.11" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#149", + "hostname": "node-ca-22.protonvpn.net", + "wgpubkey": "nCSpFYxP/UfbfceoXRdWrdm8JLTsfM6oBFbqnvv7Dhw=", + "stream": true, + "ips": [ + "107.181.177.11" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#446", + "hostname": "node-ca-32.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.1" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#446", + "hostname": "node-ca-32.protonvpn.net", + "wgpubkey": "/A3MV6y7f3NMD0vGPNVqHMkUX/cJQGqM+PrUmxId/Xw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#472", + "hostname": "node-ca-33.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#472", + "hostname": "node-ca-33.protonvpn.net", + "wgpubkey": "rROokcTHabt9RJ++V8yfCelZVznfMZDLENtn8X1sLVA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#498", + "hostname": "node-ca-34.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#498", + "hostname": "node-ca-34.protonvpn.net", + "wgpubkey": "WajeJDezN7JFBe//v/VMsASFyBUk01Hlyvjb0T+dTjE=", + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#524", + "hostname": "node-ca-35.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.65" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#524", + "hostname": "node-ca-35.protonvpn.net", + "wgpubkey": "KiCvg9+bh7/ssQDALW3uXSTLaURS3mgZdi/O9CxlFXo=", + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#550", + "hostname": "node-ca-36.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.95.193" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#550", + "hostname": "node-ca-36.protonvpn.net", + "wgpubkey": "9IRaE2wqcAVkN9ceUMFZa7roE1iDIVJEk5S4wMKsO30=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.95.193" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#10", + "hostname": "td-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.138.1" + ] + }, + { + "vpn": "wireguard", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#10", + "hostname": "td-01.protonvpn.net", + "wgpubkey": "cdZA8MjkEP4Zu9G8xplU+eIsJwatx1TQcVlmI016sBk=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.138.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#26", + "hostname": "td-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.176" + ] + }, + { + "vpn": "wireguard", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#26", + "hostname": "td-02.protonvpn.net", + "wgpubkey": "b1qF0vLbd79i0GPbeciXZg4OT6KQkDT6i96UqZBF9mM=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.176" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "server_name": "IS-CL#1", + "hostname": "node-cl-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.208" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "server_name": "IS-CL#1", + "hostname": "node-cl-04.protonvpn.net", + "wgpubkey": "F7z+SRMw1d3o1lQbWObWN7GBbHeUZNCC+PCpPy+SOQ8=", + "secure_core": true, + "ips": [ + "185.159.158.208" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "server_name": "CL#25", + "hostname": "node-cl-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.106" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "server_name": "CL#25", + "hostname": "node-cl-04.protonvpn.net", + "wgpubkey": "F7z+SRMw1d3o1lQbWObWN7GBbHeUZNCC+PCpPy+SOQ8=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.106" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "server_name": "CH-CO#1", + "hostname": "node-co-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.149" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "server_name": "CH-CO#1", + "hostname": "node-co-03.protonvpn.net", + "wgpubkey": "Qm1zsNxnGphhEJHJzhjd4oVHrHLgDZop+6+audZiKVI=", + "secure_core": true, + "ips": [ + "185.159.157.149" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "server_name": "IS-CO#1", + "hostname": "node-co-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.196" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "server_name": "IS-CO#1", + "hostname": "node-co-02.protonvpn.net", + "wgpubkey": "xbLiVjRF9EHLpv+5/WEEIqhOkJIBagdNI/+uaSjH1So=", + "secure_core": true, + "ips": [ + "185.159.158.196" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#17", + "hostname": "node-co-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.16.81" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#17", + "hostname": "node-co-03.protonvpn.net", + "wgpubkey": "Qm1zsNxnGphhEJHJzhjd4oVHrHLgDZop+6+audZiKVI=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.16.81" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#9", + "hostname": "node-co-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "66.90.82.26" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#9", + "hostname": "node-co-02.protonvpn.net", + "wgpubkey": "xbLiVjRF9EHLpv+5/WEEIqhOkJIBagdNI/+uaSjH1So=", + "stream": true, + "ips": [ + "66.90.82.26" + ] + }, + { + "vpn": "openvpn", + "country": "Comoros", + "city": "Moroni", + "server_name": "KM#25", + "hostname": "km-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.72" + ] + }, + { + "vpn": "wireguard", + "country": "Comoros", + "city": "Moroni", + "server_name": "KM#25", + "hostname": "km-02.protonvpn.net", + "wgpubkey": "q7+8NYctmZA7gT2Ul/NfZQ6Tn1cFBfM37qHM/gRqImI=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.72" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "server_name": "CH-CR#1", + "hostname": "node-cr-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.209" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "server_name": "CH-CR#1", + "hostname": "node-cr-02.protonvpn.net", + "wgpubkey": "kqT/fYDDcxeDHNn1sZQA8XVXZI98+9IjeDQ5gEPtMyg=", + "secure_core": true, + "ips": [ + "185.159.157.209" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "server_name": "CR#5", + "hostname": "node-cr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.104" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "city": "San Jose", + "server_name": "CR#5", + "hostname": "node-cr-02.protonvpn.net", + "wgpubkey": "kqT/fYDDcxeDHNn1sZQA8XVXZI98+9IjeDQ5gEPtMyg=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.104" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.35" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-01.protonvpn.net", + "wgpubkey": "arg6ngFb3Q1rfe7tsfWsRhv4Tg0EWwYFYBxMjDuCOW8=", + "secure_core": true, + "ips": [ + "185.159.157.35" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.35" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-02.protonvpn.net", + "wgpubkey": "4NPDmW5UOOvg2E23GoiItImBHW3LmtPBIVfgeoEC0SI=", + "secure_core": true, + "ips": [ + "79.135.104.35" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#1", + "hostname": "node-hr-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "178.218.167.210" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#1", + "hostname": "node-hr-01.protonvpn.net", + "wgpubkey": "arg6ngFb3Q1rfe7tsfWsRhv4Tg0EWwYFYBxMjDuCOW8=", + "ips": [ + "178.218.167.210" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#10", + "hostname": "node-hr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.139.48.242" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#10", + "hostname": "node-hr-02.protonvpn.net", + "wgpubkey": "4NPDmW5UOOvg2E23GoiItImBHW3LmtPBIVfgeoEC0SI=", + "stream": true, + "port_forward": true, + "ips": [ + "45.139.48.242" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "server_name": "CH-CY#1", + "hostname": "node-cy-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.165" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "server_name": "CH-CY#1", + "hostname": "node-cy-01.protonvpn.net", + "wgpubkey": "e3RzM0pr0CkENa045wi0oBMzL3D6kfHbGW5rHWSOtig=", + "secure_core": true, + "ips": [ + "185.159.157.165" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Limassol", + "server_name": "CY#1", + "hostname": "node-cy-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "85.132.252.34" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "city": "Limassol", + "server_name": "CY#1", + "hostname": "node-cy-01.protonvpn.net", + "wgpubkey": "e3RzM0pr0CkENa045wi0oBMzL3D6kfHbGW5rHWSOtig=", + "stream": true, + "port_forward": true, + "ips": [ + "85.132.252.34" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "server_name": "CH-CZ#1", + "hostname": "node-cz-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.217" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "server_name": "CH-CZ#1", + "hostname": "node-cz-04.protonvpn.net", + "wgpubkey": "oNctPLp48sX2jk6U9hoER6QT4aGp6TEAUydA6VuA8h8=", + "secure_core": true, + "ips": [ + "185.159.157.217" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "server_name": "IS-CZ#1", + "hostname": "node-cz-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.225" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "server_name": "IS-CZ#1", + "hostname": "node-cz-05.protonvpn.net", + "wgpubkey": "sDVKmYDevvGvpKNei9f2SDbx5FMFi6FqBmuRYG/EFg8=", + "secure_core": true, + "ips": [ + "185.159.158.225" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#33", + "hostname": "node-cz-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.129.18" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#33", + "hostname": "node-cz-05.protonvpn.net", + "wgpubkey": "sDVKmYDevvGvpKNei9f2SDbx5FMFi6FqBmuRYG/EFg8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.129.18" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#45", + "hostname": "node-cz-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.235.33" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#45", + "hostname": "node-cz-04.protonvpn.net", + "wgpubkey": "oNctPLp48sX2jk6U9hoER6QT4aGp6TEAUydA6VuA8h8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.235.33" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.37" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-03.protonvpn.net", + "wgpubkey": "vOwLnR7lMrKeONP0Idl2S5vUonggF8KpKQ66jx+QJnc=", + "secure_core": true, + "ips": [ + "185.159.157.37" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.239" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-05.protonvpn.net", + "wgpubkey": "sbjnjFtxUz4dxYfNL7WOVf1StMjjAhkiPLCPtVtlhRI=", + "secure_core": true, + "ips": [ + "185.159.157.239" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.238" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-06.protonvpn.net", + "wgpubkey": "d3VXpY1SJGxlx8Cq3trvJBkZvilHF6BdSynqphx+iw8=", + "secure_core": true, + "ips": [ + "185.159.157.238" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#13", + "hostname": "node-dk-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "193.29.107.242" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#13", + "hostname": "node-dk-03.protonvpn.net", + "wgpubkey": "vOwLnR7lMrKeONP0Idl2S5vUonggF8KpKQ66jx+QJnc=", + "stream": true, + "ips": [ + "193.29.107.242" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#49", + "hostname": "node-dk-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.162" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#49", + "hostname": "node-dk-05.protonvpn.net", + "wgpubkey": "sbjnjFtxUz4dxYfNL7WOVf1StMjjAhkiPLCPtVtlhRI=", + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.162" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#66", + "hostname": "node-dk-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.98" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#66", + "hostname": "node-dk-06.protonvpn.net", + "wgpubkey": "d3VXpY1SJGxlx8Cq3trvJBkZvilHF6BdSynqphx+iw8=", + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.98" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "server_name": "IS-EC#1", + "hostname": "node-ec-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.202" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "server_name": "IS-EC#1", + "hostname": "node-ec-01.protonvpn.net", + "wgpubkey": "dLPbOg/+D3oFCz5iiUVB9ILPOVx9vBB0CCVtXiTPDGE=", + "secure_core": true, + "ips": [ + "185.159.158.202" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito", + "server_name": "EC#1", + "hostname": "node-ec-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.103" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "city": "Quito", + "server_name": "EC#1", + "hostname": "node-ec-01.protonvpn.net", + "wgpubkey": "dLPbOg/+D3oFCz5iiUVB9ILPOVx9vBB0CCVtXiTPDGE=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.103" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "server_name": "SE-EG#1", + "hostname": "node-eg-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.84" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "server_name": "SE-EG#1", + "hostname": "node-eg-01.protonvpn.net", + "wgpubkey": "DUtOX4QuHcmlBk7bI5eoCSp8RLqV7NPIU8pywn1w0k0=", + "secure_core": true, + "ips": [ + "185.159.156.84" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#1", + "hostname": "node-eg-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.82" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#1", + "hostname": "node-eg-01.protonvpn.net", + "wgpubkey": "DUtOX4QuHcmlBk7bI5eoCSp8RLqV7NPIU8pywn1w0k0=", + "port_forward": true, + "ips": [ + "188.214.122.82" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#13", + "hostname": "eg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.212" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#13", + "hostname": "eg-02.protonvpn.net", + "wgpubkey": "fD8gErK2xl/yI01WCOl78xNFGuEXdZjr/MYN3qzH03I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.212" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "city": "San Salvador", + "server_name": "SV#1", + "hostname": "sv-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.146.1" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "city": "San Salvador", + "server_name": "SV#1", + "hostname": "sv-01.protonvpn.net", + "wgpubkey": "6FYsfDoKLUN09h9FxloEkmUaMdbVcFzX5YpHa9mfr3k=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.146.1" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.106" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "secure_core": true, + "ips": [ + "185.159.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.28" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-02.protonvpn.net", + "wgpubkey": "dq6F8vkRFuDM8jw4rSm+d4q21K8gAS8/6qgDSwdIFEk=", + "secure_core": true, + "ips": [ + "79.135.104.28" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "SE-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.49" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "SE-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "secure_core": true, + "ips": [ + "185.159.156.49" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "165.231.178.10" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "ips": [ + "165.231.178.10" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#10", + "hostname": "node-ee-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "95.153.31.114" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#10", + "hostname": "node-ee-02.protonvpn.net", + "wgpubkey": "dq6F8vkRFuDM8jw4rSm+d4q21K8gAS8/6qgDSwdIFEk=", + "stream": true, + "port_forward": true, + "ips": [ + "95.153.31.114" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.107" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.157.107" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.69" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-03.protonvpn.net", + "wgpubkey": "ievGDrxV0dKcjO7EM662c1Ziy0PVct0Ujse3CT4NQQw=", + "secure_core": true, + "ips": [ + "79.135.104.69" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.28" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.27" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.156.28" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.156.27" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.92" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-02.protonvpn.net", + "wgpubkey": "cdx8bADYVWBlHkg6Ekl6k2y0kjkYNFagN2ttPC128HU=", + "secure_core": true, + "ips": [ + "185.159.156.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "194.34.132.55" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "stream": true, + "ips": [ + "194.34.132.55" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#13", + "hostname": "node-fi-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.90.60.210" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#13", + "hostname": "node-fi-03.protonvpn.net", + "wgpubkey": "ievGDrxV0dKcjO7EM662c1Ziy0PVct0Ujse3CT4NQQw=", + "stream": true, + "port_forward": true, + "ips": [ + "185.90.60.210" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#5", + "hostname": "node-fi-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "196.196.203.202" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#5", + "hostname": "node-fi-02.protonvpn.net", + "wgpubkey": "cdx8bADYVWBlHkg6Ekl6k2y0kjkYNFagN2ttPC128HU=", + "stream": true, + "ips": [ + "196.196.203.202" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-15.protonvpn.net", + "wgpubkey": "pSxXjpwlHAXXGJ2s3aRpAFLTNJXz60HKYWqKJqClo3Q=", + "secure_core": true, + "ips": [ + "185.159.157.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.220" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-16.protonvpn.net", + "wgpubkey": "Z/l/+DAz1YilevRfmEMMjNbzYOVCB0sOJc3vVKhQ/gw=", + "secure_core": true, + "ips": [ + "185.159.157.220" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.221" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-17.protonvpn.net", + "wgpubkey": "mbgw7Sxzok7Px1T/cTLDvWEdbU8bWWS00aOhAJy2omQ=", + "secure_core": true, + "ips": [ + "185.159.157.221" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.222" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-18.protonvpn.net", + "wgpubkey": "JsWZdbNQ38Enz3AYGJLI6HVF5I5RqfrIkkcwsznAGSs=", + "secure_core": true, + "ips": [ + "185.159.157.222" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.223" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-19.protonvpn.net", + "wgpubkey": "XAlwDb8B3OHpzlLp4Rj1BtfCdPIPSm1FuYVYof7k3EA=", + "secure_core": true, + "ips": [ + "185.159.157.223" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.224" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-20.protonvpn.net", + "wgpubkey": "510n8TGQa8ljjuv+qIc01BSfapR6tNvcfF/WLqamRiI=", + "secure_core": true, + "ips": [ + "185.159.157.224" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.225" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-21.protonvpn.net", + "wgpubkey": "zeGY3uQTDqTiaxp6vGqFzXck1TPNnzY+JZ2iNI2BrRU=", + "secure_core": true, + "ips": [ + "185.159.157.225" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.226" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-22.protonvpn.net", + "wgpubkey": "iPDwM6fotjFv+lwrXT5GT55pkovH673toteabkR+OjY=", + "secure_core": true, + "ips": [ + "185.159.157.226" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-23.protonvpn.net", + "wgpubkey": "m8vo9+NTxgkGJ1eV2nP9AyanXxeSlztAhIhQWDYPfnc=", + "secure_core": true, + "ips": [ + "79.135.104.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-24.protonvpn.net", + "wgpubkey": "DG6UsR8aCBawKEw9FQoGDBIxJHinM7oedppLYZFxA0o=", + "secure_core": true, + "ips": [ + "79.135.104.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "FR#13-TOR", + "hostname": "fr-13-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "45.128.134.199" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "FR#13-TOR", + "hostname": "fr-13-tor.protonvpn.net", + "wgpubkey": "rVMcE/5JmvHci9tJMaMmUtQS274yCMeO3fW8UnwGJEM=", + "tor": true, + "ips": [ + "45.128.134.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.68" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-07.protonvpn.net", + "wgpubkey": "KG3FkqwD08/FBctMtWMWjaEMkUZS3qdcjztiUSWBCVc=", + "secure_core": true, + "ips": [ + "185.159.156.68" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.93" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-13.protonvpn.net", + "wgpubkey": "V9f3hsjREcRebCDIoKJ6rTPqR/g89maWZSua6H73B1w=", + "secure_core": true, + "ips": [ + "185.159.156.93" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.94" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-14.protonvpn.net", + "wgpubkey": "QkRTXcTgRJGTjSFe/Qaa8l6hi7NbITvGFRSdhUpMvSw=", + "secure_core": true, + "ips": [ + "185.159.156.94" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "server_name": "FR#182", + "hostname": "node-fr-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.129" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "server_name": "FR#182", + "hostname": "node-fr-23.protonvpn.net", + "wgpubkey": "m8vo9+NTxgkGJ1eV2nP9AyanXxeSlztAhIhQWDYPfnc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.129" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "server_name": "FR#208", + "hostname": "node-fr-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.156" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "server_name": "FR#208", + "hostname": "node-fr-24.protonvpn.net", + "wgpubkey": "DG6UsR8aCBawKEw9FQoGDBIxJHinM7oedppLYZFxA0o=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.156" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#109", + "hostname": "node-fr-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#109", + "hostname": "node-fr-17.protonvpn.net", + "wgpubkey": "mbgw7Sxzok7Px1T/cTLDvWEdbU8bWWS00aOhAJy2omQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#121", + "hostname": "node-fr-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.50" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#121", + "hostname": "node-fr-18.protonvpn.net", + "wgpubkey": "JsWZdbNQ38Enz3AYGJLI6HVF5I5RqfrIkkcwsznAGSs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#133", + "hostname": "node-fr-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.66" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#133", + "hostname": "node-fr-19.protonvpn.net", + "wgpubkey": "XAlwDb8B3OHpzlLp4Rj1BtfCdPIPSm1FuYVYof7k3EA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.66" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#146", + "hostname": "node-fr-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.82" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#146", + "hostname": "node-fr-20.protonvpn.net", + "wgpubkey": "510n8TGQa8ljjuv+qIc01BSfapR6tNvcfF/WLqamRiI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#158", + "hostname": "node-fr-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.98" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#158", + "hostname": "node-fr-21.protonvpn.net", + "wgpubkey": "zeGY3uQTDqTiaxp6vGqFzXck1TPNnzY+JZ2iNI2BrRU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#170", + "hostname": "node-fr-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.114" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#170", + "hostname": "node-fr-22.protonvpn.net", + "wgpubkey": "iPDwM6fotjFv+lwrXT5GT55pkovH673toteabkR+OjY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.114" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#234", + "hostname": "node-fr-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.128.134.194" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#234", + "hostname": "node-fr-07.protonvpn.net", + "wgpubkey": "KG3FkqwD08/FBctMtWMWjaEMkUZS3qdcjztiUSWBCVc=", + "stream": true, + "port_forward": true, + "ips": [ + "45.128.134.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#61", + "hostname": "node-fr-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.193" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#61", + "hostname": "node-fr-13.protonvpn.net", + "wgpubkey": "V9f3hsjREcRebCDIoKJ6rTPqR/g89maWZSua6H73B1w=", + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.193" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#73", + "hostname": "node-fr-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.72" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#73", + "hostname": "node-fr-14.protonvpn.net", + "wgpubkey": "QkRTXcTgRJGTjSFe/Qaa8l6hi7NbITvGFRSdhUpMvSw=", + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.72" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#85", + "hostname": "node-fr-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#85", + "hostname": "node-fr-15.protonvpn.net", + "wgpubkey": "pSxXjpwlHAXXGJ2s3aRpAFLTNJXz60HKYWqKJqClo3Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#97", + "hostname": "node-fr-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#97", + "hostname": "node-fr-16.protonvpn.net", + "wgpubkey": "Z/l/+DAz1YilevRfmEMMjNbzYOVCB0sOJc3vVKhQ/gw=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.18" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "server_name": "IS-GE#1", + "hostname": "node-ge-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.182" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "server_name": "IS-GE#1", + "hostname": "node-ge-03.protonvpn.net", + "wgpubkey": "7A19/lMrfmpFZARivC7FS8DcGxMn5uUq9LcOqFjzlDo=", + "secure_core": true, + "ips": [ + "185.159.158.182" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi", + "server_name": "GE#07", + "hostname": "node-ge-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "138.199.53.236" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "city": "Tbilisi", + "server_name": "GE#07", + "hostname": "node-ge-03.protonvpn.net", + "wgpubkey": "7A19/lMrfmpFZARivC7FS8DcGxMn5uUq9LcOqFjzlDo=", + "ips": [ + "138.199.53.236" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.184" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-16.protonvpn.net", + "wgpubkey": "XcWEb0DMaFBex2HD2DVUStifh6wBZe9ELo2N/KLlMHc=", + "secure_core": true, + "ips": [ + "185.159.157.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.183" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-17.protonvpn.net", + "wgpubkey": "9+CorlxrTsQR7qjIOVKsEkk8Z7UUS5WT3R1ccF7a0ic=", + "secure_core": true, + "ips": [ + "185.159.157.183" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.57" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-18.protonvpn.net", + "wgpubkey": "XEhzlc2pX8uDChBR65mlzijG6KaoatbiEND8mRdjVD8=", + "secure_core": true, + "ips": [ + "185.159.157.57" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.58" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-19.protonvpn.net", + "wgpubkey": "gW9yJRNQgnWPUB0qbRjRGrnvbYOhPqypmp1cW961XEM=", + "secure_core": true, + "ips": [ + "185.159.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.30" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-20.protonvpn.net", + "wgpubkey": "lhESmyI5iT1MdL/H4toiuDR2oovh/bDxvGvH1O2VYmQ=", + "secure_core": true, + "ips": [ + "79.135.104.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.31" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-21.protonvpn.net", + "wgpubkey": "tBLnlY4CJsNGmh6qbDZTAogZZ+jIOvt4b2mCA8i97U4=", + "secure_core": true, + "ips": [ + "79.135.104.31" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-22.protonvpn.net", + "wgpubkey": "hOoBBy//7mddXPz1SybzWB3zK95SQCcPyI/DmxfULXk=", + "secure_core": true, + "ips": [ + "79.135.104.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.37" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-23.protonvpn.net", + "wgpubkey": "8ex7XSdk16ZIP+NeMqrU79rSHCY7oVQHqLGrM7vYsRs=", + "secure_core": true, + "ips": [ + "79.135.104.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "DE#53-TOR", + "hostname": "de-53-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "194.126.177.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "DE#53-TOR", + "hostname": "de-53-tor.protonvpn.net", + "wgpubkey": "xBNmGnjDcqdq86B09QpwMBoxhZlgqEE1y9aTZG+RMEc=", + "tor": true, + "ips": [ + "194.126.177.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.178" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-12.protonvpn.net", + "wgpubkey": "JC6QcZKfheALT/vjCz9ozYVC9AVjqv0rrxfrS8FWVQk=", + "secure_core": true, + "ips": [ + "185.159.158.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-13.protonvpn.net", + "wgpubkey": "fvHmPj3wAKolN80+/KJ3a/DFjMToCsr3iPGwX8+og1g=", + "secure_core": true, + "ips": [ + "185.159.158.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-14.protonvpn.net", + "wgpubkey": "E+bqV5VyoZ35D3IMdlqdTovZ+YOI0PbGFBZ+3DsRTiE=", + "secure_core": true, + "ips": [ + "185.159.158.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.119" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-25.protonvpn.net", + "wgpubkey": "vFExvD05bttJUYX5qltzXk4L8hA2Tr2kGRMElb6a9GA=", + "secure_core": true, + "ips": [ + "185.159.158.119" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.98" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-15.protonvpn.net", + "wgpubkey": "9xUSjs4KYUv0ySbhrYjwN/49TpHfmIcI/2KdGkOEGz0=", + "secure_core": true, + "ips": [ + "185.159.156.98" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.29" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-24.protonvpn.net", + "wgpubkey": "MOLPnnM2MSq7s7KqAgpm+AWpmzFAtuE46qBFHeLg5Tk=", + "secure_core": true, + "ips": [ + "185.159.156.29" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#186", + "hostname": "node-de-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.130" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#186", + "hostname": "node-de-24.protonvpn.net", + "wgpubkey": "MOLPnnM2MSq7s7KqAgpm+AWpmzFAtuE46qBFHeLg5Tk=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#214", + "hostname": "node-de-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.98" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#214", + "hostname": "node-de-25.protonvpn.net", + "wgpubkey": "vFExvD05bttJUYX5qltzXk4L8hA2Tr2kGRMElb6a9GA=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.98" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#510", + "hostname": "node-de-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.36.76.130" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#510", + "hostname": "node-de-15.protonvpn.net", + "wgpubkey": "9xUSjs4KYUv0ySbhrYjwN/49TpHfmIcI/2KdGkOEGz0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.36.76.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#242", + "hostname": "node-de-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.46" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#242", + "hostname": "node-de-20.protonvpn.net", + "wgpubkey": "lhESmyI5iT1MdL/H4toiuDR2oovh/bDxvGvH1O2VYmQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.46" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#260", + "hostname": "node-de-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.33" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#260", + "hostname": "node-de-21.protonvpn.net", + "wgpubkey": "tBLnlY4CJsNGmh6qbDZTAogZZ+jIOvt4b2mCA8i97U4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.33" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#312", + "hostname": "node-de-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.225" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#312", + "hostname": "node-de-18.protonvpn.net", + "wgpubkey": "XEhzlc2pX8uDChBR65mlzijG6KaoatbiEND8mRdjVD8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.225" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#329", + "hostname": "node-de-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.238" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#329", + "hostname": "node-de-19.protonvpn.net", + "wgpubkey": "gW9yJRNQgnWPUB0qbRjRGrnvbYOhPqypmp1cW961XEM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.238" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#346", + "hostname": "node-de-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.97" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#346", + "hostname": "node-de-22.protonvpn.net", + "wgpubkey": "hOoBBy//7mddXPz1SybzWB3zK95SQCcPyI/DmxfULXk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.97" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#368", + "hostname": "node-de-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.110" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#368", + "hostname": "node-de-23.protonvpn.net", + "wgpubkey": "8ex7XSdk16ZIP+NeMqrU79rSHCY7oVQHqLGrM7vYsRs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.110" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#390", + "hostname": "node-de-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#390", + "hostname": "node-de-12.protonvpn.net", + "wgpubkey": "JC6QcZKfheALT/vjCz9ozYVC9AVjqv0rrxfrS8FWVQk=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#414", + "hostname": "node-de-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#414", + "hostname": "node-de-13.protonvpn.net", + "wgpubkey": "fvHmPj3wAKolN80+/KJ3a/DFjMToCsr3iPGwX8+og1g=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#438", + "hostname": "node-de-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#438", + "hostname": "node-de-17.protonvpn.net", + "wgpubkey": "9+CorlxrTsQR7qjIOVKsEkk8Z7UUS5WT3R1ccF7a0ic=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#462", + "hostname": "node-de-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.13" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#462", + "hostname": "node-de-16.protonvpn.net", + "wgpubkey": "XcWEb0DMaFBex2HD2DVUStifh6wBZe9ELo2N/KLlMHc=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.13" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#486", + "hostname": "node-de-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#486", + "hostname": "node-de-14.protonvpn.net", + "wgpubkey": "E+bqV5VyoZ35D3IMdlqdTovZ+YOI0PbGFBZ+3DsRTiE=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.8" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "server_name": "CH-GR#1", + "hostname": "node-gr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.65" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "server_name": "CH-GR#1", + "hostname": "node-gr-01.protonvpn.net", + "wgpubkey": "DTaJG0Ww2G2Gtv7GVlkiOIv9cv8r9yQ0ghNPQf7kDAw=", + "secure_core": true, + "ips": [ + "185.159.157.65" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "server_name": "GR#1", + "hostname": "node-gr-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.51.134.194" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "server_name": "GR#1", + "hostname": "node-gr-01.protonvpn.net", + "wgpubkey": "DTaJG0Ww2G2Gtv7GVlkiOIv9cv8r9yQ0ghNPQf7kDAw=", + "port_forward": true, + "ips": [ + "185.51.134.194" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "CH-HK#1", + "hostname": "node-hk-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.232" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "CH-HK#1", + "hostname": "node-hk-06.protonvpn.net", + "wgpubkey": "/AEriTfHYyrhW+bj1cDy9RroL4j4o1tv9sw4m+aB8lA=", + "secure_core": true, + "ips": [ + "185.159.157.232" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.195" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-04.protonvpn.net", + "wgpubkey": "b04WYLiUOie4OkYbneVXdqnmoGKZyU7Vpfb9N+Qf31c=", + "secure_core": true, + "ips": [ + "185.159.158.195" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.220" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-05.protonvpn.net", + "wgpubkey": "giBCbR12im6jWSvwEQ0mJ1PH8NUhRFUDedozBSYC8n4=", + "secure_core": true, + "ips": [ + "185.159.158.220" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#27-TOR", + "hostname": "hk-27-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "156.146.45.139" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#27-TOR", + "hostname": "hk-27-tor.protonvpn.net", + "wgpubkey": "69aqlYVoz2XbbnHQi5iglZ3ISvD6HHTWeRAHMrqDPA0=", + "tor": true, + "ips": [ + "156.146.45.139" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#28", + "hostname": "node-hk-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#28", + "hostname": "node-hk-05.protonvpn.net", + "wgpubkey": "giBCbR12im6jWSvwEQ0mJ1PH8NUhRFUDedozBSYC8n4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#40", + "hostname": "node-hk-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.98" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#40", + "hostname": "node-hk-06.protonvpn.net", + "wgpubkey": "/AEriTfHYyrhW+bj1cDy9RroL4j4o1tv9sw4m+aB8lA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.98" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#52", + "hostname": "node-hk-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.45.129" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#52", + "hostname": "node-hk-04.protonvpn.net", + "wgpubkey": "b04WYLiUOie4OkYbneVXdqnmoGKZyU7Vpfb9N+Qf31c=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.45.129" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.242" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-03.protonvpn.net", + "wgpubkey": "AyifXfoAYFImnhwHKZpIvl4Mf0O1ecysYyInnaY13kQ=", + "secure_core": true, + "ips": [ + "185.159.157.242" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.241" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-04.protonvpn.net", + "wgpubkey": "JhYnH6WPDoqd5kldH4Zd1pQLj9mBDxRwNt4uuMI0eRo=", + "secure_core": true, + "ips": [ + "185.159.157.241" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#13", + "hostname": "node-hu-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.210" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#13", + "hostname": "node-hu-03.protonvpn.net", + "wgpubkey": "AyifXfoAYFImnhwHKZpIvl4Mf0O1ecysYyInnaY13kQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.210" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#25", + "hostname": "node-hu-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.146" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#25", + "hostname": "node-hu-04.protonvpn.net", + "wgpubkey": "JhYnH6WPDoqd5kldH4Zd1pQLj9mBDxRwNt4uuMI0eRo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.146" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "server_name": "IS#9-TOR", + "hostname": "is-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.158.193" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "server_name": "IS#9-TOR", + "hostname": "is-09-tor.protonvpn.net", + "wgpubkey": "dHJAyrEbw/idZbymvgU2d4+ksyDrlK+xyes8lXIKpVw=", + "tor": true, + "ips": [ + "185.159.158.193" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#10", + "hostname": "node-is-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.1" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#10", + "hostname": "node-is-01.protonvpn.net", + "wgpubkey": "yKbYe2XwbeNN9CuPZcwMF/lJp6a62NEGiHCCfpfxrnE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.1" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#22", + "hostname": "node-is-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.2" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#22", + "hostname": "node-is-02.protonvpn.net", + "wgpubkey": "nnG3a0fTkyAfCSRWNXR32Z3qFP2/Jk0ATux1IszyWmc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.82" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "secure_core": true, + "ips": [ + "185.159.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.56" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "secure_core": true, + "ips": [ + "185.159.157.56" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "IS-IN#1", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.234" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "IS-IN#1", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "secure_core": true, + "ips": [ + "185.159.158.234" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "SE-IN#1", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.128" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "SE-IN#1", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "secure_core": true, + "ips": [ + "185.159.156.128" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Mumbai", + "server_name": "IN#26", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.82" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "Mumbai", + "server_name": "IN#26", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.82" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "New Delhi", + "server_name": "IN#13", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.18" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "New Delhi", + "server_name": "IN#13", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.18" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "server_name": "CH-ID#1", + "hostname": "node-id-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "server_name": "CH-ID#1", + "hostname": "node-id-01.protonvpn.net", + "wgpubkey": "HClQJ3bkFS1VZPcbGv50OSwWXR1XBqNf/kakHIciHFk=", + "secure_core": true, + "ips": [ + "185.159.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "server_name": "ID#1", + "hostname": "node-id-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.60.86" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "server_name": "ID#1", + "hostname": "node-id-01.protonvpn.net", + "wgpubkey": "HClQJ3bkFS1VZPcbGv50OSwWXR1XBqNf/kakHIciHFk=", + "port_forward": true, + "ips": [ + "138.199.60.86" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "CH-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.153" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "CH-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "secure_core": true, + "ips": [ + "185.159.157.153" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.118" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.120" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "secure_core": true, + "ips": [ + "185.159.158.118" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "secure_core": true, + "ips": [ + "185.159.158.120" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.221" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "secure_core": true, + "ips": [ + "185.159.158.221" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "5.157.13.2" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "ips": [ + "5.157.13.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#10", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.48.2" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#10", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.48.2" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "server_name": "IS-IL#1", + "hostname": "node-il-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.194" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "server_name": "IS-IL#1", + "hostname": "node-il-03.protonvpn.net", + "wgpubkey": "fuzsEMv8BUmBY+Izb8+tN9Z1xaAD7/Cazj96hL8BHC8=", + "secure_core": true, + "ips": [ + "185.159.158.194" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "server_name": "SE-IL#1", + "hostname": "node-il-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.124" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "server_name": "SE-IL#1", + "hostname": "node-il-04.protonvpn.net", + "wgpubkey": "6IPYGbtvg79F4rmEffmQtDXQD/vBnz+qoq0xpGNpIBk=", + "secure_core": true, + "ips": [ + "185.159.156.124" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Petah Tikva", + "server_name": "IL#9", + "hostname": "node-il-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.185.134.146" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Petah Tikva", + "server_name": "IL#9", + "hostname": "node-il-03.protonvpn.net", + "wgpubkey": "fuzsEMv8BUmBY+Izb8+tN9Z1xaAD7/Cazj96hL8BHC8=", + "ips": [ + "185.185.134.146" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "server_name": "IL#14", + "hostname": "node-il-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "169.150.226.161" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "server_name": "IL#14", + "hostname": "node-il-04.protonvpn.net", + "wgpubkey": "6IPYGbtvg79F4rmEffmQtDXQD/vBnz+qoq0xpGNpIBk=", + "port_forward": true, + "ips": [ + "169.150.226.161" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.237" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-04.protonvpn.net", + "wgpubkey": "QAx4kzh5ejS9RksrRPqv8u/d0eY3WMrMyvykPJZTN3M=", + "secure_core": true, + "ips": [ + "185.159.157.237" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-05.protonvpn.net", + "wgpubkey": "Eq21XF3A63IbiEDBdIj5T2uKXtHZDj7mfiJIXVcOQXk=", + "secure_core": true, + "ips": [ + "185.159.157.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.234" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-06.protonvpn.net", + "wgpubkey": "WeqHIUm2kUqZVMcr+6r5qxgM1FT9N/s/BAbEBPF/O0Q=", + "secure_core": true, + "ips": [ + "185.159.157.234" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.33" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-07.protonvpn.net", + "wgpubkey": "+PFYUIjcyPinyV/8l0AJZMB+RYDjn7nWoKxZ+9vqaQ0=", + "secure_core": true, + "ips": [ + "79.135.104.33" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#17", + "hostname": "node-it-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.34" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#17", + "hostname": "node-it-04.protonvpn.net", + "wgpubkey": "QAx4kzh5ejS9RksrRPqv8u/d0eY3WMrMyvykPJZTN3M=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.34" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#29", + "hostname": "node-it-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.18" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#29", + "hostname": "node-it-05.protonvpn.net", + "wgpubkey": "Eq21XF3A63IbiEDBdIj5T2uKXtHZDj7mfiJIXVcOQXk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.18" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#41", + "hostname": "node-it-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.2" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#41", + "hostname": "node-it-06.protonvpn.net", + "wgpubkey": "WeqHIUm2kUqZVMcr+6r5qxgM1FT9N/s/BAbEBPF/O0Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.2" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#53", + "hostname": "node-it-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.237.129" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#53", + "hostname": "node-it-07.protonvpn.net", + "wgpubkey": "+PFYUIjcyPinyV/8l0AJZMB+RYDjn7nWoKxZ+9vqaQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.237.129" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.80" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "secure_core": true, + "ips": [ + "185.159.157.80" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.208" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-29.protonvpn.net", + "wgpubkey": "d38wbEHG3sJG+0s34lCGtYU2AwZ9E/WrP3qM9gL7Xi8=", + "secure_core": true, + "ips": [ + "185.159.157.208" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.40" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-30.protonvpn.net", + "wgpubkey": "dMSVWPppIq7F2mVK99Le8G83r+b18Jx07spFvwmrPwg=", + "secure_core": true, + "ips": [ + "79.135.104.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.37" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "secure_core": true, + "ips": [ + "185.159.156.37" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.56" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-14.protonvpn.net", + "wgpubkey": "lDqI02+FFU6CeisxCSKxVgi28TKT9SowZybo1M4abEU=", + "secure_core": true, + "ips": [ + "185.159.156.56" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "server_name": "JP#200", + "hostname": "node-jp-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.14.71.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "server_name": "JP#200", + "hostname": "node-jp-14.protonvpn.net", + "wgpubkey": "lDqI02+FFU6CeisxCSKxVgi28TKT9SowZybo1M4abEU=", + "stream": true, + "port_forward": true, + "ips": [ + "45.14.71.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "server_name": "JP-FREE#3", + "hostname": "node-jp-13.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "45.14.71.5" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "server_name": "JP-FREE#3", + "hostname": "node-jp-13.protonvpn.net", + "wgpubkey": "E5wPCWdLcrvCn8DI8/vetPVrOyIKFMpdgdhrVsTUdBU=", + "free": true, + "ips": [ + "45.14.71.5" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#151", + "hostname": "node-jp-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#151", + "hostname": "node-jp-29.protonvpn.net", + "wgpubkey": "d38wbEHG3sJG+0s34lCGtYU2AwZ9E/WrP3qM9gL7Xi8=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#162", + "hostname": "node-jp-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.87.213.210" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#162", + "hostname": "node-jp-30.protonvpn.net", + "wgpubkey": "dMSVWPppIq7F2mVK99Le8G83r+b18Jx07spFvwmrPwg=", + "stream": true, + "port_forward": true, + "ips": [ + "45.87.213.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#221", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.125.235.19" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#221", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "stream": true, + "port_forward": true, + "ips": [ + "103.125.235.19" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#59", + "hostname": "node-jp-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.223" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#59", + "hostname": "node-jp-17.protonvpn.net", + "wgpubkey": "IekoLP3CpczVNhssbBTXJ1SVwLbBtofVeGhqjBHRrlM=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.223" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman", + "server_name": "JO#1", + "hostname": "jo-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.60" + ] + }, + { + "vpn": "wireguard", + "country": "Jordan", + "city": "Amman", + "server_name": "JO#1", + "hostname": "jo-02.protonvpn.net", + "wgpubkey": "mZljeqimnqpGc6XPCekwRv8yulzWGYJBwZaq3d/WPRc=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.60" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana", + "server_name": "KZ#25", + "hostname": "kz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.80" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "city": "Astana", + "server_name": "KZ#25", + "hostname": "kz-02.protonvpn.net", + "wgpubkey": "BeSF4AZ+TyRVH9uKPv+h3wsE5VxKUCKI1lwnCZ9DQFU=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.80" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi", + "server_name": "KE#1", + "hostname": "ke-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.68" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "city": "Nairobi", + "server_name": "KE#1", + "hostname": "ke-02.protonvpn.net", + "wgpubkey": "4xZaT7vp0/Xh4X6EdY+7+MfR2zdHwjMM/JFJYx2913A=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.68" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "server_name": "SE-KR#2", + "hostname": "node-kr-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.87" + ] + }, + { + "vpn": "wireguard", + "country": "Korea", + "server_name": "SE-KR#2", + "hostname": "node-kr-03.protonvpn.net", + "wgpubkey": "kwmJ9x2fBnD1PyYM9alhOW835krOfgVCr6ArMLA1pGk=", + "secure_core": true, + "ips": [ + "185.159.156.87" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "server_name": "KR#13", + "hostname": "node-kr-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.110.55.2" + ] + }, + { + "vpn": "wireguard", + "country": "Korea", + "city": "Seoul", + "server_name": "KR#13", + "hostname": "node-kr-03.protonvpn.net", + "wgpubkey": "kwmJ9x2fBnD1PyYM9alhOW835krOfgVCr6ArMLA1pGk=", + "stream": true, + "port_forward": true, + "ips": [ + "79.110.55.2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.61" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.81" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "secure_core": true, + "ips": [ + "185.159.157.81" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "secure_core": true, + "ips": [ + "185.159.157.61" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.27" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-02.protonvpn.net", + "wgpubkey": "X+TnM1PwewbKon/eJBH5Lt5eG5R76N+NQq+/ZFMppXM=", + "secure_core": true, + "ips": [ + "79.135.104.27" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.114" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "ips": [ + "196.240.54.114" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#10", + "hostname": "node-lv-02.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "85.203.39.226" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#10", + "hostname": "node-lv-02.protonvpn.net", + "wgpubkey": "X+TnM1PwewbKon/eJBH5Lt5eG5R76N+NQq+/ZFMppXM=", + "port_forward": true, + "ips": [ + "85.203.39.226" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.110" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.20" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "79.135.104.20" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "185.159.157.110" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "SE-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.43" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "SE-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "185.159.156.43" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "server_name": "LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "85.206.170.148" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "city": "Siauliai", + "server_name": "LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "stream": true, + "port_forward": true, + "ips": [ + "85.206.170.148" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.66" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "wgpubkey": "qExynRdRj1sPlPpvC/61bburZ37rKask8TJe8jALAEs=", + "secure_core": true, + "ips": [ + "185.159.157.66" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.48" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-04.protonvpn.net", + "wgpubkey": "buYqE3X8Wf8X/v5NtHVXYgLk45+2og8MVEbgQAkEyBw=", + "secure_core": true, + "ips": [ + "79.135.104.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "IS-LU#1", + "hostname": "node-lu-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.147" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "IS-LU#1", + "hostname": "node-lu-03.protonvpn.net", + "wgpubkey": "asu9KtQoZ3iKwELsDTgjPEiFNcD1XtgGgy3O4CZFg2w=", + "secure_core": true, + "ips": [ + "185.159.158.147" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.141" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "wgpubkey": "qExynRdRj1sPlPpvC/61bburZ37rKask8TJe8jALAEs=", + "ips": [ + "92.223.89.141" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#13", + "hostname": "node-lu-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.133" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#13", + "hostname": "node-lu-03.protonvpn.net", + "wgpubkey": "asu9KtQoZ3iKwELsDTgjPEiFNcD1XtgGgy3O4CZFg2w=", + "ips": [ + "92.223.89.133" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#17", + "hostname": "node-lu-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "5.253.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#17", + "hostname": "node-lu-04.protonvpn.net", + "wgpubkey": "buYqE3X8Wf8X/v5NtHVXYgLk45+2og8MVEbgQAkEyBw=", + "stream": true, + "port_forward": true, + "ips": [ + "5.253.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "server_name": "CH-MK#1", + "hostname": "node-mk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.150" + ] + }, + { + "vpn": "wireguard", + "country": "Macedonia", + "server_name": "CH-MK#1", + "hostname": "node-mk-01.protonvpn.net", + "wgpubkey": "odwcNO9B/wAekASQJpvKtBRO1NGRsZAKuuhAM75UYF4=", + "secure_core": true, + "ips": [ + "185.159.157.150" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje", + "server_name": "MK#01", + "hostname": "node-mk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.229.25.116" + ] + }, + { + "vpn": "wireguard", + "country": "Macedonia", + "city": "Skopje", + "server_name": "MK#01", + "hostname": "node-mk-01.protonvpn.net", + "wgpubkey": "odwcNO9B/wAekASQJpvKtBRO1NGRsZAKuuhAM75UYF4=", + "stream": true, + "port_forward": true, + "ips": [ + "185.229.25.116" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "server_name": "CH-MY#1", + "hostname": "node-my-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.95" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "server_name": "CH-MY#1", + "hostname": "node-my-01.protonvpn.net", + "wgpubkey": "q1kKuYwINzdtZixXob7kFce9AtP0O5fbeR2z7XALbiw=", + "secure_core": true, + "ips": [ + "185.159.157.95" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Johor Bahru", + "server_name": "MY#1", + "hostname": "node-my-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "103.230.142.226" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Johor Bahru", + "server_name": "MY#1", + "hostname": "node-my-01.protonvpn.net", + "wgpubkey": "q1kKuYwINzdtZixXob7kFce9AtP0O5fbeR2z7XALbiw=", + "stream": true, + "ips": [ + "103.230.142.226" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "server_name": "MY#10", + "hostname": "my-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.126.1" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Kuala Lumpur", + "server_name": "MY#10", + "hostname": "my-09.protonvpn.net", + "wgpubkey": "JMGP8LdMl8N5Q8lXt25cPpvMcWvzoVjP/bAZ+88LUCM=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.126.1" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "server_name": "IS-MT#1", + "hostname": "node-mt-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.204" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "server_name": "IS-MT#1", + "hostname": "node-mt-01.protonvpn.net", + "wgpubkey": "fX8h7YY6jz+Brn6LpO7Om+Zdp00HbpUKyyC7Hpc2Fz8=", + "secure_core": true, + "ips": [ + "185.159.158.204" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "city": "Valletta", + "server_name": "MT#1", + "hostname": "node-mt-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.161" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "city": "Valletta", + "server_name": "MT#1", + "hostname": "node-mt-01.protonvpn.net", + "wgpubkey": "fX8h7YY6jz+Brn6LpO7Om+Zdp00HbpUKyyC7Hpc2Fz8=", + "port_forward": true, + "ips": [ + "178.249.212.161" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#1", + "hostname": "mr-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.139.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#1", + "hostname": "mr-01.protonvpn.net", + "wgpubkey": "D3koDcX6PBuFCk4BRcBdMdutViAhPTiCi2mho7ei6gE=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.139.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#25", + "hostname": "mr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.92" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#25", + "hostname": "mr-02.protonvpn.net", + "wgpubkey": "eLHTqszJ04PdJcY27Zu+YpH+bVeWZPW3evJd3x6u2C4=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.92" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritius", + "city": "Port Louis", + "server_name": "MU#25", + "hostname": "mu-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.96" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritius", + "city": "Port Louis", + "server_name": "MU#25", + "hostname": "mu-02.protonvpn.net", + "wgpubkey": "5AjBct9yWNPUQIWnFCpSo8sjJ3IADRshcijUaGBY4Hg=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.96" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "server_name": "CH-MX#1", + "hostname": "node-mx-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.218" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "server_name": "CH-MX#1", + "hostname": "node-mx-03.protonvpn.net", + "wgpubkey": "tHwmpVZsh4yfoA9/vWbacF6cWcXUKE9wuDP5bz66oh8=", + "secure_core": true, + "ips": [ + "185.159.157.218" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#1", + "hostname": "node-mx-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.107" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#1", + "hostname": "node-mx-03.protonvpn.net", + "wgpubkey": "tHwmpVZsh4yfoA9/vWbacF6cWcXUKE9wuDP5bz66oh8=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.107" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#25", + "hostname": "mx-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.252.113.9" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#25", + "hostname": "mx-04.protonvpn.net", + "wgpubkey": "G/3o3VMavYShMnCn6wN1XLNKrAzUYmK7NAEXqmpTCgo=", + "stream": true, + "port_forward": true, + "ips": [ + "84.252.113.9" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "server_name": "CH-MD#1", + "hostname": "node-md-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.111" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "server_name": "CH-MD#1", + "hostname": "node-md-02.protonvpn.net", + "wgpubkey": "Os6z+mP8fCp+EWHXuXs3IULqkVO/fWLrln/eNRAeKh4=", + "secure_core": true, + "ips": [ + "185.159.157.111" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "server_name": "MD#15", + "hostname": "node-md-02.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.163.44.137" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "city": "Chisinau", + "server_name": "MD#15", + "hostname": "node-md-02.protonvpn.net", + "wgpubkey": "Os6z+mP8fCp+EWHXuXs3IULqkVO/fWLrln/eNRAeKh4=", + "ips": [ + "185.163.44.137" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Podgorica", + "server_name": "ME#25", + "hostname": "me-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.88" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "city": "Podgorica", + "server_name": "ME#25", + "hostname": "me-02.protonvpn.net", + "wgpubkey": "B6PI6//tZOVseLmGCau3oqgfPUnZh1cXSttr1HqpZXA=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.88" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "server_name": "CH-MA#1", + "hostname": "node-ma-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.32" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "server_name": "CH-MA#1", + "hostname": "node-ma-01.protonvpn.net", + "wgpubkey": "MIGqipC2yxrFey8yiAJyhytE2QfIMJ5aYkZ9/amphXs=", + "secure_core": true, + "ips": [ + "79.135.104.32" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Rabat", + "server_name": "MA#1", + "hostname": "node-ma-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "178.249.212.164" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "city": "Rabat", + "server_name": "MA#1", + "hostname": "node-ma-01.protonvpn.net", + "wgpubkey": "MIGqipC2yxrFey8yiAJyhytE2QfIMJ5aYkZ9/amphXs=", + "stream": true, + "port_forward": true, + "ips": [ + "178.249.212.164" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#1", + "hostname": "mz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.100" + ] + }, + { + "vpn": "wireguard", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#1", + "hostname": "mz-02.protonvpn.net", + "wgpubkey": "UIa1QviHgAbrL36PZwEIcDCr9DBulpEPGzp0vgaoq2I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.100" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#10", + "hostname": "mz-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.36.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#10", + "hostname": "mz-01.protonvpn.net", + "wgpubkey": "5wpOQU+U6T0g42rDXFcP/SWgzSigjH7tgQ322+r6AWo=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.36.1" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "server_name": "CH-MM#1", + "hostname": "node-mm-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.210" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "server_name": "CH-MM#1", + "hostname": "node-mm-01.protonvpn.net", + "wgpubkey": "gbUzD44E0V5eUqGbYKo+NM/sVt1KJwQjS2TxPYQPK18=", + "secure_core": true, + "ips": [ + "185.159.157.210" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon", + "server_name": "MM#01", + "hostname": "node-mm-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.87" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "city": "Yangon", + "server_name": "MM#01", + "hostname": "node-mm-01.protonvpn.net", + "wgpubkey": "gbUzD44E0V5eUqGbYKo+NM/sVt1KJwQjS2TxPYQPK18=", + "ips": [ + "138.199.60.87" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu", + "server_name": "NP#1", + "hostname": "np-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.125.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "city": "Kathmandu", + "server_name": "NP#1", + "hostname": "np-01.protonvpn.net", + "wgpubkey": "5YAEl39mdRYD9IWXIuyfwzAhLzoFjpQvrk/WZgsD+Vs=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.125.1" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-165.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.197" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-165.protonvpn.net", + "wgpubkey": "+veOJwVuUpP9QAx4q3krdh4pTBgOyqew1TTTDnyITRg=", + "secure_core": true, + "ips": [ + "185.159.157.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-166.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-166.protonvpn.net", + "wgpubkey": "WTKsVAtA2WFjJQmOQTsdvasBOG1vxmbJrnu0f0cpVSk=", + "secure_core": true, + "ips": [ + "185.159.157.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-167.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.199" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-167.protonvpn.net", + "wgpubkey": "MdCt0zxKeG5K8yECIBFYeXwrS40E2QC03cCH1BWCVVY=", + "secure_core": true, + "ips": [ + "185.159.157.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-168.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-168.protonvpn.net", + "wgpubkey": "s2Eo2xDw/yvvLjltF8VJT84k+T1K1+veCEE9uKC6gjo=", + "secure_core": true, + "ips": [ + "185.159.157.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-204.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.236" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-204.protonvpn.net", + "wgpubkey": "Zee6nAIrhwMYEHBolukyS/ir3FK76KRf0OE8FGtKUnI=", + "secure_core": true, + "ips": [ + "185.159.157.236" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-206.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.101" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-206.protonvpn.net", + "wgpubkey": "uk1FJlBSQKZgxMEBAgH8cGmqyn+VqcVXrXw71H6MNWE=", + "secure_core": true, + "ips": [ + "185.159.157.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-207.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-207.protonvpn.net", + "wgpubkey": "loPDLQlL8zr/w/cVLGk2eCZ0rsabIDDtp9PxMBDRzTk=", + "secure_core": true, + "ips": [ + "185.159.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-208.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.98" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-208.protonvpn.net", + "wgpubkey": "Y+zqpHAj1OYL1l4jTLgotAcQKzl5X3VScXHeGSDh5wc=", + "secure_core": true, + "ips": [ + "185.159.157.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-209.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-209.protonvpn.net", + "wgpubkey": "YgGdHIXeCQgBc4nXKJ4vct8S0fPqBpTgk4I8gh3uMEg=", + "secure_core": true, + "ips": [ + "185.159.157.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-211.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-211.protonvpn.net", + "wgpubkey": "3P4ocB2/quwPDO74RB/tUx8VSqeDWPfGs5NrhL/qnFc=", + "secure_core": true, + "ips": [ + "185.159.157.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "IS-NL#1", + "hostname": "node-nl-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.55" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "IS-NL#1", + "hostname": "node-nl-01.protonvpn.net", + "wgpubkey": "127jo9F8kpNz/SQfhY2o5I8HB7X0VLMJVSaMGGuJowQ=", + "secure_core": true, + "ips": [ + "185.159.158.55" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-28.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-28.protonvpn.net", + "wgpubkey": "oVHQPMeCCfPpGhPjEKAFG94wrSmn5MR/kGOThxcefVU=", + "secure_core": true, + "ips": [ + "185.159.156.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-29.protonvpn.net", + "wgpubkey": "9jkx1qC/7bNkn5rlOfxblxoN11MGZFYobwbWXZ7Sql8=", + "secure_core": true, + "ips": [ + "185.159.156.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.74" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-30.protonvpn.net", + "wgpubkey": "zG1tc+Jr58YDfUPu8l8yyk7b7ljC4m/Ncb/1AOY2oBM=", + "secure_core": true, + "ips": [ + "185.159.156.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-53.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-53.protonvpn.net", + "wgpubkey": "/i7jCNpcqVBUkY07gVlILN4nFdvZHmxvreAOgLGoZGg=", + "secure_core": true, + "ips": [ + "185.159.156.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#1", + "hostname": "node-nl-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.131.156" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#1", + "hostname": "node-nl-30.protonvpn.net", + "wgpubkey": "zG1tc+Jr58YDfUPu8l8yyk7b7ljC4m/Ncb/1AOY2oBM=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.131.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#227", + "hostname": "node-nl-53.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.86.114" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#227", + "hostname": "node-nl-53.protonvpn.net", + "wgpubkey": "/i7jCNpcqVBUkY07gVlILN4nFdvZHmxvreAOgLGoZGg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.86.114" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#255", + "hostname": "node-nl-204.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "77.247.178.54" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#255", + "hostname": "node-nl-204.protonvpn.net", + "wgpubkey": "Zee6nAIrhwMYEHBolukyS/ir3FK76KRf0OE8FGtKUnI=", + "stream": true, + "port_forward": true, + "ips": [ + "77.247.178.54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#279", + "hostname": "node-nl-206.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#279", + "hostname": "node-nl-206.protonvpn.net", + "wgpubkey": "uk1FJlBSQKZgxMEBAgH8cGmqyn+VqcVXrXw71H6MNWE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#291", + "hostname": "node-nl-207.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.220" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#291", + "hostname": "node-nl-207.protonvpn.net", + "wgpubkey": "loPDLQlL8zr/w/cVLGk2eCZ0rsabIDDtp9PxMBDRzTk=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.220" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#303", + "hostname": "node-nl-208.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#303", + "hostname": "node-nl-208.protonvpn.net", + "wgpubkey": "Y+zqpHAj1OYL1l4jTLgotAcQKzl5X3VScXHeGSDh5wc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#315", + "hostname": "node-nl-209.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.110" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#315", + "hostname": "node-nl-209.protonvpn.net", + "wgpubkey": "YgGdHIXeCQgBc4nXKJ4vct8S0fPqBpTgk4I8gh3uMEg=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.110" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#339", + "hostname": "node-nl-211.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#339", + "hostname": "node-nl-211.protonvpn.net", + "wgpubkey": "3P4ocB2/quwPDO74RB/tUx8VSqeDWPfGs5NrhL/qnFc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#350", + "hostname": "node-nl-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "62.112.9.164" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#350", + "hostname": "node-nl-01.protonvpn.net", + "wgpubkey": "127jo9F8kpNz/SQfhY2o5I8HB7X0VLMJVSaMGGuJowQ=", + "stream": true, + "port_forward": true, + "ips": [ + "62.112.9.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#357", + "hostname": "node-nl-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.146.180" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#357", + "hostname": "node-nl-13.protonvpn.net", + "wgpubkey": "EbxfUNJudEt6J4xL0kHH57eQM+P+OvypYxG4rpzE8iw=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.146.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#364", + "hostname": "node-nl-28.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.139" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#364", + "hostname": "node-nl-28.protonvpn.net", + "wgpubkey": "oVHQPMeCCfPpGhPjEKAFG94wrSmn5MR/kGOThxcefVU=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.139" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#371", + "hostname": "node-nl-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.124" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#371", + "hostname": "node-nl-29.protonvpn.net", + "wgpubkey": "9jkx1qC/7bNkn5rlOfxblxoN11MGZFYobwbWXZ7Sql8=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.124" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#378", + "hostname": "node-nl-165.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.193" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#378", + "hostname": "node-nl-165.protonvpn.net", + "wgpubkey": "+veOJwVuUpP9QAx4q3krdh4pTBgOyqew1TTTDnyITRg=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.193" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#388", + "hostname": "node-nl-166.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.209" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#388", + "hostname": "node-nl-166.protonvpn.net", + "wgpubkey": "WTKsVAtA2WFjJQmOQTsdvasBOG1vxmbJrnu0f0cpVSk=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.209" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#398", + "hostname": "node-nl-167.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.241" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#398", + "hostname": "node-nl-167.protonvpn.net", + "wgpubkey": "MdCt0zxKeG5K8yECIBFYeXwrS40E2QC03cCH1BWCVVY=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#408", + "hostname": "node-nl-168.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.225" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#408", + "hostname": "node-nl-168.protonvpn.net", + "wgpubkey": "s2Eo2xDw/yvvLjltF8VJT84k+T1K1+veCEE9uKC6gjo=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.225" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#85", + "hostname": "node-nl-47.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.7.129" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#85", + "hostname": "node-nl-47.protonvpn.net", + "wgpubkey": "+HCLUCm6PdbDIaKtEM3pOWBEKSB/UdpBwRY5cNl6ZnI=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.7.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#113", + "hostname": "node-nl-149.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.34.244.134" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#113", + "hostname": "node-nl-149.protonvpn.net", + "wgpubkey": "nsQBMSreq3f0B/BvRRL2aZtuvFAahf7TECaKpbooZVw=", + "free": true, + "ips": [ + "149.34.244.134" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#114", + "hostname": "node-nl-150.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.34.244.139" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#114", + "hostname": "node-nl-150.protonvpn.net", + "wgpubkey": "cZqPUUEdnSZVoKckIHHTfvS/lKEG5mslwHiPJsSG1FE=", + "free": true, + "ips": [ + "149.34.244.139" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#15", + "hostname": "node-nl-05.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "89.39.107.113" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#15", + "hostname": "node-nl-05.protonvpn.net", + "wgpubkey": "UIV6mDfDCun6PrjT7kFrpl02eEwqIa/piXoSKm1ybBU=", + "free": true, + "ips": [ + "89.39.107.113" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#48", + "hostname": "node-nl-74.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "169.150.196.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#48", + "hostname": "node-nl-74.protonvpn.net", + "wgpubkey": "r1tpadBs7JagseUeJgX+vLlQJJln4DcwFM3M9/IMUUg=", + "free": true, + "ips": [ + "169.150.196.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#79", + "hostname": "node-nl-108.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "185.177.124.84" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#79", + "hostname": "node-nl-108.protonvpn.net", + "wgpubkey": "RGkflpj8nU73t7WgEmZQ45f+wF1QM3fDiKjimp5iCGA=", + "free": true, + "ips": [ + "185.177.124.84" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.97" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-03.protonvpn.net", + "wgpubkey": "/QKfRMQaQKdQ4UAwmQc8KKShfc3Mjl1HcKiiGEoWwTU=", + "secure_core": true, + "ips": [ + "185.159.157.97" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.213" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-04.protonvpn.net", + "wgpubkey": "8Rm0uoG0H9BcSuA67/5gBv8tJgFZXNLm4sqEtkB9Nmw=", + "secure_core": true, + "ips": [ + "185.159.157.213" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#13", + "hostname": "node-nz-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.178" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#13", + "hostname": "node-nz-03.protonvpn.net", + "wgpubkey": "/QKfRMQaQKdQ4UAwmQc8KKShfc3Mjl1HcKiiGEoWwTU=", + "ips": [ + "116.90.74.178" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#21", + "hostname": "node-nz-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.75.11.18" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#21", + "hostname": "node-nz-04.protonvpn.net", + "wgpubkey": "8Rm0uoG0H9BcSuA67/5gBv8tJgFZXNLm4sqEtkB9Nmw=", + "stream": true, + "port_forward": true, + "ips": [ + "103.75.11.18" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "server_name": "SE-NG#1", + "hostname": "node-es-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.88" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "server_name": "SE-NG#1", + "hostname": "node-es-07.protonvpn.net", + "wgpubkey": "xmy2vCo/o3h9gltwlNc5M79hwqOwlJmeHHp00Y/SSQU=", + "secure_core": true, + "ips": [ + "185.159.156.88" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "city": "Abuja", + "server_name": "NG#1", + "hostname": "node-es-07.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.76.11.27" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "city": "Abuja", + "server_name": "NG#1", + "hostname": "node-es-07.protonvpn.net", + "wgpubkey": "xmy2vCo/o3h9gltwlNc5M79hwqOwlJmeHHp00Y/SSQU=", + "ips": [ + "185.76.11.27" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.245" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-05.protonvpn.net", + "wgpubkey": "KOITt3KQ72LHPbpVp7kp4cQo/qw2qvKPrN732UTWWFw=", + "secure_core": true, + "ips": [ + "185.159.157.245" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.240" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-06.protonvpn.net", + "wgpubkey": "sSbgwNAoZtBVWlg6ZLnFDrXTM3YFTpPVKgE4DtzSUw0=", + "secure_core": true, + "ips": [ + "185.159.157.240" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "IS-NO#1", + "hostname": "node-no-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.145" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "IS-NO#1", + "hostname": "node-no-03.protonvpn.net", + "wgpubkey": "lY0yD6apqGWIPE/O4FbCysYpveUm0YkflOKrQf8Xhw0=", + "secure_core": true, + "ips": [ + "185.159.158.145" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#13", + "hostname": "node-no-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "84.247.50.178" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#13", + "hostname": "node-no-03.protonvpn.net", + "wgpubkey": "lY0yD6apqGWIPE/O4FbCysYpveUm0YkflOKrQf8Xhw0=", + "stream": true, + "ips": [ + "84.247.50.178" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#21", + "hostname": "node-no-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "146.70.170.18" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#21", + "hostname": "node-no-05.protonvpn.net", + "wgpubkey": "KOITt3KQ72LHPbpVp7kp4cQo/qw2qvKPrN732UTWWFw=", + "stream": true, + "ips": [ + "146.70.170.18" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#33", + "hostname": "node-no-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "146.70.170.2" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#33", + "hostname": "node-no-06.protonvpn.net", + "wgpubkey": "sSbgwNAoZtBVWlg6ZLnFDrXTM3YFTpPVKgE4DtzSUw0=", + "stream": true, + "ips": [ + "146.70.170.2" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "server_name": "CH-PK#1", + "hostname": "node-pk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.26" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "server_name": "CH-PK#1", + "hostname": "node-pk-01.protonvpn.net", + "wgpubkey": "BYNanfqjqO2hQFhXNSujIulMWfhCrnGLxVlvTSLChlo=", + "secure_core": true, + "ips": [ + "79.135.104.26" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Karachi", + "server_name": "PK#1", + "hostname": "node-pk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.89" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "city": "Karachi", + "server_name": "PK#1", + "hostname": "node-pk-01.protonvpn.net", + "wgpubkey": "BYNanfqjqO2hQFhXNSujIulMWfhCrnGLxVlvTSLChlo=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.89" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "server_name": "IS-PE#1", + "hostname": "node-pe-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.209" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "server_name": "IS-PE#1", + "hostname": "node-pe-04.protonvpn.net", + "wgpubkey": "nU424h7OX5hXUFFY850oxpmxOoAMSBZ60pDOyj+z/WA=", + "secure_core": true, + "ips": [ + "185.159.158.209" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "server_name": "PE#25", + "hostname": "node-pe-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.105" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "server_name": "PE#25", + "hostname": "node-pe-04.protonvpn.net", + "wgpubkey": "nU424h7OX5hXUFFY850oxpmxOoAMSBZ60pDOyj+z/WA=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.105" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "server_name": "SE-PH#1", + "hostname": "node-ph-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.86" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "server_name": "SE-PH#1", + "hostname": "node-ph-01.protonvpn.net", + "wgpubkey": "YHiExIkSK5Jqk/P6zO3UIDmf4B5NgClT2hqOXYCxD0g=", + "secure_core": true, + "ips": [ + "185.159.156.86" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "server_name": "PH#1", + "hostname": "node-ph-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "188.214.125.162" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "city": "Manila", + "server_name": "PH#1", + "hostname": "node-ph-01.protonvpn.net", + "wgpubkey": "YHiExIkSK5Jqk/P6zO3UIDmf4B5NgClT2hqOXYCxD0g=", + "stream": true, + "port_forward": true, + "ips": [ + "188.214.125.162" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.214" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-05.protonvpn.net", + "wgpubkey": "5dROtTBUwKT7gIZDyva2PaxOSfXlQbG3Ny4YKQNUiFE=", + "secure_core": true, + "ips": [ + "185.159.157.214" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.243" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-06.protonvpn.net", + "wgpubkey": "bIMk4w3SJ9OLWqlwgCB+umYlRoaLQRk1Te4rUVjVLEI=", + "secure_core": true, + "ips": [ + "185.159.157.243" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "IS-PL#1", + "hostname": "node-pl-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.224" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "IS-PL#1", + "hostname": "node-pl-07.protonvpn.net", + "wgpubkey": "HKjdcdOwD434Dvj7wzN+j/TpchEVcwLm4mq0fuj1tT4=", + "secure_core": true, + "ips": [ + "185.159.158.224" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#1", + "hostname": "node-pl-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.244.17" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#1", + "hostname": "node-pl-05.protonvpn.net", + "wgpubkey": "5dROtTBUwKT7gIZDyva2PaxOSfXlQbG3Ny4YKQNUiFE=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.244.17" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#49", + "hostname": "node-pl-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.178" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#49", + "hostname": "node-pl-06.protonvpn.net", + "wgpubkey": "bIMk4w3SJ9OLWqlwgCB+umYlRoaLQRk1Te4rUVjVLEI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.178" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#61", + "hostname": "node-pl-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.162" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#61", + "hostname": "node-pl-07.protonvpn.net", + "wgpubkey": "HKjdcdOwD434Dvj7wzN+j/TpchEVcwLm4mq0fuj1tT4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.162" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.113" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "secure_core": true, + "ips": [ + "185.159.157.113" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.39" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-03.protonvpn.net", + "wgpubkey": "p/sg7scJ5PshmIss9E/I2Y/dwM1EeEpqoE+YnR7JpWU=", + "secure_core": true, + "ips": [ + "79.135.104.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "SE-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.58" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "SE-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "secure_core": true, + "ips": [ + "185.159.156.58" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#13", + "hostname": "node-pt-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.20.129" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#13", + "hostname": "node-pt-03.protonvpn.net", + "wgpubkey": "p/sg7scJ5PshmIss9E/I2Y/dwM1EeEpqoE+YnR7JpWU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.20.129" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#5", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.158.248.226" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#5", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "stream": true, + "port_forward": true, + "ips": [ + "195.158.248.226" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "server_name": "IS-PR#1", + "hostname": "node-pr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.181" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "server_name": "IS-PR#1", + "hostname": "node-pr-01.protonvpn.net", + "wgpubkey": "bwxgdI9Jo1QCuw9g9VvfenOBrPouBxFkdnQgRjHvrSU=", + "secure_core": true, + "ips": [ + "185.159.158.181" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "city": "San Juan", + "server_name": "PR#1", + "hostname": "node-pr-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.50.97" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "city": "San Juan", + "server_name": "PR#1", + "hostname": "node-pr-01.protonvpn.net", + "wgpubkey": "bwxgdI9Jo1QCuw9g9VvfenOBrPouBxFkdnQgRjHvrSU=", + "port_forward": true, + "ips": [ + "138.199.50.97" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#1", + "hostname": "qa-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.136.1" + ] + }, + { + "vpn": "wireguard", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#1", + "hostname": "qa-01.protonvpn.net", + "wgpubkey": "0DYsPBZXQBQqQKE1Pjdubulw6lwC6x63ktwb2XUUCyk=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.136.1" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#25", + "hostname": "qa-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.112" + ] + }, + { + "vpn": "wireguard", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#25", + "hostname": "qa-02.protonvpn.net", + "wgpubkey": "dvd3mA/eNXoB7wPimwhk9rkpKXtoaym4krWNzkQJw1I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.112" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "server_name": "CH-RO#1", + "hostname": "node-ro-08.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.49" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "server_name": "CH-RO#1", + "hostname": "node-ro-08.protonvpn.net", + "wgpubkey": "oXJDkB7ARwfgC1j8nJMTPz1s8zHDy72V3UxgERs9YjI=", + "secure_core": true, + "ips": [ + "79.135.104.49" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "server_name": "SE-RO#1", + "hostname": "node-ro-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.81" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "server_name": "SE-RO#1", + "hostname": "node-ro-02.protonvpn.net", + "wgpubkey": "5Zfe5nMk+zqZKkvorCiUwTqVidCwTG2UREvUTyswDmo=", + "secure_core": true, + "ips": [ + "185.159.156.81" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#19", + "hostname": "node-ro-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.181.100.178" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#19", + "hostname": "node-ro-08.protonvpn.net", + "wgpubkey": "oXJDkB7ARwfgC1j8nJMTPz1s8zHDy72V3UxgERs9YjI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.181.100.178" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#9", + "hostname": "node-ro-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.53.225" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#9", + "hostname": "node-ro-02.protonvpn.net", + "wgpubkey": "5Zfe5nMk+zqZKkvorCiUwTqVidCwTG2UREvUTyswDmo=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.53.225" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "CH-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.25" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "CH-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "secure_core": true, + "ips": [ + "79.135.104.25" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "IS-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.233" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "IS-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "secure_core": true, + "ips": [ + "185.159.158.233" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "SE-RU#1", + "hostname": "node-ru-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.127" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "SE-RU#1", + "hostname": "node-ru-05.protonvpn.net", + "wgpubkey": "2VsdP/qE6leGtnym8gEFd4DN0Q9iFFEBOZOo8WqArz8=", + "secure_core": true, + "ips": [ + "185.159.156.127" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#17", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "176.96.226.226" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#17", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "ips": [ + "176.96.226.226" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#29", + "hostname": "node-ru-05.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "176.96.226.242" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#29", + "hostname": "node-ru-05.protonvpn.net", + "wgpubkey": "2VsdP/qE6leGtnym8gEFd4DN0Q9iFFEBOZOo8WqArz8=", + "ips": [ + "176.96.226.242" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#1", + "hostname": "rw-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.129" + ] + }, + { + "vpn": "wireguard", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#1", + "hostname": "rw-02.protonvpn.net", + "wgpubkey": "rKdrh59Ol+ERIXvMDf9zbRZAVWXVx52XrhZngiyjjSs=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.129" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#10", + "hostname": "rw-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.37.1" + ] + }, + { + "vpn": "wireguard", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#10", + "hostname": "rw-01.protonvpn.net", + "wgpubkey": "OLnq8K4KJCbq7mDPE2Aso3I+sAfWAgMwXZ5Ep09h/l0=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.37.1" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#1", + "hostname": "sn-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.152" + ] + }, + { + "vpn": "wireguard", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#1", + "hostname": "sn-02.protonvpn.net", + "wgpubkey": "JLf3sNwaJQv9OhJF+k19xRa/f4R/FqxvPzMvqcnLdQo=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.152" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#10", + "hostname": "sn-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.144.1" + ] + }, + { + "vpn": "wireguard", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#10", + "hostname": "sn-01.protonvpn.net", + "wgpubkey": "x1ndx/KPvv3Mo4JMWISwuWvdIgIueb2XRCytvo0gY0Q=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.144.1" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.27" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-01.protonvpn.net", + "wgpubkey": "ajuKKgeTYvVwAsgmWvCLcgbxrtnG9HrYy6XVfoybMnI=", + "secure_core": true, + "ips": [ + "185.159.157.27" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.34" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-02.protonvpn.net", + "wgpubkey": "Urm+zMLHBP105h7X9Qm/Ir+38vMnz8kiEoee9H/FLQE=", + "secure_core": true, + "ips": [ + "79.135.104.34" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#1", + "hostname": "node-rs-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.46.115.5" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#1", + "hostname": "node-rs-01.protonvpn.net", + "wgpubkey": "ajuKKgeTYvVwAsgmWvCLcgbxrtnG9HrYy6XVfoybMnI=", + "ips": [ + "37.46.115.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#10", + "hostname": "node-rs-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.146.222.226" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#10", + "hostname": "node-rs-02.protonvpn.net", + "wgpubkey": "Urm+zMLHBP105h7X9Qm/Ir+38vMnz8kiEoee9H/FLQE=", + "stream": true, + "port_forward": true, + "ips": [ + "45.146.222.226" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.187" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-14.protonvpn.net", + "wgpubkey": "rKXFNhvVY+l4GE0STa1u3Yn/2hptVI6Dms/brS341zg=", + "secure_core": true, + "ips": [ + "185.159.157.187" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.21" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "secure_core": true, + "ips": [ + "79.135.104.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.41" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-16.protonvpn.net", + "wgpubkey": "WFvkM9OCh1IFqlTgxy/mxcw/PRVxKS9T9JxkMxi+yiI=", + "secure_core": true, + "ips": [ + "79.135.104.41" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "SE-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.126" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "SE-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "secure_core": true, + "ips": [ + "185.159.156.126" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#69", + "hostname": "node-sg-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.201.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#69", + "hostname": "node-sg-14.protonvpn.net", + "wgpubkey": "rKXFNhvVY+l4GE0STa1u3Yn/2hptVI6Dms/brS341zg=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.201.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#77", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.85" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#77", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.85" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#87", + "hostname": "node-sg-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.29.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#87", + "hostname": "node-sg-16.protonvpn.net", + "wgpubkey": "WFvkM9OCh1IFqlTgxy/mxcw/PRVxKS9T9JxkMxi+yiI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.29.194" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.85" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.62" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "secure_core": true, + "ips": [ + "185.159.157.85" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "secure_core": true, + "ips": [ + "185.159.157.62" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.57" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-02.protonvpn.net", + "wgpubkey": "kVySpobi4m6sAQgjYTxgYxhcddzXOz5YZLHyIm0oa3g=", + "secure_core": true, + "ips": [ + "79.135.104.57" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "196.245.151.210" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "stream": true, + "ips": [ + "196.245.151.210" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#10", + "hostname": "node-sk-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.245.85.130" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#10", + "hostname": "node-sk-02.protonvpn.net", + "wgpubkey": "kVySpobi4m6sAQgjYTxgYxhcddzXOz5YZLHyIm0oa3g=", + "stream": true, + "port_forward": true, + "ips": [ + "185.245.85.130" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "server_name": "CH-SI#1", + "hostname": "node-si-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.93" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "server_name": "CH-SI#1", + "hostname": "node-si-01.protonvpn.net", + "wgpubkey": "OyElFysx9UjgoZri1lIj9epltqS13lH5m6wO2UTgl0M=", + "secure_core": true, + "ips": [ + "185.159.157.93" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "server_name": "SI#1", + "hostname": "node-si-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.226" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "server_name": "SI#1", + "hostname": "node-si-01.protonvpn.net", + "wgpubkey": "OyElFysx9UjgoZri1lIj9epltqS13lH5m6wO2UTgl0M=", + "port_forward": true, + "ips": [ + "195.80.150.226" + ] + }, + { + "vpn": "openvpn", + "country": "Somalia", + "city": "Mogadishu", + "server_name": "SO#25", + "hostname": "so-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.160" + ] + }, + { + "vpn": "wireguard", + "country": "Somalia", + "city": "Mogadishu", + "server_name": "SO#25", + "hostname": "so-02.protonvpn.net", + "wgpubkey": "zy5Vc+h/BuIMg/7wB0VOpvUE0CvUA5+wHWwa6cKR8zM=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.160" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "server_name": "CH-ZA#1", + "hostname": "node-za-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.24" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "server_name": "CH-ZA#1", + "hostname": "node-za-02.protonvpn.net", + "wgpubkey": "1h8FnAD81TOAUrOdslmvS9v2LbzXcQscVMKwtX7zOAU=", + "secure_core": true, + "ips": [ + "79.135.104.24" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "server_name": "IS-ZA#1", + "hostname": "node-za-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.184" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "server_name": "IS-ZA#1", + "hostname": "node-za-01.protonvpn.net", + "wgpubkey": "LkVwjA+2K03ztw2+wZ7qxp04RZxxqGDyT3Ndi/FIc1o=", + "secure_core": true, + "ips": [ + "185.159.158.184" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#13", + "hostname": "node-za-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "196.240.128.66" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#13", + "hostname": "node-za-01.protonvpn.net", + "wgpubkey": "LkVwjA+2K03ztw2+wZ7qxp04RZxxqGDyT3Ndi/FIc1o=", + "ips": [ + "196.240.128.66" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#25", + "hostname": "node-za-02.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.163" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#25", + "hostname": "node-za-02.protonvpn.net", + "wgpubkey": "1h8FnAD81TOAUrOdslmvS9v2LbzXcQscVMKwtX7zOAU=", + "port_forward": true, + "ips": [ + "178.249.212.163" + ] + }, + { + "vpn": "openvpn", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#1", + "hostname": "ss-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.38.1" + ] + }, + { + "vpn": "wireguard", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#1", + "hostname": "ss-01.protonvpn.net", + "wgpubkey": "6w+L6nVRGKs0ndhIDxOqNhSNjxofgUg1TdcGsJ60+jY=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.38.1" + ] + }, + { + "vpn": "openvpn", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#25", + "hostname": "ss-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.164" + ] + }, + { + "vpn": "wireguard", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#25", + "hostname": "ss-02.protonvpn.net", + "wgpubkey": "59nl60gSvPVD61opnA/X9I4+1ilxJczmbVxfLWPRAA8=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.43" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-03.protonvpn.net", + "wgpubkey": "MK3425tJbRhEz+1xQLxlL+l6GNl52zKNwo5V0fHEwj4=", + "secure_core": true, + "ips": [ + "185.159.157.43" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-08.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.85" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-08.protonvpn.net", + "wgpubkey": "tEz96jcHEtBtZOmwMK7Derw0AOih8usKFM+n4Svhr1E=", + "secure_core": true, + "ips": [ + "79.135.104.85" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.86" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-09.protonvpn.net", + "wgpubkey": "XkiKln3Se1dUvLL9s803TbYkfFNJtb051iGcGs1jgSk=", + "secure_core": true, + "ips": [ + "79.135.104.86" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.148" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-04.protonvpn.net", + "wgpubkey": "roOsz9dJeKKVt6E3EIEKXQfZsmhSfsqOceZWiuGLIgg=", + "secure_core": true, + "ips": [ + "185.159.158.148" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.149" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-05.protonvpn.net", + "wgpubkey": "We2ZxSzO//srj1br7S2+o8d14qegEf4PKdqKJ46N+34=", + "secure_core": true, + "ips": [ + "185.159.158.149" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#100", + "hostname": "node-es-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.66" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#100", + "hostname": "node-es-08.protonvpn.net", + "wgpubkey": "tEz96jcHEtBtZOmwMK7Derw0AOih8usKFM+n4Svhr1E=", + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.66" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#116", + "hostname": "node-es-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.98" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#116", + "hostname": "node-es-09.protonvpn.net", + "wgpubkey": "XkiKln3Se1dUvLL9s803TbYkfFNJtb051iGcGs1jgSk=", + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.98" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#30", + "hostname": "node-es-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.17" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#30", + "hostname": "node-es-04.protonvpn.net", + "wgpubkey": "roOsz9dJeKKVt6E3EIEKXQfZsmhSfsqOceZWiuGLIgg=", + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.17" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#44", + "hostname": "node-es-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.22" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#44", + "hostname": "node-es-05.protonvpn.net", + "wgpubkey": "We2ZxSzO//srj1br7S2+o8d14qegEf4PKdqKJ46N+34=", + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.22" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#58", + "hostname": "node-es-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.214.1" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#58", + "hostname": "node-es-06.protonvpn.net", + "wgpubkey": "mqt1HzBNMiBX2H9HOSUze4VXneRScc910/6qq2qPySc=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.214.1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#72", + "hostname": "node-es-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.181.167.193" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#72", + "hostname": "node-es-03.protonvpn.net", + "wgpubkey": "MK3425tJbRhEz+1xQLxlL+l6GNl52zKNwo5V0fHEwj4=", + "stream": true, + "port_forward": true, + "ips": [ + "195.181.167.193" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo", + "server_name": "LK#1", + "hostname": "lk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.127.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "city": "Colombo", + "server_name": "LK#1", + "hostname": "lk-01.protonvpn.net", + "wgpubkey": "oRzehP9dEG9yLVfUnjFB9C8/aThS4MeD5eQvv2fJfT4=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.127.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "server_name": "SE#31-TOR", + "hostname": "se-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.156.90" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "server_name": "SE#31-TOR", + "hostname": "se-09-tor.protonvpn.net", + "wgpubkey": "jnw7R6t43/63SOFCw9jf6y3a5exG9a+2fcYN3Cir6Qo=", + "tor": true, + "ips": [ + "185.159.156.90" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#17", + "hostname": "node-se-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.55.33" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#17", + "hostname": "node-se-05.protonvpn.net", + "wgpubkey": "288ekgckyNpFjvhuo6BqkABb1cDV89g2fpnU2+bwO38=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.55.33" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#32", + "hostname": "node-se-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.225" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#32", + "hostname": "node-se-06.protonvpn.net", + "wgpubkey": "d7TIa7b48hdoGNqgMbjh4t7eJ+5GDE4ax0R/nkUjQTw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.225" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#44", + "hostname": "node-se-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.238" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#44", + "hostname": "node-se-07.protonvpn.net", + "wgpubkey": "4mgCsg3Rox11k6YWGwToB1kshzqbQ8Iu1HuOZhNtYQg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.238" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#56", + "hostname": "node-se-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.193" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#56", + "hostname": "node-se-08.protonvpn.net", + "wgpubkey": "Z/qpx0cmggXaMcvctgwInrIUdc7Y/9iCZEAN3U1BYUA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.193" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#67", + "hostname": "node-se-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.205" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#67", + "hostname": "node-se-09.protonvpn.net", + "wgpubkey": "HVtWzUJa32VYzRy4EW30N0qwrJVNUzdbrX40r2hwHgY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.205" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#78", + "hostname": "node-se-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.189" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#78", + "hostname": "node-se-02.protonvpn.net", + "wgpubkey": "BVOvVbuPe1sICVt6xnUVB3+NhOVhcyi+1dHVSbnQ0Wc=", + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.189" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#84", + "hostname": "node-se-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.188" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#84", + "hostname": "node-se-01.protonvpn.net", + "wgpubkey": "GBt7gry48sWxyQh65ZXXS+L7gkoEL6zKh0a79uNFDms=", + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.188" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "server_name": "CH#18-TOR", + "hostname": "ch-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.157.176" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "server_name": "CH#18-TOR", + "hostname": "ch-09-tor.protonvpn.net", + "wgpubkey": "A6ZEPLYJle6Bz+dcRIX/1uNm0DRfOs47H1x8EwUeFnY=", + "tor": true, + "ips": [ + "185.159.157.176" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#113", + "hostname": "node-ch-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.233" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#113", + "hostname": "node-ch-19.protonvpn.net", + "wgpubkey": "MDJPYLKrGYv11Mis97Ihk/aPULhC5us44hx3Fa1/8lk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.233" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#140", + "hostname": "node-ch-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.232" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#140", + "hostname": "node-ch-20.protonvpn.net", + "wgpubkey": "U6izVBdvmWafPuKXctnvArOx6W33X8wBkMvjoOdrBhs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.232" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#167", + "hostname": "node-ch-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.234" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#167", + "hostname": "node-ch-21.protonvpn.net", + "wgpubkey": "XPVCz7LndzqWe7y3+WSo51hvNOX8nX5CTwVTWhzg8g8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.234" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#192", + "hostname": "node-ch-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#192", + "hostname": "node-ch-22.protonvpn.net", + "wgpubkey": "n+45suXZtI1+TuZWtCnzGkXNBCgJB3wFZYIlBltpORM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#217", + "hostname": "node-ch-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.236" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#217", + "hostname": "node-ch-23.protonvpn.net", + "wgpubkey": "2w/1u8pEChF2DeRhJmLDyfbhbkmAidAq0RSNZe+cDTo=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.236" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#242", + "hostname": "node-ch-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#242", + "hostname": "node-ch-18.protonvpn.net", + "wgpubkey": "HX7TBsL4vp0CxwWsQD5k8CCZvE2YmCg8IyN+TBVUszo=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#262", + "hostname": "node-ch-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.206" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#262", + "hostname": "node-ch-17.protonvpn.net", + "wgpubkey": "i0qamQHx9/DRrre/4C+ocY6NVbGSfQBZzRcXYnTEHW0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.206" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#282", + "hostname": "node-ch-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.193" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#282", + "hostname": "node-ch-16.protonvpn.net", + "wgpubkey": "WYXA8DeAZIF4th8Dfbw02osdbFc24sK10zKijcJvZwU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.193" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#302", + "hostname": "node-ch-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.179" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#302", + "hostname": "node-ch-12.protonvpn.net", + "wgpubkey": "+WRsjA7z/PQqasrqiUVo3Tug+go7W2DXjO2p3TTeagk=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.179" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#314", + "hostname": "node-ch-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.181" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#314", + "hostname": "node-ch-09.protonvpn.net", + "wgpubkey": "kLP1kA+BuzvA6ecozP0c82I8u1aXkZmfMCxBZEqpNHY=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.181" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#326", + "hostname": "node-ch-10.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.177" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#326", + "hostname": "node-ch-10.protonvpn.net", + "wgpubkey": "9nrcUUgwvjNU5Z+EBB0C2cbrhQ3dsCz+zSU83/eqGFY=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.177" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#338", + "hostname": "node-ch-11.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.178" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#338", + "hostname": "node-ch-11.protonvpn.net", + "wgpubkey": "YpOUROUnumcF/snGX8zka0nThnvHesceJAYUSbZL1XQ=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.178" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#350", + "hostname": "node-ch-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.23" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#350", + "hostname": "node-ch-08.protonvpn.net", + "wgpubkey": "VNNO5MYorFu1UerHvoXccW6TvotxbJ1GAGJKtzM9HTY=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.23" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#359", + "hostname": "node-ch-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.24" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#359", + "hostname": "node-ch-07.protonvpn.net", + "wgpubkey": "8vYnuuYtKfsKKnnX6HSKXviMj6bl3P260rRbPcC8d3Q=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.24" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#373", + "hostname": "node-ch-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.7" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#373", + "hostname": "node-ch-03.protonvpn.net", + "wgpubkey": "/2s0IUkblISt/0BMI2KenKgJopsQDCbHhgQvipGxwmY=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.7" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#378", + "hostname": "node-ch-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.11" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#378", + "hostname": "node-ch-13.protonvpn.net", + "wgpubkey": "CgC9o9MUl4n/r4pueamp9JFw2cneCqSnHJD088Zm+Bg=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.11" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#384", + "hostname": "node-ch-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.12" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#384", + "hostname": "node-ch-14.protonvpn.net", + "wgpubkey": "Hd3hdhX18q6tnET4x77hg/xou3o/tdf7iEgLTqtRwVY=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.12" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#387", + "hostname": "node-ch-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.129" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#387", + "hostname": "node-ch-06.protonvpn.net", + "wgpubkey": "drMrwLemQKdjw4Tb/My2QTfzPbH+ebrTBC5zrfPI7hE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.129" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#393", + "hostname": "node-ch-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.6" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#393", + "hostname": "node-ch-02.protonvpn.net", + "wgpubkey": "00WGV9C77fp+u1G2YrJ3VphcEKFCXcplgUU5THM+QgI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#65", + "hostname": "node-ch-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.13" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#65", + "hostname": "node-ch-15.protonvpn.net", + "wgpubkey": "17I34jHOMcmI7LKBqxosTfLgwGjO5OKApLcRSPlyymM=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.13" + ] + }, + { + "vpn": "openvpn", + "country": "Syrian Arab Republic", + "city": "Damascus", + "server_name": "SY#1", + "hostname": "sy-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.168" + ] + }, + { + "vpn": "wireguard", + "country": "Syrian Arab Republic", + "city": "Damascus", + "server_name": "SY#1", + "hostname": "sy-02.protonvpn.net", + "wgpubkey": "jnNr7Utzf7scELoP3qhKTfXbJGWD7KwI29RRD02oKm8=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.168" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "server_name": "CH-TW#1", + "hostname": "node-tw-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.141" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "server_name": "CH-TW#1", + "hostname": "node-tw-03.protonvpn.net", + "wgpubkey": "4YvW6/5LP4g/WmaLc1EDfOno+IyN6r+87gQEqGz2Gz4=", + "secure_core": true, + "ips": [ + "185.159.157.141" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "server_name": "SE-TW#01", + "hostname": "node-tw-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.82" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "server_name": "SE-TW#01", + "hostname": "node-tw-04.protonvpn.net", + "wgpubkey": "jodLwKl2kl5scwLUIZQYGoKBsqTRAtv6ltsofBc6WD4=", + "secure_core": true, + "ips": [ + "185.159.156.82" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taichung City", + "server_name": "TW#13", + "hostname": "node-tw-03.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "2.58.241.66" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taichung City", + "server_name": "TW#13", + "hostname": "node-tw-03.protonvpn.net", + "wgpubkey": "4YvW6/5LP4g/WmaLc1EDfOno+IyN6r+87gQEqGz2Gz4=", + "port_forward": true, + "ips": [ + "2.58.241.66" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "server_name": "TW#21", + "hostname": "node-tw-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.106.178" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taipei", + "server_name": "TW#21", + "hostname": "node-tw-04.protonvpn.net", + "wgpubkey": "jodLwKl2kl5scwLUIZQYGoKBsqTRAtv6ltsofBc6WD4=", + "port_forward": true, + "ips": [ + "188.214.106.178" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "server_name": "IS-TH#1", + "hostname": "node-th-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.191" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "server_name": "IS-TH#1", + "hostname": "node-th-01.protonvpn.net", + "wgpubkey": "N4vu5ZFsvf3nbKAYnwwXvqeDwxrYOXZKbTSdknB9a1w=", + "secure_core": true, + "ips": [ + "185.159.158.191" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "server_name": "TH#1", + "hostname": "node-th-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.19.201.129" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "server_name": "TH#1", + "hostname": "node-th-01.protonvpn.net", + "wgpubkey": "N4vu5ZFsvf3nbKAYnwwXvqeDwxrYOXZKbTSdknB9a1w=", + "port_forward": true, + "ips": [ + "37.19.201.129" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#1", + "hostname": "tg-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.39.1" + ] + }, + { + "vpn": "wireguard", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#1", + "hostname": "tg-01.protonvpn.net", + "wgpubkey": "rc7QnuukueJDqqKMx7Z3n0zmZ+alsj9BwhOwxZiUoCU=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.39.1" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#25", + "hostname": "tg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.180" + ] + }, + { + "vpn": "wireguard", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#25", + "hostname": "tg-02.protonvpn.net", + "wgpubkey": "K5dW0eGdp6qEHiHYcu6+DYeaTdCxLdR+NZ4jTz2HtjU=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.180" + ] + }, + { + "vpn": "openvpn", + "country": "Tunisia", + "city": "Tunis", + "server_name": "TN#1", + "hostname": "tn-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.192" + ] + }, + { + "vpn": "wireguard", + "country": "Tunisia", + "city": "Tunis", + "server_name": "TN#1", + "hostname": "tn-02.protonvpn.net", + "wgpubkey": "8jbQY/YMu2YbUG8KwuuMMw4go8FSKrmy/alcKIQRk2I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.192" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "server_name": "SE-TR#1", + "hostname": "node-tr-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.97" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "server_name": "SE-TR#1", + "hostname": "node-tr-03.protonvpn.net", + "wgpubkey": "O9PuAgDUpgObhbFQYpWMiEoynWaCSmQuGTtBjcuEk3E=", + "secure_core": true, + "ips": [ + "185.159.156.97" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "server_name": "TR#17", + "hostname": "node-tr-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.139.170" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "server_name": "TR#17", + "hostname": "node-tr-03.protonvpn.net", + "wgpubkey": "O9PuAgDUpgObhbFQYpWMiEoynWaCSmQuGTtBjcuEk3E=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.139.170" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Izmir", + "server_name": "TR#25", + "hostname": "tr-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "64.224.17.1" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Izmir", + "server_name": "TR#25", + "hostname": "tr-25.protonvpn.net", + "wgpubkey": "D3QJtelZ4dK0L5OdeqcFHzM80AGgoL8XhtScVaTdtw0=", + "stream": true, + "port_forward": true, + "ips": [ + "64.224.17.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.60" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-02.protonvpn.net", + "wgpubkey": "eqjhoqO6K1nLiej026+RkpSTHloVrOHLlMQaB0Tl5GM=", + "secure_core": true, + "ips": [ + "185.159.157.60" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.45" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-03.protonvpn.net", + "wgpubkey": "BTwnvm0OR6IzwefZlzTgJMn8NhISk8DtczUk7P74NH8=", + "secure_core": true, + "ips": [ + "79.135.104.45" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#17", + "hostname": "node-ua-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.110.33" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#17", + "hostname": "node-ua-03.protonvpn.net", + "wgpubkey": "BTwnvm0OR6IzwefZlzTgJMn8NhISk8DtczUk7P74NH8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.110.33" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#43", + "hostname": "node-ua-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.50.5" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#43", + "hostname": "node-ua-02.protonvpn.net", + "wgpubkey": "eqjhoqO6K1nLiej026+RkpSTHloVrOHLlMQaB0Tl5GM=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.50.5" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "CH-AE#1", + "hostname": "node-ae-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "CH-AE#1", + "hostname": "node-ae-02.protonvpn.net", + "wgpubkey": "IwddRZ5jYM+1WC31fJAsFslmkto71LUNA4LG90fPcDM=", + "secure_core": true, + "ips": [ + "185.159.157.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "IS-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "IS-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "secure_core": true, + "ips": [ + "185.159.158.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "SE-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.119" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "SE-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "secure_core": true, + "ips": [ + "185.159.156.119" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#21", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#21", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "port_forward": true, + "ips": [ + "178.249.212.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#9", + "hostname": "node-ae-02.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "217.138.193.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#9", + "hostname": "node-ae-02.protonvpn.net", + "wgpubkey": "IwddRZ5jYM+1WC31fJAsFslmkto71LUNA4LG90fPcDM=", + "ips": [ + "217.138.193.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-17.protonvpn.net", + "wgpubkey": "QA+TBTylpDuM0c/gbNfX7/efivIMg7P0ncLMBtTvglg=", + "secure_core": true, + "ips": [ + "185.159.157.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-18.protonvpn.net", + "wgpubkey": "7tEhXa2x1eKGbPevwzPjo5u5HLshPxwkofSII9y0v2c=", + "secure_core": true, + "ips": [ + "185.159.157.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.133" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-20.protonvpn.net", + "wgpubkey": "rASRjr/WnYDqR/aW824X2KfIxBIdS5nXQgnKly0TmBo=", + "secure_core": true, + "ips": [ + "185.159.157.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.43" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-21.protonvpn.net", + "wgpubkey": "DgzYjQOQBgtBFUeyj3bVXpzl0qZE1I3/rk/IDS1b8kg=", + "secure_core": true, + "ips": [ + "79.135.104.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.44" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-22.protonvpn.net", + "wgpubkey": "kYWXMo4RQ08rekIUo0keVmqRkfhPrB8Y288ZQ7ZMYjU=", + "secure_core": true, + "ips": [ + "79.135.104.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-23.protonvpn.net", + "wgpubkey": "VJHNhHnzYw3UTJb6EDY+280TkNMtlz1SShJ7wMvGmkQ=", + "secure_core": true, + "ips": [ + "79.135.104.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-24.protonvpn.net", + "wgpubkey": "q8eGv8tYlyBb5OIaIfm6ddI4/XmDZxYvMjGVf9L1vGU=", + "secure_core": true, + "ips": [ + "79.135.104.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-25.protonvpn.net", + "wgpubkey": "709hp67REW72LbAJZv4NIwuf2B7D9K5YSirp0zoQUx8=", + "secure_core": true, + "ips": [ + "79.135.104.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-12.protonvpn.net", + "wgpubkey": "lnSLhBJ3zosn36teAK1JJjn7ALiaPLq5k6YO07GnQi4=", + "secure_core": true, + "ips": [ + "185.159.158.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.200" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-14.protonvpn.net", + "wgpubkey": "SrT34F0BbJq2U7v8/1V1MRFUMnn7YixbhWUN01xnF2Q=", + "secure_core": true, + "ips": [ + "185.159.158.200" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-15.protonvpn.net", + "wgpubkey": "zctOjv4DH2gzXtLQy86Tp0vnT+PNpMsxecd2vUX/i0U=", + "secure_core": true, + "ips": [ + "185.159.158.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-16.protonvpn.net", + "wgpubkey": "WbRD+D0sEqI7tlTIycY4QVlSgv3zPWCWmx0Z+UA08gI=", + "secure_core": true, + "ips": [ + "185.159.158.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-19.protonvpn.net", + "wgpubkey": "uIYz5QpWqSNGRSJw0m4Py3eHR1dXQPb95sIKV8KaEC4=", + "secure_core": true, + "ips": [ + "185.159.158.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-09.protonvpn.net", + "wgpubkey": "lV7oTc0YRiXHOWTm6qMGIVargMQEXw5xAgS4T9WWlyo=", + "secure_core": true, + "ips": [ + "185.159.156.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-10.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-10.protonvpn.net", + "wgpubkey": "lMm8Gocz1SIU/eAhpBzPHIWvAxJ30Oyeaj2PvmNl/Qk=", + "secure_core": true, + "ips": [ + "185.159.156.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-13.protonvpn.net", + "wgpubkey": "ic5vxFWQEX5lRVwgx2vfE1xYKXQuwQi1TGDSkR0fsEY=", + "secure_core": true, + "ips": [ + "185.159.156.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#1", + "hostname": "node-uk-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.24.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#1", + "hostname": "node-uk-19.protonvpn.net", + "wgpubkey": "uIYz5QpWqSNGRSJw0m4Py3eHR1dXQPb95sIKV8KaEC4=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.24.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#179", + "hostname": "node-uk-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.65" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#179", + "hostname": "node-uk-21.protonvpn.net", + "wgpubkey": "DgzYjQOQBgtBFUeyj3bVXpzl0qZE1I3/rk/IDS1b8kg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.65" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#205", + "hostname": "node-uk-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.63.129" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#205", + "hostname": "node-uk-22.protonvpn.net", + "wgpubkey": "kYWXMo4RQ08rekIUo0keVmqRkfhPrB8Y288ZQ7ZMYjU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.63.129" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#261", + "hostname": "node-uk-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#261", + "hostname": "node-uk-09.protonvpn.net", + "wgpubkey": "lV7oTc0YRiXHOWTm6qMGIVargMQEXw5xAgS4T9WWlyo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#278", + "hostname": "node-uk-10.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#278", + "hostname": "node-uk-10.protonvpn.net", + "wgpubkey": "lMm8Gocz1SIU/eAhpBzPHIWvAxJ30Oyeaj2PvmNl/Qk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#295", + "hostname": "node-uk-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.83.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#295", + "hostname": "node-uk-12.protonvpn.net", + "wgpubkey": "lnSLhBJ3zosn36teAK1JJjn7ALiaPLq5k6YO07GnQi4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.83.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#312", + "hostname": "node-uk-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#312", + "hostname": "node-uk-23.protonvpn.net", + "wgpubkey": "VJHNhHnzYw3UTJb6EDY+280TkNMtlz1SShJ7wMvGmkQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#338", + "hostname": "node-uk-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.96.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#338", + "hostname": "node-uk-13.protonvpn.net", + "wgpubkey": "ic5vxFWQEX5lRVwgx2vfE1xYKXQuwQi1TGDSkR0fsEY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.96.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#355", + "hostname": "node-uk-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#355", + "hostname": "node-uk-15.protonvpn.net", + "wgpubkey": "zctOjv4DH2gzXtLQy86Tp0vnT+PNpMsxecd2vUX/i0U=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#372", + "hostname": "node-uk-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#372", + "hostname": "node-uk-18.protonvpn.net", + "wgpubkey": "7tEhXa2x1eKGbPevwzPjo5u5HLshPxwkofSII9y0v2c=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#389", + "hostname": "node-uk-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#389", + "hostname": "node-uk-16.protonvpn.net", + "wgpubkey": "WbRD+D0sEqI7tlTIycY4QVlSgv3zPWCWmx0Z+UA08gI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#406", + "hostname": "node-uk-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#406", + "hostname": "node-uk-17.protonvpn.net", + "wgpubkey": "QA+TBTylpDuM0c/gbNfX7/efivIMg7P0ncLMBtTvglg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#443", + "hostname": "node-uk-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#443", + "hostname": "node-uk-24.protonvpn.net", + "wgpubkey": "q8eGv8tYlyBb5OIaIfm6ddI4/XmDZxYvMjGVf9L1vGU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#470", + "hostname": "node-uk-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#470", + "hostname": "node-uk-25.protonvpn.net", + "wgpubkey": "709hp67REW72LbAJZv4NIwuf2B7D9K5YSirp0zoQUx8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#231", + "hostname": "node-uk-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.181.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#231", + "hostname": "node-uk-20.protonvpn.net", + "wgpubkey": "rASRjr/WnYDqR/aW824X2KfIxBIdS5nXQgnKly0TmBo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.181.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#423", + "hostname": "node-uk-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.133.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#423", + "hostname": "node-uk-14.protonvpn.net", + "wgpubkey": "SrT34F0BbJq2U7v8/1V1MRFUMnn7YixbhWUN01xnF2Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.133.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-118.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.169" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-118.protonvpn.net", + "wgpubkey": "LMkFEUVVqWl1di39x+CloLdXXH/X9P/vKXeVXohvqlc=", + "secure_core": true, + "ips": [ + "185.159.157.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-120.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-120.protonvpn.net", + "wgpubkey": "0lVdORRneTkqH7Hh12Z5hnATz+kXmkiSwz8YHHx4Ywg=", + "secure_core": true, + "ips": [ + "185.159.157.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-121.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-121.protonvpn.net", + "wgpubkey": "5vyz98gHBbT8z1bdNNZdGYAW0NJIgw1pgr+E6WlJPQA=", + "secure_core": true, + "ips": [ + "185.159.157.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-123.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-123.protonvpn.net", + "wgpubkey": "mn8WlkJqY66j17ZbwN2DB0Nj74zG/DicuRQZtxtQsTM=", + "secure_core": true, + "ips": [ + "185.159.157.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-125.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-125.protonvpn.net", + "wgpubkey": "wqJcz4akzVFxx35aJ5B7G/IJ9qsRvpcGNub3rLHcqXo=", + "secure_core": true, + "ips": [ + "185.159.157.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-127.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-127.protonvpn.net", + "wgpubkey": "3Lz5VpqnS7wfnOWVYFNCFHl+JuuanJ/hB2TqOKQZxVI=", + "secure_core": true, + "ips": [ + "185.159.157.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-129.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-129.protonvpn.net", + "wgpubkey": "69bM/DJY8bKExbCqUhLKY4L1NXaYxzwi/bf/61MCBR8=", + "secure_core": true, + "ips": [ + "185.159.157.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-158.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-158.protonvpn.net", + "wgpubkey": "fM5t18SNQhPw5zXr/6crLPu9KseB3/BeDF+McXoclmg=", + "secure_core": true, + "ips": [ + "185.159.157.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-160.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-160.protonvpn.net", + "wgpubkey": "XlC8xkM0TQpsm/9c5j5u5S7wrI0VliBvXBiKji3UQzU=", + "secure_core": true, + "ips": [ + "185.159.157.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-177.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.216" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-177.protonvpn.net", + "wgpubkey": "2nZkJr74LHqiPIAjDmdo1EJrN7DJLVq7N92RNYv7cSk=", + "secure_core": true, + "ips": [ + "185.159.157.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-178.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.215" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-178.protonvpn.net", + "wgpubkey": "sr/YwNGtQzjEi4eJ5fwswkFxuh2Au6NKN5MzUiWV9FY=", + "secure_core": true, + "ips": [ + "185.159.157.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-187.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.250" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-187.protonvpn.net", + "wgpubkey": "siQYYgaXYcbz1W0fR0Tpq6ExLLggu/xCOdDOfitDexM=", + "secure_core": true, + "ips": [ + "185.159.157.250" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-189.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-189.protonvpn.net", + "wgpubkey": "9HAY7JVBdohkIj1ViPJW2huz5roF89F1/5/uqrg2gh4=", + "secure_core": true, + "ips": [ + "185.159.157.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-200.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-200.protonvpn.net", + "wgpubkey": "DzAE6lLRbKUNuxFkuN2gI+sokPARCKYw/E1DyaXQWHc=", + "secure_core": true, + "ips": [ + "185.159.157.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-204.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-204.protonvpn.net", + "wgpubkey": "KwU9qcRO0eamCxh/iF7pL2RAOOJezHPVqkIeANcS5Wk=", + "secure_core": true, + "ips": [ + "185.159.157.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-205.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-205.protonvpn.net", + "wgpubkey": "j+clV7yQPWWhQ7v4/8AWBzZ5DNUGSvruZAIsVtyZ92A=", + "secure_core": true, + "ips": [ + "185.159.157.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-206.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-206.protonvpn.net", + "wgpubkey": "JWoqa2qmbXiScPZdipli9Bvb6aqwaol1FdxMFN4d1Tg=", + "secure_core": true, + "ips": [ + "185.159.157.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-216.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-216.protonvpn.net", + "wgpubkey": "PXtm4zWbqySH2QGaI/5ivRVGXPwztXfzMbtoT9Ad0jE=", + "secure_core": true, + "ips": [ + "185.159.157.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-217.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-217.protonvpn.net", + "wgpubkey": "iJIw5umGxtrrSIRxVrSF1Ofu5IDphpBpAJOvsrG4FiI=", + "secure_core": true, + "ips": [ + "185.159.157.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-219.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-219.protonvpn.net", + "wgpubkey": "YHSRY7kE+yE/rMDmeStrdoMVNbSnk0swQVP4KxiB0hg=", + "secure_core": true, + "ips": [ + "185.159.157.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-223.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.254" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-223.protonvpn.net", + "wgpubkey": "MkUR6S5ObCzMx0ZToukggFecdUEjEM2GU/ZhLoz2ICY=", + "secure_core": true, + "ips": [ + "185.159.157.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-224.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-224.protonvpn.net", + "wgpubkey": "e3NMqmeAfSRFKRXou+nAvUloxcE8oz/cUtgIJ3OBFSQ=", + "secure_core": true, + "ips": [ + "185.159.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-225.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-225.protonvpn.net", + "wgpubkey": "4RblBFy7/Vm2VT6SCyZJ1kKGOgdz2k+WxpNQKdw8mmc=", + "secure_core": true, + "ips": [ + "185.159.157.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-228.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-228.protonvpn.net", + "wgpubkey": "OBxUYm9fx8N3Tf/tcvn3IBhdOyaakd91Osi4zF8XgE0=", + "secure_core": true, + "ips": [ + "79.135.104.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-229.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-229.protonvpn.net", + "wgpubkey": "znjz1X8oDeciB6/JHNvbOQxIkBPvA9gP5dIXpesm+Fc=", + "secure_core": true, + "ips": [ + "79.135.104.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-238.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-238.protonvpn.net", + "wgpubkey": "dJWLpQaWP1hw0QLQW84B++fWtopgneOafYVZXyyUoAM=", + "secure_core": true, + "ips": [ + "79.135.104.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-239.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-239.protonvpn.net", + "wgpubkey": "szI+Wjh6ov2sg3Onxm1tkdSk/k8rRRYq8oPS3D91mH0=", + "secure_core": true, + "ips": [ + "79.135.104.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-240.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-240.protonvpn.net", + "wgpubkey": "WNLAmQkeAvdg9QRFMXq7EuwpEWWkltWwiS/DGIcjHjs=", + "secure_core": true, + "ips": [ + "79.135.104.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-241.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-241.protonvpn.net", + "wgpubkey": "xuqP9uEGryELhamLSK9IDRNhljo3lA1zL9/gS7yj2WQ=", + "secure_core": true, + "ips": [ + "79.135.104.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-242.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-242.protonvpn.net", + "wgpubkey": "ksWZOz5RLZaZB4KAU907/LdYM+Aqji1NuQ0QfCzodGc=", + "secure_core": true, + "ips": [ + "79.135.104.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-243.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-243.protonvpn.net", + "wgpubkey": "bXiKQCzCfajtuTNSQQpAqcrO0Rhid5d6E3MseL2lxXU=", + "secure_core": true, + "ips": [ + "79.135.104.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-244.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-244.protonvpn.net", + "wgpubkey": "bH4k0o3gbeVcusYIdmdrQElps3r15HItiqtP5T7x3U4=", + "secure_core": true, + "ips": [ + "79.135.104.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-245.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-245.protonvpn.net", + "wgpubkey": "utqNH4P+C0fA1wTgIUaIfhm1b7ai0iEGvXyiw4KC3Fs=", + "secure_core": true, + "ips": [ + "79.135.104.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-246.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-246.protonvpn.net", + "wgpubkey": "mdgZ6wT7AXGznoYqxERZexx9aPEd/FhQ+P6fdXCBuVQ=", + "secure_core": true, + "ips": [ + "79.135.104.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-249.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-249.protonvpn.net", + "wgpubkey": "RAy+GOFz+bdG0l/wS+4J2AcpcVyUc2xbR6JR1Q8zJg4=", + "secure_core": true, + "ips": [ + "79.135.104.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-250.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-250.protonvpn.net", + "wgpubkey": "WGwF8za3sD1rc946cBJZe1SEwJB2NzAGMTDx1iGIrQ0=", + "secure_core": true, + "ips": [ + "79.135.104.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-251.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-251.protonvpn.net", + "wgpubkey": "0abDpTVm9oXMpPL+8W495UD3BCawGKEstNO784GUaj4=", + "secure_core": true, + "ips": [ + "79.135.104.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-252.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-252.protonvpn.net", + "wgpubkey": "84bwJLVJI1YzH99wbU1t6fouJuZGxcMsfKQpBz7LDxI=", + "secure_core": true, + "ips": [ + "79.135.104.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-253.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-253.protonvpn.net", + "wgpubkey": "bMtZjBqTLqHPvDJXSZ81flOlYmH0kgU503KFpT8VIR8=", + "secure_core": true, + "ips": [ + "79.135.104.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-256.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-256.protonvpn.net", + "wgpubkey": "gU9CLkRxLUarj9+MtswvE/2Tvclx32w5aoSYeY3eEX8=", + "secure_core": true, + "ips": [ + "79.135.104.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-257.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-257.protonvpn.net", + "wgpubkey": "6Ct2qC5B3ayxBtkV2y6ScFzYcLD/6fLmtMmHPCJTAVU=", + "secure_core": true, + "ips": [ + "79.135.104.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-260.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-260.protonvpn.net", + "wgpubkey": "sHJbg8AIxsb5TFe8xIWPxo8VXuAMk9+HcdY0hHvGNFg=", + "secure_core": true, + "ips": [ + "79.135.104.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-261.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-261.protonvpn.net", + "wgpubkey": "YU5vcydVJvB83c6VBS26WWq9spE+9Md9gBn7tesSSGQ=", + "secure_core": true, + "ips": [ + "79.135.104.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-57.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-57.protonvpn.net", + "wgpubkey": "jqu/dcZfEtote0IN1H4ZFneR8p4sZ7juna+eUndhRgs=", + "secure_core": true, + "ips": [ + "185.159.157.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-93.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-93.protonvpn.net", + "wgpubkey": "KJr11pgXcjU4BTRb3gJsijwKwI1m/u6vMURUwajagyY=", + "secure_core": true, + "ips": [ + "185.159.157.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-94.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-94.protonvpn.net", + "wgpubkey": "z54+LsnV9L6PyS/MO4dPfJ650jiOVLVevYrWf2WsDzg=", + "secure_core": true, + "ips": [ + "185.159.157.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-108.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-108.protonvpn.net", + "wgpubkey": "tvJm5a80r4KeOxe0K7BLQ27DYPjCfoGxh1l3DzNg4RI=", + "secure_core": true, + "ips": [ + "185.159.158.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-109.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-109.protonvpn.net", + "wgpubkey": "dEsuT/1kn90iBupDFEkkpYbxmZP9pqu9zG5uG01ppns=", + "secure_core": true, + "ips": [ + "185.159.158.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-119.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-119.protonvpn.net", + "wgpubkey": "zAIZj//t14xuriUMSlWk4/J2jox6I/JMzHL1Y3D/WUE=", + "secure_core": true, + "ips": [ + "185.159.158.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-122.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.188" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-122.protonvpn.net", + "wgpubkey": "5Vs6LCNRBfpISEGhbdZMgyNVhrbjxkuflPMfdj9EkTc=", + "secure_core": true, + "ips": [ + "185.159.158.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-124.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.189" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-124.protonvpn.net", + "wgpubkey": "DmLmc8enWKMicpxkxy2md1derQApeMJibtt2UZnCxG4=", + "secure_core": true, + "ips": [ + "185.159.158.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-126.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.190" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-126.protonvpn.net", + "wgpubkey": "qDJgY2K+GtC/geqxLN2ZO61LHlwENsMpapC1eGF21mM=", + "secure_core": true, + "ips": [ + "185.159.158.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-130.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-130.protonvpn.net", + "wgpubkey": "houxrsE+RottYWy4pSsRM8ZEReqN0cEzPGtYOzmjOF0=", + "secure_core": true, + "ips": [ + "185.159.158.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-144.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.185" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-144.protonvpn.net", + "wgpubkey": "8NeySGpnCMtwtgwVARpoCNonu9qxQxrE6hFztMcMDkA=", + "secure_core": true, + "ips": [ + "185.159.158.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-176.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-176.protonvpn.net", + "wgpubkey": "BoAWTY6Bzcy6owGEkjeMEjENa/o/CZbkO6WPSynKdHU=", + "secure_core": true, + "ips": [ + "185.159.158.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-182.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-182.protonvpn.net", + "wgpubkey": "9JeNQPhigBfmRY0aAtRuqBklf8HVhTAyXZcv0I5vZBg=", + "secure_core": true, + "ips": [ + "185.159.158.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-183.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-183.protonvpn.net", + "wgpubkey": "d2QJ4qxbpm7HSiEbssGku1X+UNnZBcEWcApgS0xgI34=", + "secure_core": true, + "ips": [ + "185.159.158.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-185.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.212" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-185.protonvpn.net", + "wgpubkey": "+RKh5rGk9iaI9TwKqCO2iAtDTG6b+NBgwJijaOALNlQ=", + "secure_core": true, + "ips": [ + "185.159.158.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-188.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-188.protonvpn.net", + "wgpubkey": "dnLzpdaCyBlnnYS9iBwhPXoTXBQQNStT6/Tx6CytOmg=", + "secure_core": true, + "ips": [ + "185.159.158.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-197.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-197.protonvpn.net", + "wgpubkey": "Orm/o/kOBbNLCvxrwdQZHswlHRyz4O8HSaCHJ7YF0Rs=", + "secure_core": true, + "ips": [ + "185.159.158.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-199.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-199.protonvpn.net", + "wgpubkey": "ADxD28Omx0nDn+PDjlRaZ4DjvRe19Urjz4tJCFtmNXc=", + "secure_core": true, + "ips": [ + "185.159.158.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-201.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-201.protonvpn.net", + "wgpubkey": "sn2DwUHXSLYbub6dVFKRhE2QHcji5I8TMSotCTlGFw0=", + "secure_core": true, + "ips": [ + "185.159.158.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-207.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.229" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-207.protonvpn.net", + "wgpubkey": "yYcyNBfbU6SWkTLNrzK7peMXHCkG4FKg9bk2D/5yLCo=", + "secure_core": true, + "ips": [ + "185.159.158.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-208.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-208.protonvpn.net", + "wgpubkey": "nSo/1FlBPdm/hotIKPb2dFcY5AwZPQPBcbvLdcL6Zw4=", + "secure_core": true, + "ips": [ + "185.159.158.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-222.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-222.protonvpn.net", + "wgpubkey": "nZYSL1qRLQRFC71xHVmBxP6XMwTm7yEFGBNtCBckEAg=", + "secure_core": true, + "ips": [ + "185.159.158.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-237.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-237.protonvpn.net", + "wgpubkey": "E4gRP4uJvUMxTXVfTDLtkAmfAV7Jyl1uYltU8tlvb2Y=", + "secure_core": true, + "ips": [ + "185.159.158.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-258.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-258.protonvpn.net", + "wgpubkey": "rPDCc4RoglCJ/M4BmFgr2eA8Ob7oc9qTTWG/79rApAI=", + "secure_core": true, + "ips": [ + "185.159.158.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-259.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-259.protonvpn.net", + "wgpubkey": "KQ0hvdTjgHoRLCzpC/Mf7vDD+PZr8TqW0faHCE4yDlQ=", + "secure_core": true, + "ips": [ + "185.159.158.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-134.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-134.protonvpn.net", + "wgpubkey": "/KM6QESKJRK7GiMqWstUl1Yn9pzc6DPzqCtNauxYgn8=", + "secure_core": true, + "ips": [ + "185.159.156.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-135.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-135.protonvpn.net", + "wgpubkey": "qT0lxDVbWEIyrL2A40FfCXRlUALvnryRz2aQdD6gUDs=", + "secure_core": true, + "ips": [ + "185.159.156.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-164.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-164.protonvpn.net", + "wgpubkey": "WLIgAxtnNNGoiPqZLeQ398sBR3Kubzzf52zcpP6Is3c=", + "secure_core": true, + "ips": [ + "185.159.156.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-165.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.109" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-165.protonvpn.net", + "wgpubkey": "CWQjPwtCiy4zb/nUbj5VhtxLHMWY6wYS02PaayGdi3c=", + "secure_core": true, + "ips": [ + "185.159.156.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-166.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-166.protonvpn.net", + "wgpubkey": "W2efYy9of9Z/iEvjcstWVueHoNsbr6rXE8mCr57Mglc=", + "secure_core": true, + "ips": [ + "185.159.156.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-167.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-167.protonvpn.net", + "wgpubkey": "fXtINk5LcWvNoCxNwx9WkmHieyyw+zIcLiiRM6eyECc=", + "secure_core": true, + "ips": [ + "185.159.156.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-168.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-168.protonvpn.net", + "wgpubkey": "hrpCDkmnfP/gvsvxAI113SMGs/h/e/fAVJv108kypH8=", + "secure_core": true, + "ips": [ + "185.159.156.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-169.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-169.protonvpn.net", + "wgpubkey": "zD4qEIk4HqXDJ5vHE9G34EUUhEybyBhA/Gs8NrfOdmI=", + "secure_core": true, + "ips": [ + "185.159.156.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-171.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-171.protonvpn.net", + "wgpubkey": "WORwyyPb5VRQTmKfAoemc4rp8ROmfAFHN7hi2Mv/F3Y=", + "secure_core": true, + "ips": [ + "185.159.156.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-172.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-172.protonvpn.net", + "wgpubkey": "Nm/K6UQLBTliioKl4b/1bXeyvGCXyhm1DW6Ja9cTNkw=", + "secure_core": true, + "ips": [ + "185.159.156.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-173.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-173.protonvpn.net", + "wgpubkey": "Mj03vnL7RG+sg2cognGuQg9MXEUJQYGHBmJ9BjUzWhQ=", + "secure_core": true, + "ips": [ + "185.159.156.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-174.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-174.protonvpn.net", + "wgpubkey": "l7w86I7WktXeH5okV0/c/NW14hfDiAqrkZ33MBJAmyE=", + "secure_core": true, + "ips": [ + "185.159.156.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-179.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-179.protonvpn.net", + "wgpubkey": "wm+NrCihayTi0RbmaW4CWZI3h9KOU/i7320UyTY4zFc=", + "secure_core": true, + "ips": [ + "185.159.156.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-181.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-181.protonvpn.net", + "wgpubkey": "uHxpjPRK6pzTRiHfi+4TpkVZWgL26/KZKlTV4TmItEk=", + "secure_core": true, + "ips": [ + "185.159.156.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-190.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-190.protonvpn.net", + "wgpubkey": "Daer24dSnQMoGm/LIDjPbKgrlUjF0ldjiDA9dfe+EXk=", + "secure_core": true, + "ips": [ + "185.159.156.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-192.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-192.protonvpn.net", + "wgpubkey": "Q+F33KqUr9obW0a7u9ZwNRrQlcwcoNdStZfTs321CTY=", + "secure_core": true, + "ips": [ + "185.159.156.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-194.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-194.protonvpn.net", + "wgpubkey": "w2G3XM+TbpmahFFOeGqXJtWdaYzKO7rBmNRQ/+T8JCU=", + "secure_core": true, + "ips": [ + "185.159.156.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-195.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-195.protonvpn.net", + "wgpubkey": "qnjcsT0wrNHUtNm1uloWf9YbJij1Nr8O4UHtM9uqkmI=", + "secure_core": true, + "ips": [ + "185.159.156.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-202.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-202.protonvpn.net", + "wgpubkey": "umCaW98SBPbNjApBKCo0ReYhT2AJ0QfV/ZlyWnWmVUk=", + "secure_core": true, + "ips": [ + "185.159.156.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-203.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-203.protonvpn.net", + "wgpubkey": "vGD6tyZKW743G1OHC/F4DAuyD+gJqSv8OTlRk8iODEA=", + "secure_core": true, + "ips": [ + "185.159.156.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-221.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-221.protonvpn.net", + "wgpubkey": "L/lAxBloXzDXNrWw1xtJgEMJWPct1reKQPkRsw/7Knw=", + "secure_core": true, + "ips": [ + "185.159.156.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-227.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.125" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-227.protonvpn.net", + "wgpubkey": "D7+AG9clQ1F/6uaY8apeoKDOKAD7p6tf65dFIVLGsHg=", + "secure_core": true, + "ips": [ + "185.159.156.125" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-58.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-58.protonvpn.net", + "wgpubkey": "Yu2fgynXUAASCkkrXWj76LRriFxKMTQq+zjTzyOKG1Q=", + "secure_core": true, + "ips": [ + "185.159.156.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-59.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-59.protonvpn.net", + "wgpubkey": "d6QfE2GBWT42RpVD5rNEb4qxK+0yPid9rI3bhm7PLm0=", + "secure_core": true, + "ips": [ + "185.159.156.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-66.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-66.protonvpn.net", + "wgpubkey": "rRO6yJim++Ezz6scCLMaizI+taDjU1pzR2nfW6qKbW0=", + "secure_core": true, + "ips": [ + "185.159.156.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-67.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-67.protonvpn.net", + "wgpubkey": "R8Of+lrl8DgOQmO6kcjlX7SchP4ncvbY90MB7ZUNmD8=", + "secure_core": true, + "ips": [ + "185.159.156.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-69.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-69.protonvpn.net", + "wgpubkey": "ce06fOftuyKP16IymSeHUNeTs4aGfA3SA033wGHrixg=", + "secure_core": true, + "ips": [ + "185.159.156.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-74.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-74.protonvpn.net", + "wgpubkey": "uQAr4o8x8M9aONM/nMu7DHLZCUobnRILlaTPmnD8ISw=", + "secure_core": true, + "ips": [ + "185.159.156.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-75.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-75.protonvpn.net", + "wgpubkey": "zU0Jf18SPgf+6Bzg876z6MbG8M3pHSwQvKoPl1bhHjg=", + "secure_core": true, + "ips": [ + "185.159.156.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "US-CO#21-TOR", + "hostname": "us-co-21-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "84.17.63.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "US-CO#21-TOR", + "hostname": "us-co-21-tor.protonvpn.net", + "wgpubkey": "wKzdG/orqK8ZHgBUaIB6RvxjuZvV2s58e+Palmqx1Co=", + "tor": true, + "ips": [ + "84.17.63.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "US-GA#29-TOR", + "hostname": "us-ga-29-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "89.187.171.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "US-GA#29-TOR", + "hostname": "us-ga-29-tor.protonvpn.net", + "wgpubkey": "E5JWfTrD/cRf5W4shN34r83jtyMurnv+SL+BnYOk5yA=", + "tor": true, + "ips": [ + "89.187.171.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#1", + "hostname": "node-us-119.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.156.46.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#1", + "hostname": "node-us-119.protonvpn.net", + "wgpubkey": "zAIZj//t14xuriUMSlWk4/J2jox6I/JMzHL1Y3D/WUE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.156.46.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#100", + "hostname": "node-us-207.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#100", + "hostname": "node-us-207.protonvpn.net", + "wgpubkey": "yYcyNBfbU6SWkTLNrzK7peMXHCkG4FKg9bk2D/5yLCo=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#112", + "hostname": "node-us-219.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#112", + "hostname": "node-us-219.protonvpn.net", + "wgpubkey": "YHSRY7kE+yE/rMDmeStrdoMVNbSnk0swQVP4KxiB0hg=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#127", + "hostname": "node-us-224.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#127", + "hostname": "node-us-224.protonvpn.net", + "wgpubkey": "e3NMqmeAfSRFKRXou+nAvUloxcE8oz/cUtgIJ3OBFSQ=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#72", + "hostname": "node-us-254.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.18.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#72", + "hostname": "node-us-254.protonvpn.net", + "wgpubkey": "zdYVhy77B3nLGEeiTmC8we1pUMvw+RO/SL9NcYNpj08=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.18.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-FREE#38", + "hostname": "node-us-56.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "89.187.171.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-FREE#38", + "hostname": "node-us-56.protonvpn.net", + "wgpubkey": "SC3K+dUvwvU3yammLuEZ0YEVmRe+YwYvQHftqJA2fms=", + "free": true, + "ips": [ + "89.187.171.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#133", + "hostname": "node-us-247.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#133", + "hostname": "node-us-247.protonvpn.net", + "wgpubkey": "kUecqd/j8pg+umeA6UVuYi47FclMHWRRi8WUVIBshVY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#159", + "hostname": "node-us-248.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#159", + "hostname": "node-us-248.protonvpn.net", + "wgpubkey": "lHEn/qdFKAZZjGWD3gAN1QBxuEZly7pSqaqRQRIW2hI=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#185", + "hostname": "node-us-249.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#185", + "hostname": "node-us-249.protonvpn.net", + "wgpubkey": "RAy+GOFz+bdG0l/wS+4J2AcpcVyUc2xbR6JR1Q8zJg4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#211", + "hostname": "node-us-69.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.170.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#211", + "hostname": "node-us-69.protonvpn.net", + "wgpubkey": "ce06fOftuyKP16IymSeHUNeTs4aGfA3SA033wGHrixg=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.170.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#225", + "hostname": "node-us-59.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.171.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#225", + "hostname": "node-us-59.protonvpn.net", + "wgpubkey": "d6QfE2GBWT42RpVD5rNEb4qxK+0yPid9rI3bhm7PLm0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.171.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#239", + "hostname": "node-us-121.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#239", + "hostname": "node-us-121.protonvpn.net", + "wgpubkey": "5vyz98gHBbT8z1bdNNZdGYAW0NJIgw1pgr+E6WlJPQA=", + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#253", + "hostname": "node-us-225.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#253", + "hostname": "node-us-225.protonvpn.net", + "wgpubkey": "4RblBFy7/Vm2VT6SCyZJ1kKGOgdz2k+WxpNQKdw8mmc=", + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#115", + "hostname": "node-us-220.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#115", + "hostname": "node-us-220.protonvpn.net", + "wgpubkey": "JpTNgqGxonmaS/1dNbN35JpaZCd+kPw7eMwslJmgRXU=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#127", + "hostname": "node-us-240.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#127", + "hostname": "node-us-240.protonvpn.net", + "wgpubkey": "WNLAmQkeAvdg9QRFMXq7EuwpEWWkltWwiS/DGIcjHjs=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#153", + "hostname": "node-us-241.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#153", + "hostname": "node-us-241.protonvpn.net", + "wgpubkey": "xuqP9uEGryELhamLSK9IDRNhljo3lA1zL9/gS7yj2WQ=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#200", + "hostname": "node-us-204.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#200", + "hostname": "node-us-204.protonvpn.net", + "wgpubkey": "KwU9qcRO0eamCxh/iF7pL2RAOOJezHPVqkIeANcS5Wk=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#225", + "hostname": "node-us-206.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#225", + "hostname": "node-us-206.protonvpn.net", + "wgpubkey": "JWoqa2qmbXiScPZdipli9Bvb6aqwaol1FdxMFN4d1Tg=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#248", + "hostname": "node-us-130.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#248", + "hostname": "node-us-130.protonvpn.net", + "wgpubkey": "houxrsE+RottYWy4pSsRM8ZEReqN0cEzPGtYOzmjOF0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#261", + "hostname": "node-us-135.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#261", + "hostname": "node-us-135.protonvpn.net", + "wgpubkey": "qT0lxDVbWEIyrL2A40FfCXRlUALvnryRz2aQdD6gUDs=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#274", + "hostname": "node-us-205.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#274", + "hostname": "node-us-205.protonvpn.net", + "wgpubkey": "j+clV7yQPWWhQ7v4/8AWBzZ5DNUGSvruZAIsVtyZ92A=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#45", + "hostname": "node-us-129.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#45", + "hostname": "node-us-129.protonvpn.net", + "wgpubkey": "69bM/DJY8bKExbCqUhLKY4L1NXaYxzwi/bf/61MCBR8=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#100", + "hostname": "node-us-239.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#100", + "hostname": "node-us-239.protonvpn.net", + "wgpubkey": "szI+Wjh6ov2sg3Onxm1tkdSk/k8rRRYq8oPS3D91mH0=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#128", + "hostname": "node-us-108.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#128", + "hostname": "node-us-108.protonvpn.net", + "wgpubkey": "tvJm5a80r4KeOxe0K7BLQ27DYPjCfoGxh1l3DzNg4RI=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#147", + "hostname": "node-us-75.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#147", + "hostname": "node-us-75.protonvpn.net", + "wgpubkey": "zU0Jf18SPgf+6Bzg876z6MbG8M3pHSwQvKoPl1bhHjg=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#161", + "hostname": "node-us-109.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#161", + "hostname": "node-us-109.protonvpn.net", + "wgpubkey": "dEsuT/1kn90iBupDFEkkpYbxmZP9pqu9zG5uG01ppns=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#175", + "hostname": "node-us-203.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#175", + "hostname": "node-us-203.protonvpn.net", + "wgpubkey": "vGD6tyZKW743G1OHC/F4DAuyD+gJqSv8OTlRk8iODEA=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#190", + "hostname": "node-us-57.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#190", + "hostname": "node-us-57.protonvpn.net", + "wgpubkey": "jqu/dcZfEtote0IN1H4ZFneR8p4sZ7juna+eUndhRgs=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#203", + "hostname": "node-us-222.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#203", + "hostname": "node-us-222.protonvpn.net", + "wgpubkey": "nZYSL1qRLQRFC71xHVmBxP6XMwTm7yEFGBNtCBckEAg=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#29", + "hostname": "node-us-125.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.58.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#29", + "hostname": "node-us-125.protonvpn.net", + "wgpubkey": "wqJcz4akzVFxx35aJ5B7G/IJ9qsRvpcGNub3rLHcqXo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.58.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#63", + "hostname": "node-us-238.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#63", + "hostname": "node-us-238.protonvpn.net", + "wgpubkey": "dJWLpQaWP1hw0QLQW84B++fWtopgneOafYVZXyyUoAM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#100", + "hostname": "node-us-93.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#100", + "hostname": "node-us-93.protonvpn.net", + "wgpubkey": "KJr11pgXcjU4BTRb3gJsijwKwI1m/u6vMURUwajagyY=", + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#44", + "hostname": "node-us-94.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#44", + "hostname": "node-us-94.protonvpn.net", + "wgpubkey": "z54+LsnV9L6PyS/MO4dPfJ650jiOVLVevYrWf2WsDzg=", + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#62", + "hostname": "node-us-74.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#62", + "hostname": "node-us-74.protonvpn.net", + "wgpubkey": "uQAr4o8x8M9aONM/nMu7DHLZCUobnRILlaTPmnD8ISw=", + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#76", + "hostname": "node-us-58.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#76", + "hostname": "node-us-58.protonvpn.net", + "wgpubkey": "Yu2fgynXUAASCkkrXWj76LRriFxKMTQq+zjTzyOKG1Q=", + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#143", + "hostname": "node-us-164.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.45.4.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#143", + "hostname": "node-us-164.protonvpn.net", + "wgpubkey": "WLIgAxtnNNGoiPqZLeQ398sBR3Kubzzf52zcpP6Is3c=", + "stream": true, + "port_forward": true, + "ips": [ + "89.45.4.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#155", + "hostname": "node-us-165.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#155", + "hostname": "node-us-165.protonvpn.net", + "wgpubkey": "CWQjPwtCiy4zb/nUbj5VhtxLHMWY6wYS02PaayGdi3c=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#167", + "hostname": "node-us-166.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#167", + "hostname": "node-us-166.protonvpn.net", + "wgpubkey": "W2efYy9of9Z/iEvjcstWVueHoNsbr6rXE8mCr57Mglc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#179", + "hostname": "node-us-167.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#179", + "hostname": "node-us-167.protonvpn.net", + "wgpubkey": "fXtINk5LcWvNoCxNwx9WkmHieyyw+zIcLiiRM6eyECc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#191", + "hostname": "node-us-168.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#191", + "hostname": "node-us-168.protonvpn.net", + "wgpubkey": "hrpCDkmnfP/gvsvxAI113SMGs/h/e/fAVJv108kypH8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#203", + "hostname": "node-us-169.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#203", + "hostname": "node-us-169.protonvpn.net", + "wgpubkey": "zD4qEIk4HqXDJ5vHE9G34EUUhEybyBhA/Gs8NrfOdmI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#215", + "hostname": "node-us-171.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#215", + "hostname": "node-us-171.protonvpn.net", + "wgpubkey": "WORwyyPb5VRQTmKfAoemc4rp8ROmfAFHN7hi2Mv/F3Y=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#227", + "hostname": "node-us-172.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#227", + "hostname": "node-us-172.protonvpn.net", + "wgpubkey": "Nm/K6UQLBTliioKl4b/1bXeyvGCXyhm1DW6Ja9cTNkw=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#239", + "hostname": "node-us-173.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#239", + "hostname": "node-us-173.protonvpn.net", + "wgpubkey": "Mj03vnL7RG+sg2cognGuQg9MXEUJQYGHBmJ9BjUzWhQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#251", + "hostname": "node-us-174.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#251", + "hostname": "node-us-174.protonvpn.net", + "wgpubkey": "l7w86I7WktXeH5okV0/c/NW14hfDiAqrkZ33MBJAmyE=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#283", + "hostname": "node-us-209.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#283", + "hostname": "node-us-209.protonvpn.net", + "wgpubkey": "3UovAm+ES1DXOEjkBiCOEnOHaicDmaVHXmym6oPE7C8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#295", + "hostname": "node-us-210.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#295", + "hostname": "node-us-210.protonvpn.net", + "wgpubkey": "pD8KPLHTUnyGvfZxSZn5mgedaIZIr+CV8Ci264WdEWU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#307", + "hostname": "node-us-211.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.127.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#307", + "hostname": "node-us-211.protonvpn.net", + "wgpubkey": "e3FyPc2qkPxQITc2Gaa9HerwCAejg1VafyZ+QLiwFCA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.127.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#319", + "hostname": "node-us-212.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#319", + "hostname": "node-us-212.protonvpn.net", + "wgpubkey": "5CiaJpve8E308qd7nrpacFBg6zj01SenfPOBBtf4/3A=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#331", + "hostname": "node-us-242.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#331", + "hostname": "node-us-242.protonvpn.net", + "wgpubkey": "ksWZOz5RLZaZB4KAU907/LdYM+Aqji1NuQ0QfCzodGc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#357", + "hostname": "node-us-243.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#357", + "hostname": "node-us-243.protonvpn.net", + "wgpubkey": "bXiKQCzCfajtuTNSQQpAqcrO0Rhid5d6E3MseL2lxXU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#383", + "hostname": "node-us-244.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#383", + "hostname": "node-us-244.protonvpn.net", + "wgpubkey": "bH4k0o3gbeVcusYIdmdrQElps3r15HItiqtP5T7x3U4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#487", + "hostname": "node-us-253.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#487", + "hostname": "node-us-253.protonvpn.net", + "wgpubkey": "bMtZjBqTLqHPvDJXSZ81flOlYmH0kgU503KFpT8VIR8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#554", + "hostname": "node-us-66.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.230.126.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#554", + "hostname": "node-us-66.protonvpn.net", + "wgpubkey": "rRO6yJim++Ezz6scCLMaizI+taDjU1pzR2nfW6qKbW0=", + "stream": true, + "port_forward": true, + "ips": [ + "185.230.126.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#89", + "hostname": "node-us-122.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.35.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#89", + "hostname": "node-us-122.protonvpn.net", + "wgpubkey": "5Vs6LCNRBfpISEGhbdZMgyNVhrbjxkuflPMfdj9EkTc=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.35.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-FREE#37", + "hostname": "node-us-61.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "84.17.45.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-FREE#37", + "hostname": "node-us-61.protonvpn.net", + "wgpubkey": "wh6moITNnZ8vb5sKb822coweXEjDeOmDMZoHxCNyOGY=", + "free": true, + "ips": [ + "84.17.45.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#1", + "hostname": "node-us-229.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.17.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#1", + "hostname": "node-us-229.protonvpn.net", + "wgpubkey": "znjz1X8oDeciB6/JHNvbOQxIkBPvA9gP5dIXpesm+Fc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.17.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#101", + "hostname": "node-us-181.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.147.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#101", + "hostname": "node-us-181.protonvpn.net", + "wgpubkey": "uHxpjPRK6pzTRiHfi+4TpkVZWgL26/KZKlTV4TmItEk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.147.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#176", + "hostname": "node-us-213.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#176", + "hostname": "node-us-213.protonvpn.net", + "wgpubkey": "W212beMkUN0NM9wf4QR4er+Q2wqpYMslj5SG3IGdBCM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#188", + "hostname": "node-us-214.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#188", + "hostname": "node-us-214.protonvpn.net", + "wgpubkey": "7Iw04uu95YjDjwE6UlDWZejISeJBK1imqFXDeQInzQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#200", + "hostname": "node-us-215.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#200", + "hostname": "node-us-215.protonvpn.net", + "wgpubkey": "14J0jdfHng+jEykBwTKG427r7CTLwWhPEXRtbfp071s=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#236", + "hostname": "node-us-227.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#236", + "hostname": "node-us-227.protonvpn.net", + "wgpubkey": "D7+AG9clQ1F/6uaY8apeoKDOKAD7p6tf65dFIVLGsHg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#259", + "hostname": "node-us-228.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#259", + "hostname": "node-us-228.protonvpn.net", + "wgpubkey": "OBxUYm9fx8N3Tf/tcvn3IBhdOyaakd91Osi4zF8XgE0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#282", + "hostname": "node-us-182.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.51.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#282", + "hostname": "node-us-182.protonvpn.net", + "wgpubkey": "9JeNQPhigBfmRY0aAtRuqBklf8HVhTAyXZcv0I5vZBg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.51.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#299", + "hostname": "node-us-183.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.87.214.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#299", + "hostname": "node-us-183.protonvpn.net", + "wgpubkey": "d2QJ4qxbpm7HSiEbssGku1X+UNnZBcEWcApgS0xgI34=", + "stream": true, + "port_forward": true, + "ips": [ + "45.87.214.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#316", + "hostname": "node-us-185.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#316", + "hostname": "node-us-185.protonvpn.net", + "wgpubkey": "+RKh5rGk9iaI9TwKqCO2iAtDTG6b+NBgwJijaOALNlQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#53", + "hostname": "node-us-176.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#53", + "hostname": "node-us-176.protonvpn.net", + "wgpubkey": "BoAWTY6Bzcy6owGEkjeMEjENa/o/CZbkO6WPSynKdHU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#65", + "hostname": "node-us-177.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#65", + "hostname": "node-us-177.protonvpn.net", + "wgpubkey": "2nZkJr74LHqiPIAjDmdo1EJrN7DJLVq7N92RNYv7cSk=", + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#77", + "hostname": "node-us-178.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#77", + "hostname": "node-us-178.protonvpn.net", + "wgpubkey": "sr/YwNGtQzjEi4eJ5fwswkFxuh2Au6NKN5MzUiWV9FY=", + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#89", + "hostname": "node-us-179.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#89", + "hostname": "node-us-179.protonvpn.net", + "wgpubkey": "wm+NrCihayTi0RbmaW4CWZI3h9KOU/i7320UyTY4zFc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#65", + "hostname": "node-us-262.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#65", + "hostname": "node-us-262.protonvpn.net", + "wgpubkey": "7IP+uEN0mJ2xkrq5pVz2SFNvZ1OeyhBgjXNRhLmKfHQ=", + "free": true, + "ips": [ + "149.102.226.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#69", + "hostname": "node-us-263.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#69", + "hostname": "node-us-263.protonvpn.net", + "wgpubkey": "ljr0KidoBwgj8ZRs4DOCl7GbXMOwGeqJeYUHV9bt20o=", + "free": true, + "ips": [ + "149.102.226.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#73", + "hostname": "node-us-264.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#73", + "hostname": "node-us-264.protonvpn.net", + "wgpubkey": "c+9CyG97uDKPSgCtd/sjvFoXTnswiHsj3kd2CpdXIUc=", + "free": true, + "ips": [ + "149.102.226.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#166", + "hostname": "node-us-187.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#166", + "hostname": "node-us-187.protonvpn.net", + "wgpubkey": "siQYYgaXYcbz1W0fR0Tpq6ExLLggu/xCOdDOfitDexM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#178", + "hostname": "node-us-188.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#178", + "hostname": "node-us-188.protonvpn.net", + "wgpubkey": "dnLzpdaCyBlnnYS9iBwhPXoTXBQQNStT6/Tx6CytOmg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#190", + "hostname": "node-us-189.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#190", + "hostname": "node-us-189.protonvpn.net", + "wgpubkey": "9HAY7JVBdohkIj1ViPJW2huz5roF89F1/5/uqrg2gh4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#286", + "hostname": "node-us-218.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.115.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#286", + "hostname": "node-us-218.protonvpn.net", + "wgpubkey": "KT6DATq2AiepA8r5YzARCvcczbZoL+Au+rG04JvxBjI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.115.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#298", + "hostname": "node-us-221.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "104.234.212.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#298", + "hostname": "node-us-221.protonvpn.net", + "wgpubkey": "L/lAxBloXzDXNrWw1xtJgEMJWPct1reKQPkRsw/7Knw=", + "stream": true, + "port_forward": true, + "ips": [ + "104.234.212.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#322", + "hostname": "node-us-237.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.198.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#322", + "hostname": "node-us-237.protonvpn.net", + "wgpubkey": "E4gRP4uJvUMxTXVfTDLtkAmfAV7Jyl1uYltU8tlvb2Y=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.198.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#422", + "hostname": "node-us-160.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "143.244.44.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#422", + "hostname": "node-us-160.protonvpn.net", + "wgpubkey": "XlC8xkM0TQpsm/9c5j5u5S7wrI0VliBvXBiKji3UQzU=", + "stream": true, + "port_forward": true, + "ips": [ + "143.244.44.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#435", + "hostname": "node-us-201.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#435", + "hostname": "node-us-201.protonvpn.net", + "wgpubkey": "sn2DwUHXSLYbub6dVFKRhE2QHcji5I8TMSotCTlGFw0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#450", + "hostname": "node-us-202.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#450", + "hostname": "node-us-202.protonvpn.net", + "wgpubkey": "umCaW98SBPbNjApBKCo0ReYhT2AJ0QfV/ZlyWnWmVUk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#465", + "hostname": "node-us-134.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.178.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#465", + "hostname": "node-us-134.protonvpn.net", + "wgpubkey": "/KM6QESKJRK7GiMqWstUl1Yn9pzc6DPzqCtNauxYgn8=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.178.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#482", + "hostname": "node-us-118.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#482", + "hostname": "node-us-118.protonvpn.net", + "wgpubkey": "LMkFEUVVqWl1di39x+CloLdXXH/X9P/vKXeVXohvqlc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#499", + "hostname": "node-us-190.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#499", + "hostname": "node-us-190.protonvpn.net", + "wgpubkey": "Daer24dSnQMoGm/LIDjPbKgrlUjF0ldjiDA9dfe+EXk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#516", + "hostname": "node-us-144.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#516", + "hostname": "node-us-144.protonvpn.net", + "wgpubkey": "8NeySGpnCMtwtgwVARpoCNonu9qxQxrE6hFztMcMDkA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#533", + "hostname": "node-us-192.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#533", + "hostname": "node-us-192.protonvpn.net", + "wgpubkey": "Q+F33KqUr9obW0a7u9ZwNRrQlcwcoNdStZfTs321CTY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#550", + "hostname": "node-us-216.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#550", + "hostname": "node-us-216.protonvpn.net", + "wgpubkey": "PXtm4zWbqySH2QGaI/5ivRVGXPwztXfzMbtoT9Ad0jE=", + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#567", + "hostname": "node-us-194.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#567", + "hostname": "node-us-194.protonvpn.net", + "wgpubkey": "w2G3XM+TbpmahFFOeGqXJtWdaYzKO7rBmNRQ/+T8JCU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#584", + "hostname": "node-us-195.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#584", + "hostname": "node-us-195.protonvpn.net", + "wgpubkey": "qnjcsT0wrNHUtNm1uloWf9YbJij1Nr8O4UHtM9uqkmI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#601", + "hostname": "node-us-67.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.148.18.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#601", + "hostname": "node-us-67.protonvpn.net", + "wgpubkey": "R8Of+lrl8DgOQmO6kcjlX7SchP4ncvbY90MB7ZUNmD8=", + "stream": true, + "port_forward": true, + "ips": [ + "193.148.18.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#614", + "hostname": "node-us-197.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#614", + "hostname": "node-us-197.protonvpn.net", + "wgpubkey": "Orm/o/kOBbNLCvxrwdQZHswlHRyz4O8HSaCHJ7YF0Rs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#631", + "hostname": "node-us-217.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#631", + "hostname": "node-us-217.protonvpn.net", + "wgpubkey": "iJIw5umGxtrrSIRxVrSF1Ofu5IDphpBpAJOvsrG4FiI=", + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#100", + "hostname": "node-us-126.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#100", + "hostname": "node-us-126.protonvpn.net", + "wgpubkey": "qDJgY2K+GtC/geqxLN2ZO61LHlwENsMpapC1eGF21mM=", + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#105", + "hostname": "node-us-260.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#105", + "hostname": "node-us-260.protonvpn.net", + "wgpubkey": "sHJbg8AIxsb5TFe8xIWPxo8VXuAMk9+HcdY0hHvGNFg=", + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#127", + "hostname": "node-us-261.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#127", + "hostname": "node-us-261.protonvpn.net", + "wgpubkey": "YU5vcydVJvB83c6VBS26WWq9spE+9Md9gBn7tesSSGQ=", + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#150", + "hostname": "node-us-208.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#150", + "hostname": "node-us-208.protonvpn.net", + "wgpubkey": "nSo/1FlBPdm/hotIKPb2dFcY5AwZPQPBcbvLdcL6Zw4=", + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#38", + "hostname": "node-us-158.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.245.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#38", + "hostname": "node-us-158.protonvpn.net", + "wgpubkey": "fM5t18SNQhPw5zXr/6crLPu9KseB3/BeDF+McXoclmg=", + "stream": true, + "ips": [ + "107.181.245.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#41", + "hostname": "node-us-226.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "74.63.204.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#41", + "hostname": "node-us-226.protonvpn.net", + "wgpubkey": "fDSDNxB7yfHbaemo7cAFMWBsEm31bVAAradL4hbBEG0=", + "stream": true, + "ips": [ + "74.63.204.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#1", + "hostname": "node-us-200.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#1", + "hostname": "node-us-200.protonvpn.net", + "wgpubkey": "DzAE6lLRbKUNuxFkuN2gI+sokPARCKYw/E1DyaXQWHc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#409", + "hostname": "node-us-250.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#409", + "hostname": "node-us-250.protonvpn.net", + "wgpubkey": "WGwF8za3sD1rc946cBJZe1SEwJB2NzAGMTDx1iGIrQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#435", + "hostname": "node-us-251.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#435", + "hostname": "node-us-251.protonvpn.net", + "wgpubkey": "0abDpTVm9oXMpPL+8W495UD3BCawGKEstNO784GUaj4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#461", + "hostname": "node-us-252.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#461", + "hostname": "node-us-252.protonvpn.net", + "wgpubkey": "84bwJLVJI1YzH99wbU1t6fouJuZGxcMsfKQpBz7LDxI=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#513", + "hostname": "node-us-255.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.84.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#513", + "hostname": "node-us-255.protonvpn.net", + "wgpubkey": "Yg7VdAicq2Rj/FNl7dGvm4jB2XlmrzwBj6/eosX5CiY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.84.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#539", + "hostname": "node-us-199.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#539", + "hostname": "node-us-199.protonvpn.net", + "wgpubkey": "ADxD28Omx0nDn+PDjlRaZ4DjvRe19Urjz4tJCFtmNXc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#77", + "hostname": "node-us-120.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.54.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#77", + "hostname": "node-us-120.protonvpn.net", + "wgpubkey": "0lVdORRneTkqH7Hh12Z5hnATz+kXmkiSwz8YHHx4Ywg=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.54.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#100", + "hostname": "node-us-246.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#100", + "hostname": "node-us-246.protonvpn.net", + "wgpubkey": "mdgZ6wT7AXGznoYqxERZexx9aPEd/FhQ+P6fdXCBuVQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#109", + "hostname": "node-us-123.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#109", + "hostname": "node-us-123.protonvpn.net", + "wgpubkey": "mn8WlkJqY66j17ZbwN2DB0Nj74zG/DicuRQZtxtQsTM=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#126", + "hostname": "node-us-124.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#126", + "hostname": "node-us-124.protonvpn.net", + "wgpubkey": "DmLmc8enWKMicpxkxy2md1derQApeMJibtt2UZnCxG4=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#143", + "hostname": "node-us-223.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#143", + "hostname": "node-us-223.protonvpn.net", + "wgpubkey": "MkUR6S5ObCzMx0ZToukggFecdUEjEM2GU/ZhLoz2ICY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#57", + "hostname": "node-us-245.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#57", + "hostname": "node-us-245.protonvpn.net", + "wgpubkey": "utqNH4P+C0fA1wTgIUaIfhm1b7ai0iEGvXyiw4KC3Fs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#100", + "hostname": "node-us-258.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#100", + "hostname": "node-us-258.protonvpn.net", + "wgpubkey": "rPDCc4RoglCJ/M4BmFgr2eA8Ob7oc9qTTWG/79rApAI=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#101", + "hostname": "node-us-259.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#101", + "hostname": "node-us-259.protonvpn.net", + "wgpubkey": "KQ0hvdTjgHoRLCzpC/Mf7vDD+PZr8TqW0faHCE4yDlQ=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#13", + "hostname": "node-us-230.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "205.142.240.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#13", + "hostname": "node-us-230.protonvpn.net", + "wgpubkey": "/HvEnSU5JaswyBC/YFs74eGLXqLdzsaFeVT8SD1KYAc=", + "stream": true, + "ips": [ + "205.142.240.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#25", + "hostname": "node-us-256.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#25", + "hostname": "node-us-256.protonvpn.net", + "wgpubkey": "gU9CLkRxLUarj9+MtswvE/2Tvclx32w5aoSYeY3eEX8=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#50", + "hostname": "node-us-257.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#50", + "hostname": "node-us-257.protonvpn.net", + "wgpubkey": "6Ct2qC5B3ayxBtkV2y6ScFzYcLD/6fLmtMmHPCJTAVU=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#9", + "hostname": "node-us-31.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "69.10.63.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#9", + "hostname": "node-us-31.protonvpn.net", + "wgpubkey": "kiVlibDLh5yZQOJ6Gaw1MB9wt4YHmKpfXZrAc0No9Gc=", + "stream": true, + "ips": [ + "69.10.63.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Washington", + "server_name": "US-DC#26", + "hostname": "node-us-127.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.247.68.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Washington", + "server_name": "US-DC#26", + "hostname": "node-us-127.protonvpn.net", + "wgpubkey": "3Lz5VpqnS7wfnOWVYFNCFHl+JuuanJ/hB2TqOKQZxVI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.247.68.50" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "city": "Tashkent", + "server_name": "UZ#25", + "hostname": "uz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.204" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "city": "Tashkent", + "server_name": "UZ#25", + "hostname": "uz-02.protonvpn.net", + "wgpubkey": "kzVmk7etgCK1BeRoschsiUqEGVbMTqmivoDt/5CZDnw=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.204" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas", + "server_name": "VE#1", + "hostname": "ve-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.145.1" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "city": "Caracas", + "server_name": "VE#1", + "hostname": "ve-01.protonvpn.net", + "wgpubkey": "Wrjq2Q9OZY4fZz+dnjd0g2zxio4fCKTHaWOX2QqQNFY=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.145.1" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "SE-VN#1", + "hostname": "node-vn-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.85" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "SE-VN#1", + "hostname": "node-vn-01.protonvpn.net", + "wgpubkey": "NfKOMtk2fuDycbQXv36yk5mfdgDA8/8SN6amCdFrKxQ=", + "secure_core": true, + "ips": [ + "185.159.156.85" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "VN#1", + "hostname": "node-vn-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.152.226" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "VN#1", + "hostname": "node-vn-01.protonvpn.net", + "wgpubkey": "NfKOMtk2fuDycbQXv36yk5mfdgDA8/8SN6amCdFrKxQ=", + "port_forward": true, + "ips": [ + "188.214.152.226" + ] + } + ] + }, + "purevpn": { + "version": 3, + "timestamp": 1702566944, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "al2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "31.171.155.198", + "31.171.155.199" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "al2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "31.171.155.198", + "31.171.155.199" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "91.242.215.105", + "118.127.59.226", + "223.252.60.100", + "223.252.60.202" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "ausd2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "27.50.76.167", + "91.242.215.105", + "91.242.215.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "ausd2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "27.50.76.169", + "91.242.215.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "au2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "118.127.59.226", + "118.127.62.3", + "172.94.124.11", + "223.252.60.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "aume2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "27.50.74.4", + "27.50.74.6", + "118.127.59.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "aume2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "27.50.74.4", + "118.127.59.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "nz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "203.209.219.39", + "203.209.219.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Western Australia", + "city": "Perth", + "hostname": "au2-pe-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "43.250.205.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Western Australia", + "city": "Perth", + "hostname": "au2-pe-udp.ptoserver.com", + "udp": true, + "ips": [ + "43.250.205.50", + "43.250.205.53", + "43.250.205.54", + "43.250.205.61", + "172.94.123.4" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Vienna", + "city": "Vienna", + "hostname": "at2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.40.52.198" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Vienna", + "city": "Vienna", + "hostname": "at2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.40.52.197", + "149.40.52.198" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Brussels Capital", + "city": "Brussels", + "hostname": "be2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "154.47.27.70" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Brussels Capital", + "city": "Brussels", + "hostname": "be2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "154.47.27.96" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Sofia-Capital", + "city": "Sofia", + "hostname": "bg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.94.192.134", + "185.94.192.135" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Sofia-Capital", + "city": "Sofia", + "hostname": "bg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.94.192.135", + "185.94.192.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.193.135.42", + "104.193.135.43", + "198.144.155.70" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.9", + "104.193.135.10", + "104.193.135.12", + "149.34.249.69", + "149.34.249.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "caq2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.10", + "104.193.135.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "cav2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.193.135.9", + "104.193.135.10", + "104.193.135.42", + "104.193.135.43" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "cav2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.11", + "104.193.135.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Ontario", + "city": "Toronto", + "hostname": "caq2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "198.144.155.69", + "198.144.155.70" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "San José", + "city": "San Pedro", + "hostname": "cr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "143.202.163.102", + "143.202.163.103" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "San José", + "city": "San Pedro", + "hostname": "cr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "143.202.163.103", + "172.111.170.6" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Nicosia", + "city": "Nicosia", + "hostname": "cy2-auto-tcp.ptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.191.206.199" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Prague", + "city": "Prague", + "hostname": "cz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "87.249.135.101", + "87.249.135.102" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Prague", + "city": "Prague", + "hostname": "cz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "87.249.135.102" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Capital Region", + "city": "Copenhagen", + "hostname": "dk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.50.217.132" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Harjumaa", + "city": "Tallinn", + "hostname": "ee2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.174.159.230", + "185.174.159.247" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Harjumaa", + "city": "Tallinn", + "hostname": "ee2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.174.159.246", + "185.174.159.247" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Uusimaa", + "city": "Helsinki", + "hostname": "fi2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "85.208.3.215" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Uusimaa", + "city": "Helsinki", + "hostname": "fi2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "85.208.3.197", + "85.208.3.198", + "85.208.3.215", + "85.208.3.216" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Île-de-France", + "city": "Paris", + "hostname": "fr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "37.19.217.86", + "149.34.245.196", + "149.34.245.197" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Île-de-France", + "city": "Paris", + "hostname": "fr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "37.19.217.86", + "149.34.245.197" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "T'bilisi", + "city": "Tbilisi", + "hostname": "ge2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.138.44.162", + "188.93.88.206" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "T'bilisi", + "city": "Tbilisi", + "hostname": "ge2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.138.44.162", + "188.93.88.206" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "af2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.208.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "af2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.208.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ao2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.84.4", + "172.94.84.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ao2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.84.4", + "172.94.84.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bb2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.228.4", + "172.111.228.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bb2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.228.4", + "172.111.228.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bd2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.46.140.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bd2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.46.140.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bh2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.226.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bh2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.226.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bm2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.229.4", + "172.111.229.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bm2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.229.4", + "172.111.229.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bs2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.20.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bs2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.20.4", + "172.94.20.6", + "172.94.20.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "de2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.23.71", + "149.88.19.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "de2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.34.252.48", + "149.88.19.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "dz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.243.6", + "172.111.243.19", + "172.111.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "dz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.243.19", + "172.111.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ru2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.185.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ru2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.185.6", + "172.111.185.21", + "172.111.185.22", + "172.111.185.37" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Attica", + "city": "Athens", + "hostname": "gr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "194.150.167.180", + "194.150.167.181" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Central and Western", + "city": "Hong Kong", + "hostname": "hk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.109.103.85" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Central and Western", + "city": "Hong Kong", + "hostname": "hk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.109.103.85", + "103.109.103.87" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "hu2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.120.70" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "hu2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.120.71" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Jakarta", + "city": "Jakarta", + "hostname": "id2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.60.9.132", + "103.60.9.134" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Jakarta", + "city": "Jakarta", + "hostname": "id2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.60.9.132", + "103.60.9.140", + "103.60.9.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.130.135", + "146.70.130.152" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.130.134", + "146.70.130.135", + "146.70.130.151" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Lombardy", + "city": "Milan", + "hostname": "it2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.50.215.71" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Lombardy", + "city": "Milan", + "hostname": "it2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.50.215.70" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Tokyo", + "city": "Tokyo", + "hostname": "jp2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.250.255.9", + "149.50.210.151" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Nairobi Area", + "city": "Nairobi", + "hostname": "ke2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "62.12.116.86", + "62.12.116.87" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Nairobi Area", + "city": "Nairobi", + "hostname": "ke2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "62.12.116.87" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "region": "Seoul", + "city": "Seoul", + "hostname": "kr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "108.181.50.166", + "108.181.50.182", + "108.181.50.183", + "108.181.52.151" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Riga", + "city": "Riga", + "hostname": "lv2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "213.21.209.36", + "213.21.209.37", + "213.21.215.165" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Riga", + "city": "Riga", + "hostname": "lv2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "213.21.209.37" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Siauliai", + "city": "Šiauliai", + "hostname": "lt2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.199.169.37", + "5.199.169.47", + "5.199.169.70", + "185.150.118.37" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Siauliai", + "city": "Šiauliai", + "hostname": "lt2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.199.169.5", + "5.199.169.47", + "5.199.169.70", + "5.199.169.71" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Querétaro", + "city": "Santiago de Querétaro", + "hostname": "mx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "69.67.148.131", + "69.67.148.154" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Querétaro", + "city": "Santiago de Querétaro", + "hostname": "mx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "69.67.148.132", + "69.67.148.155" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Chișinău Municipality", + "city": "Chisinau", + "hostname": "md2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "178.17.169.228", + "178.17.169.229", + "178.17.169.241" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Chișinău Municipality", + "city": "Chisinau", + "hostname": "md2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "178.17.169.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "eg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.74.55.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "eg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.74.55.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "is2-auto-tcp.ptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "192.253.250.132", + "192.253.250.133" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mc2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "206.123.130.4", + "206.123.130.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mc2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "206.123.130.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ng2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.128.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ng2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.128.228", + "172.111.128.229" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "nl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "37.46.122.74", + "185.2.30.215", + "195.181.172.163", + "195.181.172.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "nl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.73.203", + "37.46.122.71", + "37.46.122.72", + "149.34.244.230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "om2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "om2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pa2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.87.6", + "172.94.87.67", + "172.94.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pa2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.87.4", + "172.94.87.6", + "172.94.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.250.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.250.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ua2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "188.72.101.8", + "188.72.101.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ua2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "188.72.101.8", + "188.72.101.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.243.253.4", + "104.243.253.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.243.253.4", + "104.243.253.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vn2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.197.6", + "172.111.197.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vn2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.197.6", + "172.111.197.68" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Auckland", + "city": "Auckland", + "hostname": "nz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "203.209.219.5", + "203.209.219.40" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Oslo", + "city": "Oslo", + "hostname": "no2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.170.38" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Oslo", + "city": "Oslo", + "hostname": "no2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.170.39", + "146.70.170.40" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Mazovia", + "city": "Warsaw", + "hostname": "pl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.244.37", + "149.102.244.38" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "lu2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.153.151.4", + "185.153.151.6" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "lu2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.153.151.6" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "pt2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.88.20.134", + "149.88.20.135" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "București", + "city": "Bucharest", + "hostname": "ro2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.239.70", + "149.102.239.71" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "București", + "city": "Bucharest", + "hostname": "ro2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.239.70", + "149.102.239.71" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Central Serbia", + "city": "Belgrade", + "hostname": "rs2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.111.134", + "146.70.111.135" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Central Serbia", + "city": "Belgrade", + "hostname": "rs2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.111.134", + "146.70.111.135" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "bn2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.74.10.7", + "45.74.10.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "in2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.60.100", + "149.34.253.68", + "149.34.253.70" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "in2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.60.99", + "138.199.60.100" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "ph2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.175.6", + "172.111.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "ph2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.50.211.55", + "149.50.211.68", + "149.50.211.69" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.67.198", + "146.70.67.199" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "sk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.34.197", + "138.199.34.198" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "sk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.34.197" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Gauteng", + "city": "Johannesburg", + "hostname": "za2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "154.47.30.166", + "154.47.30.167" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Madrid", + "city": "Madrid", + "hostname": "es2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.213.7" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Stockholm", + "hostname": "se2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "169.150.208.164" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Stockholm", + "hostname": "se2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "169.150.208.135", + "169.150.208.137" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Zurich", + "city": "Zürich", + "hostname": "ch2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.238.133", + "149.102.238.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Zurich", + "city": "Zürich", + "hostname": "ch2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.238.133", + "149.102.238.134", + "149.102.238.135" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.59.108.214", + "103.59.109.55", + "103.59.109.56" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.59.108.214", + "103.59.109.21", + "103.59.109.56" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Istanbul", + "city": "Istanbul", + "hostname": "tr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.136.155.5", + "45.136.155.6" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Istanbul", + "city": "Istanbul", + "hostname": "tr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.136.155.5", + "45.136.155.6", + "45.136.155.7", + "45.136.155.10", + "45.136.155.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Dubai", + "city": "Dubai", + "hostname": "ae2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.155.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Dubai", + "city": "Dubai", + "hostname": "ae2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.155.7", + "146.70.155.10", + "146.70.155.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "uk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.112.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "ukl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.106.5", + "5.254.112.69", + "5.254.112.103", + "138.199.31.4", + "138.199.31.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "ukl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.106.6", + "5.254.112.103", + "138.199.31.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "uk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "ukm2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "ukm2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usca2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.218.71", + "146.70.218.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usca2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.35.38", + "138.199.35.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usphx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "217.148.140.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usphx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "217.148.140.134", + "217.148.140.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "San Jose", + "hostname": "ussf2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "93.115.200.86", + "93.115.200.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "San Jose", + "hostname": "ussf2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "93.115.200.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Florida", + "city": "Miami", + "hostname": "usfl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.142.68", + "146.70.228.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Florida", + "city": "Miami", + "hostname": "usfl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.142.69", + "146.70.228.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us-global-tcp2.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us-global-udp2.ptoserver.com", + "udp": true, + "ips": [ + "45.134.140.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "usga2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "usga2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Illinois", + "city": "Chicago", + "hostname": "usil2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "87.249.134.174", + "149.88.25.196", + "149.88.25.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Illinois", + "city": "Chicago", + "hostname": "usil2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "87.249.134.175", + "149.88.25.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usnj2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.212.71", + "146.70.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usnj2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.212.71", + "146.70.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usny2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.215.22", + "149.40.49.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Weehawken", + "hostname": "usny2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "143.244.44.133", + "149.40.49.133", + "149.40.49.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "ar2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.152.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "ar2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.152.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "aw2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "aw2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "bo2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.241.133", + "172.111.241.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "bo2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.241.4", + "172.111.241.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Texas", + "city": "Houston", + "hostname": "ustx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.40.58.197", + "149.40.58.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Texas", + "city": "Houston", + "hostname": "ustx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.40.58.197", + "149.40.58.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Utah", + "city": "Riverton", + "hostname": "usut2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "67.213.219.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Utah", + "city": "Riverton", + "hostname": "usut2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "67.213.219.186", + "67.213.219.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "usva2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.108.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "usva2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.108.197", + "5.254.108.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Herndon", + "hostname": "uswdc2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.43.229", + "5.254.43.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Herndon", + "hostname": "uswdc2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.40.39", + "5.254.43.230", + "5.254.43.231", + "5.254.43.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Washington", + "city": "Seattle", + "hostname": "ussa2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.43.6", + "138.199.43.23", + "138.199.43.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Washington", + "city": "Seattle", + "hostname": "ussa2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.43.6", + "138.199.43.7", + "138.199.43.23" + ] + } + ] + }, + "slickvpn": { + "version": 1, + "timestamp": 1679747412, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Brisbane", + "hostname": "gw1.bne1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "43.245.160.142" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Melbourne", + "hostname": "gw2.mel1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "113.52.144.50" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Perth", + "hostname": "gw3.per1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.231.89.206" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw1.syd1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "163.47.126.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw1.syd2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.173.66" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw2.syd2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.168.12" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Graz", + "hostname": "gw1.grz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.255.212.60" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Ostend", + "hostname": "gw1.ost2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.249.22" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Ostend", + "hostname": "gw2.ost2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.249.81" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "South America", + "city": "Sao Paulo", + "hostname": "gw1.gru2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.158.153" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw1.yul1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "205.204.85.246" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw1.yul2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "173.209.62.178" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw2.yul2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "67.215.7.10" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Toronto", + "hostname": "gw1.yyz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.14.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Toronto", + "hostname": "gw2.yyz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.9.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Vancouver", + "hostname": "gw1.yvr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.111.132.46" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "South America", + "city": "Vina del Mar", + "hostname": "gw1.kna1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.52.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw1.prg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.36.36.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw1.prg2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.235.207.24" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw2.prg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.36.36.98" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "gw1.cph1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.90.116.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Lille", + "hostname": "gw1.lil1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.135.81.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "gw1.cdg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.67.168.241" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw1.fra1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.159.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw1.fra2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.123.80.62" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw2.fra1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.175.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Nürnberg", + "hostname": "gw1.nue1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.7.187.233" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gw1.ath1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.226.65.178" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Thessaloniki", + "hostname": "gw1.skg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.166.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia", + "city": "Hong Kong", + "hostname": "gw1.hkg2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.255.208.240" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "gw1.bud1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.219.239.203" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "gw1.rkv1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.49.172" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia", + "city": "Bangalore", + "hostname": "gw1.blr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.59.42.121" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia", + "city": "Mumbai", + "hostname": "gw1.bom1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.63.74" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia", + "city": "Jakarta", + "hostname": "gw1.cgk1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "119.235.252.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "gw1.dub1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.51.242.25" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Asia", + "city": "Tel Aviv Yafo", + "hostname": "gw1.tlv2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.182.144.37" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw1.mxp1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.247.49.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw1.mxp2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.154.157.221" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw2.mxp2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.154.157.112" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "hostname": "gw1.nrt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.235.210" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia", + "city": "Kuala Lumpur", + "hostname": "gw1.kul1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "117.53.155.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.4.102.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.80.222.63" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "151.236.14.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.34.136.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw2.ams3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "151.236.14.57" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Torp", + "hostname": "gw1.trf1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.125.169.11" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "North America", + "city": "Panama City", + "hostname": "gw2.pty1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.174.164.64" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "gw1.waw1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.7.220.28" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "gw1.buh2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.100.116" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "Moscow", + "hostname": "gw1.svo1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.38.62.29" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "Moscow", + "hostname": "gw1.svo2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.56.34" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "St Petersburg", + "hostname": "gw1.led1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.54.28" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "gw1.beg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.71.126.18" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw1.sin1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.195.193.181" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw1.sin2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.23.150" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw2.sin2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.55.80" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "gw1.lju1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.244.13" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "gw2.bcn2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.134.119.168" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "gw1.mad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.53.46" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Halmstad", + "hostname": "gw1.had2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.74.11.69" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "gw1.arn1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.73.210.224" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "gw1.arn3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "159.253.26.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "gw1.zrh1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.209.51.203" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia", + "city": "Bangkok", + "hostname": "gw1.bkk1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "124.109.1.191" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kiev", + "hostname": "gw1.iev1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.107.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Coventry", + "hostname": "gw1.cvt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.195.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Eastleigh near Southampton", + "hostname": "gw1.sou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.143.255.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Eastleigh near Southampton", + "hostname": "gw3.sou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.143.255.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Isle Of Man", + "hostname": "gw1.iom1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw1.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.123.122.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw1.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.58.120.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw2.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.79.164.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw3.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.123.117.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw3.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.220.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw4.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.185.17.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "gw1.man2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.109.246.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Rochester", + "hostname": "gw1.rcs1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.227.223.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw1.atl1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "216.119.148.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw1.atl3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.239.17.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw2.atl3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.79.221.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Boston", + "hostname": "gw1.bos1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.34.83.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Buffalo", + "hostname": "gw1.buf1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.94.191.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Charlotte", + "hostname": "gw2.clt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.255.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw1.ord3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.187.232.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw1.ord4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.217.136.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw2.ord1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "174.127.124.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Columbus", + "hostname": "gw1.cmh1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.182.134.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw1.dfw2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "174.127.75.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw1.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.126.113.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw2.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "198.58.117.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw3.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.237.128.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Denver", + "hostname": "gw1.den1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.237.26.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dubuque", + "hostname": "gw1.dbq1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.102.44.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Houston", + "hostname": "gw2.hou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "162.218.229.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Kansas City", + "hostname": "gw1.mci2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.187.101.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Las Vegas", + "hostname": "gw1.las1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.143.10.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw1.lax1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.245.220.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw1.lax2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.247.220.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw3.lax3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.160.101.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Miami", + "hostname": "gw2.mia3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.171.19.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Miami", + "hostname": "gw2.mia4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.127.62.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Morganton", + "hostname": "gw1.mrn1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.241.190.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "New York", + "hostname": "gw1.lga1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.217.128.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "New York", + "hostname": "gw1.lga2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.221.178.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw1.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.33.81.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw2.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "162.216.19.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw3.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "50.116.54.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw1.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.81.128.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw2.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.79.88.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw3.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "173.255.243.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Phoenix", + "hostname": "gw1.phx2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "198.15.66.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Salt Lake City", + "hostname": "gw2.slc1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "209.95.48.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "San Diego", + "hostname": "gw1.san1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.161.151.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "San Jose", + "hostname": "gw1.sjc2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.195.192.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Seattle", + "hostname": "gw1.sea1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.181.191.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Seattle", + "hostname": "gw1.sea2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "167.88.112.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "St Louis", + "hostname": "gw1.stl1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "209.135.132.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Tampa", + "hostname": "gw1.tpa1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.156.54.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw1.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw2.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw3.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.242" + ] + } + ] + }, + "surfshark": { + "version": 4, + "timestamp": 1714383413, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "hostname": "al-tia.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Albania", + "ips": [ + "31.171.153.19", + "31.171.153.117", + "31.171.153.131", + "31.171.153.133", + "31.171.153.163", + "31.171.153.165", + "31.171.154.101", + "31.171.155.21", + "31.171.155.35", + "31.171.155.37", + "31.171.155.51", + "31.171.155.69", + "31.171.155.99", + "31.171.155.141" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "hostname": "al-tia.prod.surfshark.com", + "retroloc": "Albania", + "wgpubkey": "l8EOWPyzt/njrb74CADY4VOhns/TbUN6KFTbytHcFQw=", + "ips": [ + "31.171.153.19", + "31.171.153.117", + "31.171.153.131", + "31.171.153.133", + "31.171.153.163", + "31.171.153.165", + "31.171.154.101", + "31.171.155.21", + "31.171.155.35", + "31.171.155.37", + "31.171.155.51", + "31.171.155.69", + "31.171.155.99", + "31.171.155.141" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Middle East and Africa", + "city": "Algiers", + "hostname": "dz-alg.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.144.18", + "62.197.144.20", + "62.197.144.34", + "62.197.144.36" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Middle East and Africa", + "city": "Algiers", + "hostname": "dz-alg.prod.surfshark.com", + "wgpubkey": "KyFFiO8bY3wZGpxJf7aqEH3TrG+Jj4ZfNOyh2oS7ICU=", + "ips": [ + "62.197.144.18", + "62.197.144.20", + "62.197.144.34", + "62.197.144.36" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "hostname": "ad-leu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.152.67", + "62.197.152.69", + "62.197.152.83", + "62.197.152.85", + "62.197.152.99", + "62.197.152.101" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "hostname": "ad-leu.prod.surfshark.com", + "wgpubkey": "alv2SqjLM8Aw5yz/7pGZydfALPfYzgwDquAe5dWX12s=", + "ips": [ + "62.197.152.67", + "62.197.152.69", + "62.197.152.83", + "62.197.152.85", + "62.197.152.99", + "62.197.152.101" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "hostname": "ar-bua.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Argentina Buenos Aires", + "ips": [ + "91.206.168.86", + "91.206.168.116", + "91.206.168.162", + "91.206.168.164", + "91.206.168.178", + "91.206.168.196", + "91.206.168.212", + "91.206.168.228" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "hostname": "ar-bua.prod.surfshark.com", + "retroloc": "Argentina Buenos Aires", + "wgpubkey": "JeHzAD4ZNXnFw4TdG37pi8bHPy6CQQqeRXK09pMHVyU=", + "ips": [ + "91.206.168.86", + "91.206.168.116", + "91.206.168.162", + "91.206.168.164", + "91.206.168.178", + "91.206.168.196", + "91.206.168.212", + "91.206.168.228" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "hostname": "am-evn.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.120.83", + "92.62.120.85", + "92.62.120.99", + "92.62.120.101", + "92.62.120.115", + "92.62.120.117", + "92.62.120.131", + "92.62.120.133" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "hostname": "am-evn.prod.surfshark.com", + "wgpubkey": "B+aSYrw7JSq7b60uK0nrMQGCiJ48QwiUp/aoRpYX2lU=", + "ips": [ + "92.62.120.83", + "92.62.120.85", + "92.62.120.99", + "92.62.120.101", + "92.62.120.115", + "92.62.120.117", + "92.62.120.131", + "92.62.120.133" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "hostname": "au-adl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Adelaide", + "ips": [ + "103.214.20.181", + "103.214.20.187", + "103.214.20.195", + "103.214.20.197", + "103.214.20.205" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "hostname": "au-adl.prod.surfshark.com", + "retroloc": "Australia Adelaide", + "wgpubkey": "J7N3UrHc71+LJkn8gsI9Ja8YcpTXT8fV789LLKnIXAY=", + "ips": [ + "103.214.20.181", + "103.214.20.187", + "103.214.20.195", + "103.214.20.197", + "103.214.20.205" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "hostname": "au-bne.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Brisbane", + "ips": [ + "144.48.39.11", + "144.48.39.13", + "144.48.39.83", + "144.48.39.85", + "144.48.39.107", + "144.48.39.109", + "144.48.39.123", + "144.48.39.125", + "144.48.39.131", + "144.48.39.133" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "hostname": "au-bne.prod.surfshark.com", + "retroloc": "Australia Brisbane", + "wgpubkey": "Jo+U6dj+eAf8zdtoMqyYPmrJNVQj82mipH0mEDyfUXo=", + "ips": [ + "144.48.39.11", + "144.48.39.13", + "144.48.39.83", + "144.48.39.85", + "144.48.39.107", + "144.48.39.109", + "144.48.39.123", + "144.48.39.125", + "144.48.39.131", + "144.48.39.133" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "hostname": "au-mel.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Melbourne", + "ips": [ + "103.192.80.133", + "103.192.80.149", + "103.192.80.221", + "103.192.80.243", + "103.192.80.251", + "144.48.38.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "hostname": "au-mel.prod.surfshark.com", + "retroloc": "Australia Melbourne", + "wgpubkey": "yYX9yLjHOSWVAsaujcIVWAxF9wYMmHupG1RtJk+u21o=", + "ips": [ + "103.192.80.133", + "103.192.80.149", + "103.192.80.221", + "103.192.80.243", + "103.192.80.251", + "144.48.38.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "hostname": "au-per.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Perth", + "ips": [ + "124.150.139.35", + "124.150.139.37", + "124.150.139.45", + "124.150.139.61" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "hostname": "au-per.prod.surfshark.com", + "retroloc": "Australia Perth", + "wgpubkey": "oD0TqnE/ETIpvMO8DZObjdLVRf3jhzG7qV5GtM8/Yik=", + "ips": [ + "124.150.139.35", + "124.150.139.37", + "124.150.139.45", + "124.150.139.61" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "hostname": "au-syd.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Sydney", + "ips": [ + "45.248.76.221", + "45.248.76.227", + "45.248.76.229", + "149.88.101.12", + "149.88.101.17", + "149.88.101.22" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "hostname": "au-syd.prod.surfshark.com", + "retroloc": "Australia Sydney", + "wgpubkey": "Y5KM9kHdM0upMsIJWUQquOY1RgkWX69AHw/Dl5KyIk4=", + "ips": [ + "45.248.76.221", + "45.248.76.227", + "45.248.76.229", + "149.88.101.12", + "149.88.101.17", + "149.88.101.22" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "hostname": "at-vie.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Austria", + "ips": [ + "37.19.195.66", + "37.19.195.72", + "37.19.195.74", + "37.19.195.79", + "37.19.195.81", + "87.249.133.7", + "87.249.133.9", + "87.249.133.22", + "87.249.133.73", + "87.249.133.78", + "89.187.168.46", + "89.187.168.56", + "89.187.168.237", + "89.187.168.239" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "hostname": "at-vie.prod.surfshark.com", + "retroloc": "Austria", + "wgpubkey": "dPZe8Jq3Hu0k07MDk+Y4+AS2XHSLYalyg91TSFXRYEA=", + "ips": [ + "37.19.195.66", + "37.19.195.72", + "37.19.195.74", + "37.19.195.79", + "37.19.195.81", + "87.249.133.7", + "87.249.133.9", + "87.249.133.22", + "87.249.133.73", + "87.249.133.78", + "89.187.168.46", + "89.187.168.56", + "89.187.168.237", + "89.187.168.239" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Asia Pacific", + "city": "Baku", + "hostname": "az-bak.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Azerbaijan", + "ips": [ + "45.39.203.18", + "45.39.203.20", + "45.39.203.34", + "45.39.203.36" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Asia Pacific", + "city": "Baku", + "hostname": "az-bak.prod.surfshark.com", + "retroloc": "Azerbaijan", + "wgpubkey": "pvWYTFxIpqo25NGTertIIWnccS/sUQ6fIkqd8XJYzEI=", + "ips": [ + "45.39.203.18", + "45.39.203.20", + "45.39.203.34", + "45.39.203.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Bahamas", + "hostname": "bs-nas.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.145.18", + "62.197.145.20", + "62.197.145.34", + "62.197.145.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Bahamas", + "hostname": "bs-nas.prod.surfshark.com", + "wgpubkey": "uM3cUZiQ46nRLALqOQfBz2cqg+RyR/OIHH0Xvwf9wHY=", + "ips": [ + "62.197.145.18", + "62.197.145.20", + "62.197.145.34", + "62.197.145.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "hostname": "bd-dac.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.153.18", + "62.197.153.20", + "62.197.153.34", + "62.197.153.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "hostname": "bd-dac.prod.surfshark.com", + "wgpubkey": "6tOduT4iNbZyqKNzsSgDe/ckziO6101NPZwrnY5WpTk=", + "ips": [ + "62.197.153.18", + "62.197.153.20", + "62.197.153.34", + "62.197.153.36" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Antwerp", + "hostname": "be-anr.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "103.109.244.92", + "103.109.244.96", + "103.109.244.98", + "103.109.244.102", + "103.109.244.104", + "103.109.244.106", + "103.109.244.108", + "103.109.244.112", + "103.109.244.116", + "188.95.54.38", + "188.95.54.48", + "188.95.54.50", + "188.95.54.53", + "188.95.55.125" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Antwerp", + "hostname": "be-anr.prod.surfshark.com", + "wgpubkey": "cTDaqf4qOaNGUbzt/qMRUCcOzL9wknQtG00po/bBt3Y=", + "ips": [ + "103.109.244.92", + "103.109.244.96", + "103.109.244.98", + "103.109.244.102", + "103.109.244.104", + "103.109.244.106", + "103.109.244.108", + "103.109.244.112", + "103.109.244.116", + "188.95.54.38", + "188.95.54.48", + "188.95.54.50", + "188.95.54.53", + "188.95.55.125" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "hostname": "be-bru.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Belgium", + "ips": [ + "146.70.55.197", + "146.70.55.213", + "146.70.123.43", + "146.70.123.51", + "146.70.123.53", + "146.70.123.195", + "146.70.123.213", + "194.110.115.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "hostname": "be-bru.prod.surfshark.com", + "retroloc": "Belgium", + "wgpubkey": "9wZOjtwuKEc0GBcvc3xJQ4Kjo8G3EMXu6zJRzbanOjc=", + "ips": [ + "146.70.55.197", + "146.70.55.213", + "146.70.123.43", + "146.70.123.51", + "146.70.123.53", + "146.70.123.195", + "146.70.123.213", + "194.110.115.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "hostname": "bz-blp.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "212.119.33.34", + "212.119.33.36" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "hostname": "bz-blp.prod.surfshark.com", + "wgpubkey": "zcxA9gW+ism40rUoF5B4UPV655FLymJ1n4t0WogtZkU=", + "ips": [ + "212.119.33.34", + "212.119.33.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "hostname": "bt-pbh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.157.18", + "62.197.157.20", + "62.197.157.34", + "62.197.157.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "hostname": "bt-pbh.prod.surfshark.com", + "wgpubkey": "R/lGzro0Z8nbQWDVRJbfscimcUvbSrc/raIvXwfDoV4=", + "ips": [ + "62.197.157.18", + "62.197.157.20", + "62.197.157.34", + "62.197.157.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "Sucre", + "hostname": "bo-sre.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.171.18", + "194.169.171.20", + "194.169.171.34", + "194.169.171.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "Sucre", + "hostname": "bo-sre.prod.surfshark.com", + "wgpubkey": "YTVk+CUVWELH18qftzEURb8JJfLHfmIMewcx0p8hkT0=", + "ips": [ + "194.169.171.18", + "194.169.171.20", + "194.169.171.34", + "194.169.171.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "hostname": "ba-sjj.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Bosnia and Herzegovina", + "ips": [ + "172.252.89.8", + "172.252.89.10", + "172.252.89.13", + "172.252.89.15", + "172.252.89.20", + "172.252.89.25", + "172.252.89.35", + "172.252.89.38" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "hostname": "ba-sjj.prod.surfshark.com", + "retroloc": "Bosnia and Herzegovina", + "wgpubkey": "hsm/ps/uxcsVNzT3OmV/l7ZWv+TRIS+IM+N6/nTymkw=", + "ips": [ + "172.252.89.8", + "172.252.89.10", + "172.252.89.13", + "172.252.89.15", + "172.252.89.20", + "172.252.89.25", + "172.252.89.35", + "172.252.89.38" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "hostname": "br-sao.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Brazil", + "ips": [ + "138.199.58.33", + "138.199.58.35", + "138.199.58.37", + "138.199.58.106", + "146.70.163.195", + "146.70.163.197", + "146.70.163.203", + "193.19.205.93" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "hostname": "br-sao.prod.surfshark.com", + "retroloc": "Brazil", + "wgpubkey": "IFTVXxhLEqVgZI/JGOPRtmrNUQW1DNljeBe8Ys7v90A=", + "ips": [ + "138.199.58.33", + "138.199.58.35", + "138.199.58.37", + "138.199.58.106", + "146.70.163.195", + "146.70.163.197", + "146.70.163.203", + "193.19.205.93" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "region": "Asia Pacific", + "city": "Begawan", + "hostname": "bn-bwn.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.158.34", + "62.197.158.36" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei", + "region": "Asia Pacific", + "city": "Begawan", + "hostname": "bn-bwn.prod.surfshark.com", + "wgpubkey": "QE7hpHqVYWqohTmOnmYtKjUv4b6Bb8S2b9AF0EFl638=", + "ips": [ + "62.197.158.34", + "62.197.158.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "hostname": "bg-sof.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Bulgaria", + "ips": [ + "37.19.203.78", + "146.70.53.211", + "146.70.53.213", + "146.70.53.219", + "156.146.55.194", + "156.146.55.196" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "hostname": "bg-sof.prod.surfshark.com", + "retroloc": "Bulgaria", + "wgpubkey": "LQFiCiZcPEoYasKRLbCfXp2fYYsj8wiMr/L9u6hYqSo=", + "ips": [ + "37.19.203.78", + "146.70.53.211", + "146.70.53.213", + "146.70.53.219", + "156.146.55.194", + "156.146.55.196" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "hostname": "kh-pnh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.146.18", + "62.197.146.20", + "62.197.146.34", + "62.197.146.36" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "hostname": "kh-pnh.prod.surfshark.com", + "wgpubkey": "z2Ik8BG6XgosyYE/O4Vz4kiPTZyoWSlJvZtFeFlNclI=", + "ips": [ + "62.197.146.18", + "62.197.146.20", + "62.197.146.34", + "62.197.146.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "hostname": "ca-mon.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Montreal", + "ips": [ + "37.120.205.181", + "146.70.112.67", + "146.70.112.75", + "146.70.112.83", + "146.70.112.107", + "146.70.112.109", + "146.70.112.139", + "146.70.112.155", + "146.70.112.171", + "217.138.213.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "hostname": "ca-mon.prod.surfshark.com", + "retroloc": "Canada Montreal", + "wgpubkey": "pB//7qgQ/TQyIMQWKO9GvUfJNYCfVZYwjF2nXPGIEX8=", + "ips": [ + "37.120.205.181", + "146.70.112.67", + "146.70.112.75", + "146.70.112.83", + "146.70.112.107", + "146.70.112.109", + "146.70.112.139", + "146.70.112.155", + "146.70.112.171", + "217.138.213.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Toronto mp001", + "ips": [ + "138.197.151.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Toronto", + "ips": [ + "37.19.211.52", + "138.199.57.36" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor.prod.surfshark.com", + "retroloc": "Canada Toronto", + "wgpubkey": "W9bzkcL3fiV64vDpB4pbrz8QafNn3y5P9Yc/kQvy4TA=", + "ips": [ + "37.19.211.52", + "138.199.57.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "hostname": "ca-van.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Vancouver", + "ips": [ + "66.115.147.67", + "66.115.147.69", + "66.115.147.74", + "66.115.147.77", + "104.200.132.37", + "107.181.177.179", + "198.8.92.72", + "198.8.92.84", + "198.8.92.87", + "208.78.41.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "hostname": "ca-van.prod.surfshark.com", + "retroloc": "Canada Vancouver", + "wgpubkey": "o4HezxSsbNqJFJZj+VBw/QXFLpfNo7PZu8xe7H2hTw0=", + "ips": [ + "66.115.147.67", + "66.115.147.69", + "66.115.147.74", + "66.115.147.77", + "104.200.132.37", + "107.181.177.179", + "198.8.92.72", + "198.8.92.84", + "198.8.92.87", + "208.78.41.107" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "hostname": "cl-san.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Chile", + "ips": [ + "149.88.104.34", + "149.88.104.36", + "149.88.104.39", + "149.88.104.41" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "hostname": "cl-san.prod.surfshark.com", + "retroloc": "Chile", + "wgpubkey": "FdTRnh0g+FYFPj5UURQIcDbygd+2gMRrslErfmZxdDo=", + "ips": [ + "149.88.104.34", + "149.88.104.36", + "149.88.104.39", + "149.88.104.41" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "hostname": "co-bog.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Colombia", + "ips": [ + "149.88.111.71", + "149.88.111.76", + "149.88.111.78", + "149.88.111.98" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "hostname": "co-bog.prod.surfshark.com", + "retroloc": "Colombia", + "wgpubkey": "lLqqxZuCTtIpBjgZJYWzPQn/7st24iVpJN+/xS7jogs=", + "ips": [ + "149.88.111.71", + "149.88.111.76", + "149.88.111.78", + "149.88.111.98" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "hostname": "cr-sjn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Costa Rica", + "ips": [ + "176.227.241.50", + "176.227.241.52", + "176.227.241.68", + "176.227.241.84" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "hostname": "cr-sjn.prod.surfshark.com", + "retroloc": "Costa Rica", + "wgpubkey": "HPggZ80tXf9TpiZzy8xih7PIWjexg4Kyg3lzUGXoDHU=", + "ips": [ + "176.227.241.50", + "176.227.241.52", + "176.227.241.68", + "176.227.241.84" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "hostname": "hr-zag.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Croatia", + "ips": [ + "149.102.247.133", + "149.102.247.135", + "149.102.247.137", + "149.102.247.139", + "149.102.247.141", + "149.102.247.143" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "hostname": "hr-zag.prod.surfshark.com", + "retroloc": "Croatia", + "wgpubkey": "nIQmC5T4H0HX4yA2u/Z5rrbLQDAOLA+kFCdt8S94xXg=", + "ips": [ + "149.102.247.133", + "149.102.247.135", + "149.102.247.137", + "149.102.247.139", + "149.102.247.141", + "149.102.247.143" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "hostname": "cy-nic.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Cyprus", + "ips": [ + "193.19.204.74", + "193.19.204.76", + "193.19.204.78", + "193.19.204.80", + "193.19.204.86", + "193.19.204.88" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "hostname": "cy-nic.prod.surfshark.com", + "retroloc": "Cyprus", + "wgpubkey": "kEAQgNChxGgrzoKPpCPFJKh0L1/5rXIq08KSY4g26zY=", + "ips": [ + "193.19.204.74", + "193.19.204.76", + "193.19.204.78", + "193.19.204.80", + "193.19.204.86", + "193.19.204.88" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "cz-prg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Czech Republic", + "ips": [ + "185.152.64.178", + "185.180.14.151", + "185.242.6.67", + "185.242.6.91", + "185.242.6.123", + "185.242.6.125" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "cz-prg.prod.surfshark.com", + "retroloc": "Czech Republic", + "wgpubkey": "c1bfP+OBTj6WUe8NDH8d6nDTwpQicopfdkHFx3BIaSk=", + "ips": [ + "185.152.64.178", + "185.180.14.151", + "185.242.6.67", + "185.242.6.91", + "185.242.6.123", + "185.242.6.125" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "dk-cph.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Denmark", + "ips": [ + "89.45.7.21", + "146.70.42.147", + "146.70.42.155", + "146.70.92.5", + "146.70.92.11", + "146.70.92.37", + "146.70.92.43", + "146.70.92.61" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "dk-cph.prod.surfshark.com", + "retroloc": "Denmark", + "wgpubkey": "peDjRPEdHHmo0hGootZ9f+MQCEXmziFkLhMTl2PeXRM=", + "ips": [ + "89.45.7.21", + "146.70.42.147", + "146.70.42.155", + "146.70.92.5", + "146.70.92.11", + "146.70.92.37", + "146.70.92.43", + "146.70.92.61" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "hostname": "ec-uio.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.122.18", + "92.62.122.20", + "92.62.122.34", + "92.62.122.36" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "hostname": "ec-uio.prod.surfshark.com", + "wgpubkey": "LErFIOc3YBK1khnmwV+a6fBbYff2OS3h+wnIuOKZQTY=", + "ips": [ + "92.62.122.18", + "92.62.122.20", + "92.62.122.34", + "92.62.122.36" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Middle East and Africa", + "city": "Cairo", + "hostname": "eg-cai.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.147.51", + "62.197.147.53", + "62.197.147.67", + "62.197.147.69" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Middle East and Africa", + "city": "Cairo", + "hostname": "eg-cai.prod.surfshark.com", + "wgpubkey": "EKaIyCUV8aqCtRkV6jfkU1IicE5ZaU2RC4VKAdgjOyA=", + "ips": [ + "62.197.147.51", + "62.197.147.53", + "62.197.147.67", + "62.197.147.69" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "hostname": "ee-tll.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Estonia", + "ips": [ + "185.174.159.107", + "185.174.159.115", + "185.174.159.117", + "185.174.159.119", + "185.174.159.121", + "185.174.159.196" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "hostname": "ee-tll.prod.surfshark.com", + "retroloc": "Estonia", + "wgpubkey": "CsdrT+WfcMRPhrOWgZeHj9DQiQtJfYFci94K5ztjr2E=", + "ips": [ + "185.174.159.107", + "185.174.159.115", + "185.174.159.117", + "185.174.159.119", + "185.174.159.121", + "185.174.159.196" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "hostname": "fi-hel.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Finland", + "ips": [ + "193.56.113.6", + "193.56.113.8", + "193.56.113.16", + "193.56.113.18", + "193.56.113.33", + "193.56.113.38", + "193.56.113.41", + "193.56.113.46", + "193.56.113.48", + "193.56.113.56", + "193.56.113.58", + "193.56.113.61" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "hostname": "fi-hel.prod.surfshark.com", + "retroloc": "Finland", + "wgpubkey": "+nv/Z8I2VS0eRdZwkpQW3U9RmsboTz2MUF94jVg5w10=", + "ips": [ + "193.56.113.6", + "193.56.113.8", + "193.56.113.16", + "193.56.113.18", + "193.56.113.33", + "193.56.113.38", + "193.56.113.41", + "193.56.113.46", + "193.56.113.48", + "193.56.113.56", + "193.56.113.58", + "193.56.113.61" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Bordeaux", + "hostname": "fr-bod.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Bordeaux", + "ips": [ + "45.134.79.131", + "45.134.79.133", + "45.134.79.136", + "45.134.79.138", + "45.134.79.141", + "45.134.79.146", + "45.134.79.148", + "45.134.79.153", + "45.134.79.161", + "45.134.79.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Bordeaux", + "hostname": "fr-bod.prod.surfshark.com", + "retroloc": "France Bordeaux", + "wgpubkey": "ArE5eVIEOPellzFlGK/oOcHCGnB+AAv0Un4C100COmw=", + "ips": [ + "45.134.79.131", + "45.134.79.133", + "45.134.79.136", + "45.134.79.138", + "45.134.79.141", + "45.134.79.146", + "45.134.79.148", + "45.134.79.153", + "45.134.79.161", + "45.134.79.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "hostname": "fr-mrs.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Marseilles", + "ips": [ + "138.199.16.140", + "138.199.16.150", + "138.199.16.152", + "185.166.84.135", + "185.166.84.137", + "185.166.84.141", + "185.166.84.147", + "185.166.84.149" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "hostname": "fr-mrs.prod.surfshark.com", + "retroloc": "France Marseilles", + "wgpubkey": "QYa3ZFLwWAHKiJzOcbM73K7KBE0tdJYuirbGb+uH0H0=", + "ips": [ + "138.199.16.140", + "138.199.16.150", + "138.199.16.152", + "185.166.84.135", + "185.166.84.137", + "185.166.84.141", + "185.166.84.147", + "185.166.84.149" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "fr-par.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Paris", + "ips": [ + "82.102.18.243", + "82.102.18.245", + "84.17.43.195", + "84.17.43.208", + "85.204.70.95", + "85.204.70.101", + "143.244.57.81", + "143.244.57.83", + "143.244.57.89", + "143.244.57.119", + "146.70.194.221", + "146.70.194.229", + "146.70.194.235", + "146.70.194.251", + "194.110.113.227", + "194.110.113.229" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "fr-par.prod.surfshark.com", + "retroloc": "France Paris", + "wgpubkey": "AsvLuvKKADdc67aA/vHA3vb61S6YnGGx2Pd4aP4wal8=", + "ips": [ + "82.102.18.243", + "82.102.18.245", + "84.17.43.195", + "84.17.43.208", + "85.204.70.95", + "85.204.70.101", + "143.244.57.81", + "143.244.57.83", + "143.244.57.89", + "143.244.57.119", + "146.70.194.221", + "146.70.194.229", + "146.70.194.235", + "146.70.194.251", + "194.110.113.227", + "194.110.113.229" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "hostname": "ge-tbs.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "83.97.115.18", + "83.97.115.20", + "83.97.115.34", + "83.97.115.36" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "hostname": "ge-tbs.prod.surfshark.com", + "wgpubkey": "L79E4IoaVZBXOyoMM82TvUIbiKlloRbUnT8R2Cl3PVM=", + "ips": [ + "83.97.115.18", + "83.97.115.20", + "83.97.115.34", + "83.97.115.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "hostname": "de-ber.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Berlin", + "ips": [ + "37.120.217.131", + "37.120.217.179", + "37.120.217.181", + "89.36.76.53", + "89.36.76.59", + "89.36.76.61", + "89.36.76.101", + "89.36.76.117", + "89.36.76.123", + "89.36.76.125", + "152.89.163.21", + "152.89.163.243", + "193.176.86.93", + "193.176.86.131", + "193.176.86.173", + "193.176.86.197", + "217.138.216.59", + "217.138.216.229", + "217.138.216.243", + "217.138.216.245", + "217.138.216.251", + "217.138.216.253" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "hostname": "de-ber.prod.surfshark.com", + "retroloc": "Germany Berlin", + "wgpubkey": "d3ldwEjnFcbLwD1o8uC5xC3DaSNek8DGeTpOb/h/IE4=", + "ips": [ + "37.120.217.131", + "37.120.217.179", + "37.120.217.181", + "89.36.76.53", + "89.36.76.59", + "89.36.76.61", + "89.36.76.101", + "89.36.76.117", + "89.36.76.123", + "89.36.76.125", + "152.89.163.21", + "152.89.163.243", + "193.176.86.93", + "193.176.86.131", + "193.176.86.173", + "193.176.86.197", + "217.138.216.59", + "217.138.216.229", + "217.138.216.243", + "217.138.216.245", + "217.138.216.251", + "217.138.216.253" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt mp001", + "ips": [ + "46.101.189.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st001", + "ips": [ + "45.87.212.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st001.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st001", + "wgpubkey": "kj90Cy2gkEYrHn487636hOfto2EBWEddUngRdrziylM=", + "ips": [ + "45.87.212.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st002", + "ips": [ + "45.87.212.181" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st002.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st002", + "wgpubkey": "HnYgO+mu04A2VjWiJiPh5TXFHJpWdcnmzCA1ExC991g=", + "ips": [ + "45.87.212.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st003", + "ips": [ + "45.87.212.183" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st003.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st003", + "wgpubkey": "OkHRRG05U3WOYWL5x4+6SGHCQlHH0NxkJyi9aM2gDSo=", + "ips": [ + "45.87.212.183" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st004", + "ips": [ + "195.181.174.226" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st004.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st004", + "wgpubkey": "0e0/gpN0k62p3s9SxSWL8PRhLx3PJZqNxMsK9OfTk0M=", + "ips": [ + "195.181.174.226" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st005", + "ips": [ + "195.181.174.228" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st005.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st005", + "wgpubkey": "CbBv1dSpGADT0Lo23noLP3VNCe+U4C/NzcG/HSdDtwg=", + "ips": [ + "195.181.174.228" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st006.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st006", + "ips": [ + "169.150.209.214" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st006.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st006", + "wgpubkey": "es0zPcbI1T5Vqrzjxl8QdaEKYVE7GDfV8ayR8jmvpRM=", + "ips": [ + "169.150.209.214" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st007.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st007", + "ips": [ + "149.34.246.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st007.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st007", + "wgpubkey": "cyiOxJryKyqB3cdwXjL7ILCUy3KVBPrOXSbFtasEeF8=", + "ips": [ + "149.34.246.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main", + "ips": [ + "91.199.118.50", + "91.199.118.56", + "91.239.157.186", + "138.199.19.157", + "146.70.160.227", + "146.70.160.245", + "149.102.230.132", + "156.146.33.67", + "156.146.33.81", + "188.95.65.42" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main", + "wgpubkey": "fJDA+OA6jzQxfRcoHfC27xz7m3C8/590fRjpntzSpGo=", + "ips": [ + "91.199.118.50", + "91.199.118.56", + "91.239.157.186", + "138.199.19.157", + "146.70.160.227", + "146.70.160.245", + "149.102.230.132", + "156.146.33.67", + "156.146.33.81", + "188.95.65.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Middle East and Africa", + "city": "Accra", + "hostname": "gh-acc.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "196.44.118.18", + "196.44.118.20", + "196.44.118.34", + "196.44.118.36" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Middle East and Africa", + "city": "Accra", + "hostname": "gh-acc.prod.surfshark.com", + "wgpubkey": "UH3qS1ysggFDEBP8Hzgz19Sw0T+SKxFldkatHRKMqBY=", + "ips": [ + "196.44.118.18", + "196.44.118.20", + "196.44.118.34", + "196.44.118.36" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gr-ath.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Greece", + "ips": [ + "149.102.246.98", + "149.102.246.100", + "149.102.246.103", + "149.102.246.106", + "149.102.246.109", + "149.102.246.111" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gr-ath.prod.surfshark.com", + "retroloc": "Greece", + "wgpubkey": "bXnjQGLhuauvBMg51YIAhwX40YqNL2ImyEub5DpHaBk=", + "ips": [ + "149.102.246.98", + "149.102.246.100", + "149.102.246.103", + "149.102.246.106", + "149.102.246.109", + "149.102.246.111" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "Europe", + "city": "Nuuk", + "hostname": "gl-goh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.123.18", + "92.62.123.20", + "92.62.123.34", + "92.62.123.36" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "Europe", + "city": "Nuuk", + "hostname": "gl-goh.prod.surfshark.com", + "wgpubkey": "zPg3ZJ7OsztQ0CRSSvH5o2KVL1DYgDGW65DFwLsYwyw=", + "ips": [ + "92.62.123.18", + "92.62.123.20", + "92.62.123.34", + "92.62.123.36" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "hostname": "hk-hkg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "118.99.2.2", + "118.99.2.14", + "118.99.2.20", + "118.99.2.22", + "118.99.2.24", + "118.99.2.36", + "118.99.2.44", + "118.99.2.46", + "138.199.62.12", + "138.199.62.22", + "138.199.62.24", + "156.146.45.113", + "156.146.45.153", + "156.146.45.193", + "156.146.45.196", + "156.146.45.200" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "hostname": "hk-hkg.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "JYHdktdtuM7inbtsxRKSDpnBVTWQ5+QLZ/cWWmf4VRg=", + "ips": [ + "118.99.2.2", + "118.99.2.14", + "118.99.2.20", + "118.99.2.22", + "118.99.2.24", + "118.99.2.36", + "118.99.2.44", + "118.99.2.46", + "138.199.62.12", + "138.199.62.22", + "138.199.62.24", + "156.146.45.113", + "156.146.45.153", + "156.146.45.193", + "156.146.45.196", + "156.146.45.200" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "hu-bud.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hungary", + "ips": [ + "146.70.120.11", + "146.70.120.13", + "146.70.120.19", + "146.70.120.21", + "146.70.120.27", + "146.70.120.29", + "146.70.120.35", + "146.70.120.37", + "146.70.120.43", + "146.70.120.45" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "hu-bud.prod.surfshark.com", + "retroloc": "Hungary", + "wgpubkey": "Pk3+iZNP0uWkDTSmEHlUeSA3WyiFXLXgYgAQ5wNyIBk=", + "ips": [ + "146.70.120.11", + "146.70.120.13", + "146.70.120.19", + "146.70.120.21", + "146.70.120.27", + "146.70.120.29", + "146.70.120.35", + "146.70.120.37", + "146.70.120.43", + "146.70.120.45" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "is-rkv.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Iceland", + "ips": [ + "45.139.252.4", + "45.139.252.8", + "45.139.252.14", + "45.139.252.16", + "45.139.252.18", + "45.139.252.22" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "is-rkv.prod.surfshark.com", + "retroloc": "Iceland", + "wgpubkey": "d0m2sIa0JGcxCBvoWDU77SjmPoiWI/oKoX1TL2f2fTA=", + "ips": [ + "45.139.252.4", + "45.139.252.8", + "45.139.252.14", + "45.139.252.16", + "45.139.252.18", + "45.139.252.22" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia Pacific", + "city": "Delhi", + "hostname": "in-del.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.121.35", + "92.62.121.37", + "92.62.121.67", + "92.62.121.69", + "92.62.121.83", + "92.62.121.85", + "92.62.121.117", + "92.62.121.131", + "92.62.121.133", + "92.62.121.147", + "92.62.121.163", + "92.62.121.165", + "92.62.121.179", + "92.62.121.181" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Asia Pacific", + "city": "Delhi", + "hostname": "in-del.prod.surfshark.com", + "wgpubkey": "+dmGrWPM9NI3vQkZ9E7hMRKAJKYzd3YMXGq10sjbN0A=", + "ips": [ + "92.62.121.35", + "92.62.121.37", + "92.62.121.67", + "92.62.121.69", + "92.62.121.83", + "92.62.121.85", + "92.62.121.117", + "92.62.121.131", + "92.62.121.133", + "92.62.121.147", + "92.62.121.163", + "92.62.121.165", + "92.62.121.179", + "92.62.121.181" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia Pacific", + "city": "Mumbai", + "hostname": "in-mum.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "176.227.240.16", + "176.227.240.22", + "176.227.240.28", + "176.227.240.46", + "176.227.240.50", + "176.227.240.62", + "176.227.240.64", + "176.227.240.68", + "176.227.240.74", + "176.227.240.76" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Asia Pacific", + "city": "Mumbai", + "hostname": "in-mum.prod.surfshark.com", + "wgpubkey": "nZBv1nNW6HSvjybgCO9TNHI1pkX+C6GjyAHUtkJRjRI=", + "ips": [ + "176.227.240.16", + "176.227.240.22", + "176.227.240.28", + "176.227.240.46", + "176.227.240.50", + "176.227.240.62", + "176.227.240.64", + "176.227.240.68", + "176.227.240.74", + "176.227.240.76" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "hostname": "id-jak.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Indonesia", + "ips": [ + "93.185.162.11", + "93.185.162.17", + "93.185.162.21", + "93.185.162.23" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "hostname": "id-jak.prod.surfshark.com", + "retroloc": "Indonesia", + "wgpubkey": "qyghLDfpfyparp0M52OVcmhKckayOvbRO2DDLkgJqyk=", + "ips": [ + "93.185.162.11", + "93.185.162.17", + "93.185.162.21", + "93.185.162.23" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "ie-dub.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Ireland", + "ips": [ + "84.247.48.211", + "146.70.94.181", + "146.70.94.189", + "146.70.94.245", + "146.70.130.165", + "149.34.242.59", + "149.34.242.74", + "149.34.242.87", + "149.34.242.89", + "149.34.242.97" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "ie-dub.prod.surfshark.com", + "retroloc": "Ireland", + "wgpubkey": "TjYxodFNdGlefxnWqe9vWWJHnz3meYWWhiIJyU8rgg8=", + "ips": [ + "84.247.48.211", + "146.70.94.181", + "146.70.94.189", + "146.70.94.245", + "146.70.130.165", + "149.34.242.59", + "149.34.242.74", + "149.34.242.87", + "149.34.242.89", + "149.34.242.97" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "hostname": "im-iom.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.148.51", + "62.197.148.53", + "62.197.148.67", + "62.197.148.69" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "hostname": "im-iom.prod.surfshark.com", + "wgpubkey": "PQKiTkyLs9+rvDkmhnHYBKUZAZwBpZYIZ7/mefvYKko=", + "ips": [ + "62.197.148.51", + "62.197.148.53", + "62.197.148.67", + "62.197.148.69" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Middle East and Africa", + "city": "Tel Aviv", + "hostname": "il-tlv.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Israel", + "ips": [ + "169.150.227.2", + "169.150.227.4", + "169.150.227.135", + "169.150.227.137", + "169.150.227.140", + "169.150.227.142", + "169.150.227.145", + "169.150.227.147" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Middle East and Africa", + "city": "Tel Aviv", + "hostname": "il-tlv.prod.surfshark.com", + "retroloc": "Israel", + "wgpubkey": "ZEG2fUrtohnVePblUlDM6wyyeTobzsABnMjTTFmqNUE=", + "ips": [ + "169.150.227.2", + "169.150.227.4", + "169.150.227.135", + "169.150.227.137", + "169.150.227.140", + "169.150.227.142", + "169.150.227.145", + "169.150.227.147" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "it-mil.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Italy Milan", + "ips": [ + "84.17.58.154", + "84.17.58.195", + "84.17.58.202", + "146.70.182.53", + "146.70.182.83", + "146.70.182.91", + "212.102.54.130", + "212.102.54.135", + "212.102.54.143", + "212.102.54.165" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "it-mil.prod.surfshark.com", + "retroloc": "Italy Milan", + "wgpubkey": "vIMHzH5FHdVkrhOOc0u/FySVhumaLC3XUk39Wk34LnE=", + "ips": [ + "84.17.58.154", + "84.17.58.195", + "84.17.58.202", + "146.70.182.53", + "146.70.182.83", + "146.70.182.91", + "212.102.54.130", + "212.102.54.135", + "212.102.54.143", + "212.102.54.165" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "hostname": "it-rom.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Italy Rome", + "ips": [ + "37.120.207.91", + "37.120.207.155", + "37.120.207.163", + "37.120.207.173", + "37.120.207.179", + "37.120.207.181", + "37.120.207.187", + "37.120.207.205" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "hostname": "it-rom.prod.surfshark.com", + "retroloc": "Italy Rome", + "wgpubkey": "fqxSeDr7n249iywruwLMwkV3r36svPT1tLf9TJOTFAw=", + "ips": [ + "37.120.207.91", + "37.120.207.155", + "37.120.207.163", + "37.120.207.173", + "37.120.207.179", + "37.120.207.181", + "37.120.207.187", + "37.120.207.205" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st014.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.187" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st015.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.22.153" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st015.prod.surfshark.com", + "wgpubkey": "nRaQb3Sa6SPDMW6QC0C6mC949iSTfKY4uytfyfZm8n0=", + "ips": [ + "138.199.22.153" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st016.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.177" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st016.prod.surfshark.com", + "wgpubkey": "2Fn9Do6+JKXV8mDZpB3DfWmaJHZwDXE/3GpckVKGzC8=", + "ips": [ + "37.19.205.177" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st017.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.179" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st017.prod.surfshark.com", + "wgpubkey": "T5aWKn3n64TkxqGqOv0ynTxY/w4ktVjc8AePLkDIM2Q=", + "ips": [ + "37.19.205.179" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st018.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.182" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st018.prod.surfshark.com", + "wgpubkey": "kRIGOWrV9eCe0FmFIFwtawoRjzZVCaQs+7FDfPRoAkU=", + "ips": [ + "37.19.205.182" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st019.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.184" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st019.prod.surfshark.com", + "wgpubkey": "RV46b4hNW5tn2I+REE4kJ36rKf5+nDVNE/SYM16XqDw=", + "ips": [ + "37.19.205.184" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st020.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.167" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st020.prod.surfshark.com", + "wgpubkey": "vEPOb23yMjJ37NF/KSXPKCL56LZO4UCulS3XbP+TKFs=", + "ips": [ + "37.19.205.167" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st021.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.169" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st021.prod.surfshark.com", + "wgpubkey": "821FvIHfdxW+gFPj8QNtEe2BgzSb5ryQxTNeRP+I6WE=", + "ips": [ + "37.19.205.169" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st022.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.162" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st022.prod.surfshark.com", + "wgpubkey": "nOobAMCxM7p0filChMAW6abz3BWDGzUFDB1Xyza0nCc=", + "ips": [ + "37.19.205.162" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st023.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.164" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st023.prod.surfshark.com", + "wgpubkey": "cwEDkT+qAO1+yQJGe8r7ajc69oXqUYGbMHp1L+lHkHM=", + "ips": [ + "37.19.205.164" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st024.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.2" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st024.prod.surfshark.com", + "wgpubkey": "4wdPRcmcFo2/pRi4zaXSKFZkR4rE54dCvgFDnomsEAs=", + "ips": [ + "89.187.161.2" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st025.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.4" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st025.prod.surfshark.com", + "wgpubkey": "IpGp7fS8+qpTPq24EN9NqOdvAjOTfyC/cI8DB5kndFY=", + "ips": [ + "89.187.161.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Japan Tokyo", + "ips": [ + "138.199.22.145", + "146.70.205.181", + "154.47.23.110", + "193.148.16.59", + "193.148.16.107", + "193.148.16.117" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok.prod.surfshark.com", + "retroloc": "Japan Tokyo", + "wgpubkey": "YJSjrc/WWOjQUyUi4iYcHb7LsWWoCY+2fK8/8VtC/BY=", + "ips": [ + "138.199.22.145", + "146.70.205.181", + "154.47.23.110", + "193.148.16.59", + "193.148.16.107", + "193.148.16.117" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Oral", + "hostname": "kz-ura.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.130.139.24", + "45.130.139.28", + "45.130.139.30", + "45.130.139.32", + "45.130.139.36", + "45.130.139.40", + "45.130.139.42" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Oral", + "hostname": "kz-ura.prod.surfshark.com", + "wgpubkey": "c8SPrUWVMjSm3xdZRF4eg57sdEo2TFmBDVKP+A+quHM=", + "ips": [ + "45.130.139.24", + "45.130.139.28", + "45.130.139.30", + "45.130.139.32", + "45.130.139.36", + "45.130.139.40", + "45.130.139.42" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "region": "Asia Pacific", + "city": "Vientiane", + "hostname": "la-vte.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.168.18", + "194.169.168.20", + "194.169.168.34", + "194.169.168.36" + ] + }, + { + "vpn": "wireguard", + "country": "Laos", + "region": "Asia Pacific", + "city": "Vientiane", + "hostname": "la-vte.prod.surfshark.com", + "wgpubkey": "yIlpSftvkSE2+T0uqxWl9HeQSrmPg+HkyvGLi55UqG0=", + "ips": [ + "194.169.168.18", + "194.169.168.20", + "194.169.168.34", + "194.169.168.36" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "hostname": "lv-rig.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Latvia", + "ips": [ + "80.246.31.80", + "80.246.31.82", + "80.246.31.98", + "80.246.31.100", + "80.246.31.104", + "80.246.31.215" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "hostname": "lv-rig.prod.surfshark.com", + "retroloc": "Latvia", + "wgpubkey": "EmghYf9rIpwOQ0uIjIxgCXs/WwHJthNvPIv5iKseE3A=", + "ips": [ + "80.246.31.80", + "80.246.31.82", + "80.246.31.98", + "80.246.31.100", + "80.246.31.104", + "80.246.31.215" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "hostname": "li-qvu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.150.67", + "62.197.150.69" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "hostname": "li-qvu.prod.surfshark.com", + "wgpubkey": "ZSCz5PqrLnu+Eu9wjiMDLscEHTBcfD0H3CGz0i8pXxc=", + "ips": [ + "62.197.150.67", + "62.197.150.69" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "hostname": "lt-vno.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.149.109", + "62.197.149.122" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "hostname": "lt-vno.prod.surfshark.com", + "wgpubkey": "pC7xJD56uFFJ7qHpe3XvXXhjwZcoMco09ySHOg4h+iA=", + "ips": [ + "62.197.149.109", + "62.197.149.122" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "hostname": "lu-ste.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Luxembourg", + "ips": [ + "185.153.151.134", + "185.153.151.139", + "185.153.151.144", + "185.153.151.154", + "185.153.151.156", + "185.153.151.166", + "185.153.151.171", + "185.153.151.181" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "hostname": "lu-ste.prod.surfshark.com", + "retroloc": "Luxembourg", + "wgpubkey": "68JVBL/M2AYQ9gYHtcpmZ6Pl+ayhJjTL2sr6Ej1VEFg=", + "ips": [ + "185.153.151.134", + "185.153.151.139", + "185.153.151.144", + "185.153.151.154", + "185.153.151.156", + "185.153.151.166", + "185.153.151.171", + "185.153.151.181" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "region": "Asia Pacific", + "city": "Macao", + "hostname": "mo-mfm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.154.18", + "62.197.154.20", + "62.197.154.34", + "62.197.154.36" + ] + }, + { + "vpn": "wireguard", + "country": "Macau", + "region": "Asia Pacific", + "city": "Macao", + "hostname": "mo-mfm.prod.surfshark.com", + "wgpubkey": "uMD8IFggqtF0ZbviJJFMQFhR3R52mVqhoJmKPt+aACs=", + "ips": [ + "62.197.154.18", + "62.197.154.20", + "62.197.154.34", + "62.197.154.36" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "hostname": "my-kul.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Malaysia", + "ips": [ + "185.196.0.10", + "185.196.0.15", + "185.196.0.20", + "185.196.0.25" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "hostname": "my-kul.prod.surfshark.com", + "retroloc": "Malaysia", + "wgpubkey": "AS84LXlJfgBwGHc70MvtGRxsMqNNucZ2pNOBayJUm04=", + "ips": [ + "185.196.0.10", + "185.196.0.15", + "185.196.0.20", + "185.196.0.25" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "hostname": "mt-mla.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "193.228.56.132", + "193.228.56.134", + "193.228.56.137", + "193.228.56.139" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "hostname": "mt-mla.prod.surfshark.com", + "wgpubkey": "c9EuAnWYvGUyFrzrV70Fph0onkFv2xe3Bc0gTCFuKRw=", + "ips": [ + "193.228.56.132", + "193.228.56.134", + "193.228.56.137", + "193.228.56.139" + ] + }, + { + "vpn": "openvpn", + "country": "Marocco", + "region": "Middle East and Africa", + "city": "Rabat", + "hostname": "ma-rab.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.169.18", + "194.169.169.20", + "194.169.169.34", + "194.169.169.36" + ] + }, + { + "vpn": "wireguard", + "country": "Marocco", + "region": "Middle East and Africa", + "city": "Rabat", + "hostname": "ma-rab.prod.surfshark.com", + "wgpubkey": "Tl7KINtNnar9fVQD8LG2dswOEqSKmUP9ioimCjo6jHc=", + "ips": [ + "194.169.169.18", + "194.169.169.20", + "194.169.169.34", + "194.169.169.36" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Americas", + "city": "Queretaro", + "hostname": "mx-qro.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.22.66", + "149.88.22.68", + "149.88.22.71", + "149.88.22.73", + "149.88.22.76", + "149.88.22.78" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "Americas", + "city": "Queretaro", + "hostname": "mx-qro.prod.surfshark.com", + "wgpubkey": "6C8O3L/Li0JOO5aWvL6PrciiZOOaRBtWmempOUENLQs=", + "ips": [ + "149.88.22.66", + "149.88.22.68", + "149.88.22.71", + "149.88.22.73", + "149.88.22.76", + "149.88.22.78" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "hostname": "md-chi.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Moldova", + "ips": [ + "178.175.128.235", + "185.181.229.227", + "185.181.229.229", + "185.181.230.102", + "185.181.230.104", + "194.33.40.112" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "hostname": "md-chi.prod.surfshark.com", + "retroloc": "Moldova", + "wgpubkey": "4Exn42t337sxoBzYHxgmDBNq+AhTYz6nvEj98TWY50Y=", + "ips": [ + "178.175.128.235", + "185.181.229.227", + "185.181.229.229", + "185.181.230.102", + "185.181.230.104", + "194.33.40.112" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "hostname": "mc-mcm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.151.18", + "62.197.151.20", + "62.197.151.34", + "62.197.151.36" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "hostname": "mc-mcm.prod.surfshark.com", + "wgpubkey": "rj9PNit3SCy52Knw0QmHUfN2W59nB4oMOtmOZq1q/Hc=", + "ips": [ + "62.197.151.18", + "62.197.151.20", + "62.197.151.34", + "62.197.151.36" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "hostname": "mn-uln.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "62.197.155.18", + "62.197.155.20", + "62.197.155.34", + "62.197.155.36" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "hostname": "mn-uln.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "3nLHy4uBd2nBUDuAuR6AM58yHLiX2CAXg8kdgEr6tV4=", + "ips": [ + "62.197.155.18", + "62.197.155.20", + "62.197.155.34", + "62.197.155.36" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "hostname": "me-tgd.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.159.18", + "62.197.159.20", + "62.197.159.34", + "62.197.159.36" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "hostname": "me-tgd.prod.surfshark.com", + "wgpubkey": "Jhiez1pdO7tqUX0OmUubd9SPfvUc/ypSLRzWiyr3SRM=", + "ips": [ + "62.197.159.18", + "62.197.159.20", + "62.197.159.34", + "62.197.159.36" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "hostname": "mm-nyt.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.242.18", + "45.95.242.20", + "45.95.242.34", + "45.95.242.36" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "hostname": "mm-nyt.prod.surfshark.com", + "wgpubkey": "tehGZzcmdK59x99I9dbfuWOHSxBdPsz5lB+uAoT75kE=", + "ips": [ + "45.95.242.18", + "45.95.242.20", + "45.95.242.34", + "45.95.242.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam mp001", + "ips": [ + "188.166.43.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam st001", + "ips": [ + "81.19.209.51" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-st001.prod.surfshark.com", + "retroloc": "Netherlands Amsterdam st001", + "wgpubkey": "6nnixEne6MUyAmsjhA/1O7evl+STAL00AoLcY5+Hb1Y=", + "ips": [ + "81.19.209.51" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam", + "ips": [ + "81.19.208.91", + "81.19.216.251", + "89.46.223.52", + "89.46.223.54", + "89.46.223.56", + "89.46.223.187", + "143.244.42.89", + "143.244.42.91", + "146.70.175.13", + "146.70.175.21", + "146.70.175.27", + "146.70.175.75", + "146.70.175.91", + "178.239.173.51", + "212.102.35.204", + "212.102.35.206", + "212.102.35.214", + "212.102.35.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams.prod.surfshark.com", + "retroloc": "Netherlands Amsterdam", + "wgpubkey": "Lxg3jAOKcBA9tGBtB6vEWMFl5LUEB6AwOpuniYn1cig=", + "ips": [ + "81.19.208.91", + "81.19.216.251", + "89.46.223.52", + "89.46.223.54", + "89.46.223.56", + "89.46.223.187", + "143.244.42.89", + "143.244.42.91", + "146.70.175.13", + "146.70.175.21", + "146.70.175.27", + "146.70.175.75", + "146.70.175.91", + "178.239.173.51", + "212.102.35.204", + "212.102.35.206", + "212.102.35.214", + "212.102.35.218" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "hostname": "nz-akl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "New Zealand", + "ips": [ + "180.149.231.3", + "180.149.231.5", + "180.149.231.11", + "180.149.231.43", + "180.149.231.115", + "180.149.231.117", + "180.149.231.163", + "180.149.231.165" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "hostname": "nz-akl.prod.surfshark.com", + "retroloc": "New Zealand", + "wgpubkey": "xv8P19y0m9ojrLelCaPzGtaVv7tlPzLgZxvAD7lpYDg=", + "ips": [ + "180.149.231.3", + "180.149.231.5", + "180.149.231.11", + "180.149.231.43", + "180.149.231.115", + "180.149.231.117", + "180.149.231.163", + "180.149.231.165" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Middle East and Africa", + "city": "Lagos", + "hostname": "ng-lag.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Nigeria", + "ips": [ + "213.109.151.18", + "213.109.151.20", + "213.109.151.34", + "213.109.151.36" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Middle East and Africa", + "city": "Lagos", + "hostname": "ng-lag.prod.surfshark.com", + "retroloc": "Nigeria", + "wgpubkey": "mMmsmMyqtASb4V42H5nxyD8BgauWrNhCCZdBHCsbC00=", + "ips": [ + "213.109.151.18", + "213.109.151.20", + "213.109.151.34", + "213.109.151.36" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "hostname": "mk-skp.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "North Macedonia", + "ips": [ + "185.225.28.67", + "185.225.28.69", + "185.225.28.91", + "185.225.28.93", + "185.225.28.107", + "185.225.28.243", + "185.225.28.245" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "hostname": "mk-skp.prod.surfshark.com", + "retroloc": "North Macedonia", + "wgpubkey": "dZNq48noPkey9rwSbAU+masbafpDSaAmtAMaP+gzLxA=", + "ips": [ + "185.225.28.67", + "185.225.28.69", + "185.225.28.91", + "185.225.28.93", + "185.225.28.107", + "185.225.28.243", + "185.225.28.245" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "hostname": "no-osl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Norway", + "ips": [ + "146.70.103.221", + "146.70.103.229", + "146.70.103.237", + "185.253.97.91", + "185.253.97.99", + "185.253.97.101", + "185.253.97.115", + "185.253.97.117" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "hostname": "no-osl.prod.surfshark.com", + "retroloc": "Norway", + "wgpubkey": "pXfZi2vsdd88qrnqh+bwqHG4IYD42pj3T1wCm3PIGmw=", + "ips": [ + "146.70.103.221", + "146.70.103.229", + "146.70.103.237", + "185.253.97.91", + "185.253.97.99", + "185.253.97.101", + "185.253.97.115", + "185.253.97.117" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "hostname": "pk-khi.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "113.203.221.3", + "113.203.221.5", + "113.203.221.19", + "113.203.221.21" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "hostname": "pk-khi.prod.surfshark.com", + "wgpubkey": "DLb7wUFYkOcx5iiNxbNquP5rH+EJdiQfrdFaQoojskU=", + "ips": [ + "113.203.221.3", + "113.203.221.5", + "113.203.221.19", + "113.203.221.21" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama", + "hostname": "pa-pac.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.139.18", + "185.244.139.20", + "185.244.139.34", + "185.244.139.36" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama", + "hostname": "pa-pac.prod.surfshark.com", + "wgpubkey": "9L1tbh/IHrrtImJnuEsVc1eN7xChlLzS6nCMaVyH/iQ=", + "ips": [ + "185.244.139.18", + "185.244.139.20", + "185.244.139.34", + "185.244.139.36" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "hostname": "py-asu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.26.131.18", + "194.26.131.20", + "194.26.131.34", + "194.26.131.36" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "hostname": "py-asu.prod.surfshark.com", + "wgpubkey": "vY6iX5ivkYIrIADMPQMtzR8onU7UYlB52XH5loAeDn0=", + "ips": [ + "194.26.131.18", + "194.26.131.20", + "194.26.131.34", + "194.26.131.36" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "hostname": "pe-lim.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "193.218.35.34", + "193.218.35.50" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "hostname": "pe-lim.prod.surfshark.com", + "wgpubkey": "mR3GelqqkAL6IKKbzcdxJm3f3uyVNxdzCCtTcLT+wUc=", + "ips": [ + "193.218.35.34", + "193.218.35.50" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "hostname": "ph-mnl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Philippines", + "ips": [ + "23.230.151.50", + "23.230.151.52", + "23.230.151.82", + "23.230.151.84", + "23.230.151.114", + "23.230.151.116" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "hostname": "ph-mnl.prod.surfshark.com", + "retroloc": "Philippines", + "wgpubkey": "utXZy1ELBSQKa6s9/K/W4sV11Jod6sSLoikKqKRPyQs=", + "ips": [ + "23.230.151.50", + "23.230.151.52", + "23.230.151.82", + "23.230.151.84", + "23.230.151.114", + "23.230.151.116" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Gdansk", + "hostname": "pl-gdn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Poland Gdansk", + "ips": [ + "5.133.9.203", + "5.133.9.205", + "5.187.52.203", + "5.187.52.205", + "5.187.54.149", + "37.28.156.227", + "37.28.156.229", + "37.28.156.235", + "37.28.156.237", + "37.28.156.245" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Gdansk", + "hostname": "pl-gdn.prod.surfshark.com", + "retroloc": "Poland Gdansk", + "wgpubkey": "4lZhg/fKDCRLjvULGntx21qfebzQv5TJjZ1pc82sUgc=", + "ips": [ + "5.133.9.203", + "5.133.9.205", + "5.187.52.203", + "5.187.52.205", + "5.187.54.149", + "37.28.156.227", + "37.28.156.229", + "37.28.156.235", + "37.28.156.237", + "37.28.156.245" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "pl-waw.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Poland Warsaw", + "ips": [ + "45.128.38.131", + "45.128.38.133", + "45.134.212.226", + "45.134.212.228", + "146.70.161.235", + "146.70.161.237", + "146.70.161.243", + "146.70.161.245" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "pl-waw.prod.surfshark.com", + "retroloc": "Poland Warsaw", + "wgpubkey": "vBa3HK7QXietG64rHRLm085VMS2cAX2paeAaphB/SEU=", + "ips": [ + "45.128.38.131", + "45.128.38.133", + "45.134.212.226", + "45.134.212.228", + "146.70.161.235", + "146.70.161.237", + "146.70.161.243", + "146.70.161.245" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "hostname": "pt-lis.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Portugal Lisbon", + "ips": [ + "149.88.20.73", + "149.88.20.85", + "149.88.20.89", + "149.88.20.95", + "149.88.20.97", + "185.92.210.70", + "185.92.210.131", + "185.92.210.137", + "185.92.210.139", + "185.92.210.141" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "hostname": "pt-lis.prod.surfshark.com", + "retroloc": "Portugal Lisbon", + "wgpubkey": "JgYlpt7jFh0FV2QO0QQ3yFfsnqikUq977V3cObFGTQ4=", + "ips": [ + "149.88.20.73", + "149.88.20.85", + "149.88.20.89", + "149.88.20.95", + "149.88.20.97", + "185.92.210.70", + "185.92.210.131", + "185.92.210.137", + "185.92.210.139", + "185.92.210.141" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Porto", + "hostname": "pt-opo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Portugal Porto", + "ips": [ + "103.192.205.50", + "103.192.205.52", + "103.192.205.54", + "103.192.205.56", + "103.192.205.58", + "103.192.205.60" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Porto", + "hostname": "pt-opo.prod.surfshark.com", + "retroloc": "Portugal Porto", + "wgpubkey": "F24iHyEt6YSSaUry/nQAfIEOwXncH0RHUtkte0znvkE=", + "ips": [ + "103.192.205.50", + "103.192.205.52", + "103.192.205.54", + "103.192.205.56", + "103.192.205.58", + "103.192.205.60" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "hostname": "pr-sju.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.139.253.2", + "45.139.253.4" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "hostname": "pr-sju.prod.surfshark.com", + "wgpubkey": "aShaCPgmFn4fHK6wY7pVEIirZ3J961+93d3Qicz6swE=", + "ips": [ + "45.139.253.2", + "45.139.253.4" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "ro-buc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Romania", + "ips": [ + "85.204.124.93", + "89.33.8.195", + "185.102.217.159", + "185.102.217.161", + "217.148.143.197" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "ro-buc.prod.surfshark.com", + "retroloc": "Romania", + "wgpubkey": "uRT3uSAUwvm7Rp+s3n5V9JibsKHKAZ/8+SU3psG8QxI=", + "ips": [ + "85.204.124.93", + "89.33.8.195", + "185.102.217.159", + "185.102.217.161", + "217.148.143.197" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "region": "Middle East and Africa", + "city": "Riyadh", + "hostname": "sa-ruh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.150.5.2", + "45.150.5.18" + ] + }, + { + "vpn": "wireguard", + "country": "Saudi Arabia", + "region": "Middle East and Africa", + "city": "Riyadh", + "hostname": "sa-ruh.prod.surfshark.com", + "wgpubkey": "quiGeZeYE8T2FBBfz3mGikY9m7cTTyA0q/ROFakbfwU=", + "ips": [ + "45.150.5.2", + "45.150.5.18" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "rs-beg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Serbia", + "ips": [ + "37.120.193.227", + "37.120.193.229", + "146.70.111.85", + "146.70.111.91", + "146.70.111.93", + "146.70.111.99", + "146.70.111.101", + "146.70.111.109" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "rs-beg.prod.surfshark.com", + "retroloc": "Serbia", + "wgpubkey": "A3vmr6/umw5sP8anxNyipgi5oEnOnZdqB1K/cbQpMiI=", + "ips": [ + "37.120.193.227", + "37.120.193.229", + "146.70.111.85", + "146.70.111.91", + "146.70.111.93", + "146.70.111.99", + "146.70.111.101", + "146.70.111.109" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Singapore mp001", + "ips": [ + "206.189.94.229" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.175" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st005.prod.surfshark.com", + "wgpubkey": "d9+f+QTkJH5vYt5dah62rKQLVIudeMERjEssTg3txnQ=", + "ips": [ + "138.199.60.175" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st006.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.177" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st006.prod.surfshark.com", + "wgpubkey": "r5IE8U+/CmPJBQFULLUPwfE4AESkUU7Z4wWBOpHvFyA=", + "ips": [ + "138.199.60.177" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st007.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.170" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st007.prod.surfshark.com", + "wgpubkey": "4geWIYI3+Zn7GmtzJ4D9/QIhRjWGpWwIhqssT3Yl9RE=", + "ips": [ + "138.199.60.170" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st008.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.172" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st008.prod.surfshark.com", + "wgpubkey": "6GvYCh8LaRnbp3OwvNB2BPCaNOjGYKGwfen6eVUP6hc=", + "ips": [ + "138.199.60.172" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st009.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.180" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st009.prod.surfshark.com", + "wgpubkey": "sk0YuJx8nO9hhJnQz5rn1aboekY7Hdl9ZfebCSXBGAY=", + "ips": [ + "138.199.60.180" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st010.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.182" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st010.prod.surfshark.com", + "wgpubkey": "eL2WOQ130amedxlJ50x71eZUI3QWg8wuqwgqc9vjSRo=", + "ips": [ + "138.199.60.182" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Singapore", + "ips": [ + "89.187.163.217", + "146.70.192.157", + "146.70.192.179", + "149.34.253.146", + "156.146.56.130", + "156.146.56.135" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng.prod.surfshark.com", + "retroloc": "Singapore", + "wgpubkey": "MGfgkhJsMVMTO33h1wr76+z6gQr/93VcGdClfbaPsnU=", + "ips": [ + "89.187.163.217", + "146.70.192.157", + "146.70.192.179", + "149.34.253.146", + "156.146.56.130", + "156.146.56.135" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "hostname": "sk-bts.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Slovekia", + "ips": [ + "146.70.114.35", + "146.70.114.37", + "185.76.8.210", + "185.76.8.212", + "185.76.8.215", + "185.76.8.217" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "hostname": "sk-bts.prod.surfshark.com", + "retroloc": "Slovekia", + "wgpubkey": "T5b7+uwUFqN5r1WsfBXURpSnYCYRLFAVreKkIQHGOlw=", + "ips": [ + "146.70.114.35", + "146.70.114.37", + "185.76.8.210", + "185.76.8.212", + "185.76.8.215", + "185.76.8.217" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "si-lju.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Slovenia", + "ips": [ + "195.158.249.19", + "195.158.249.21", + "195.158.249.23", + "195.158.249.29" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "si-lju.prod.surfshark.com", + "retroloc": "Slovenia", + "wgpubkey": "yPdmxOfzm06fotkt/dlaAiyxWPaWfCuDPaUljNx+c38=", + "ips": [ + "195.158.249.19", + "195.158.249.21", + "195.158.249.23", + "195.158.249.29" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Middle East and Africa", + "city": "Johannesburg", + "hostname": "za-jnb.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "South Africa", + "ips": [ + "154.47.30.98", + "154.47.30.100", + "154.47.30.108", + "154.47.30.110" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Middle East and Africa", + "city": "Johannesburg", + "hostname": "za-jnb.prod.surfshark.com", + "retroloc": "South Africa", + "wgpubkey": "Wj/fSWxNLs1igL1uTRp4zLFNohe4S1wqNTYRHevthUA=", + "ips": [ + "154.47.30.98", + "154.47.30.100", + "154.47.30.108", + "154.47.30.110" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "hostname": "kr-seo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Korea", + "ips": [ + "27.255.75.21", + "27.255.75.23", + "61.97.244.36", + "61.97.244.38", + "61.255.174.13", + "61.255.174.212", + "61.255.174.251", + "103.249.31.26", + "103.249.31.28" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "hostname": "kr-seo.prod.surfshark.com", + "retroloc": "Korea", + "wgpubkey": "bD/m2mdKxJXG2wTkLsmWpiW8xZwkDdrrrwC44auOhQg=", + "ips": [ + "27.255.75.21", + "27.255.75.23", + "61.97.244.36", + "61.97.244.38", + "61.255.174.13", + "61.255.174.212", + "61.255.174.251", + "103.249.31.26", + "103.249.31.28" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "es-bcn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Barcelona", + "ips": [ + "185.188.61.23", + "185.188.61.40", + "185.188.61.42", + "185.188.61.50", + "185.188.61.52", + "185.188.61.54" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "es-bcn.prod.surfshark.com", + "retroloc": "Spain Barcelona", + "wgpubkey": "3EC6079YDlzJKcNLdrm/t+JLG8hV3wPpoWE4MypjYnw=", + "ips": [ + "185.188.61.23", + "185.188.61.40", + "185.188.61.42", + "185.188.61.50", + "185.188.61.52", + "185.188.61.54" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "es-mad.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Madrid", + "ips": [ + "45.134.213.245", + "89.37.95.208", + "89.37.95.212", + "89.37.95.220", + "89.37.95.222", + "212.102.48.4" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "es-mad.prod.surfshark.com", + "retroloc": "Spain Madrid", + "wgpubkey": "a30vOQfjwPzjRxGNi2dvSAMdaPHEYatR84cUjXKOwls=", + "ips": [ + "45.134.213.245", + "89.37.95.208", + "89.37.95.212", + "89.37.95.220", + "89.37.95.222", + "212.102.48.4" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Valencia", + "hostname": "es-vlc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Valencia", + "ips": [ + "193.19.207.84", + "193.19.207.86", + "193.19.207.88", + "193.19.207.90", + "193.19.207.92", + "193.19.207.94", + "193.19.207.96", + "193.19.207.98", + "193.19.207.100", + "193.19.207.102" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Valencia", + "hostname": "es-vlc.prod.surfshark.com", + "retroloc": "Spain Valencia", + "wgpubkey": "TlYKGW07dqFfedNfAnVIPv2WPfC54h96se+dcIDuNhU=", + "ips": [ + "193.19.207.84", + "193.19.207.86", + "193.19.207.88", + "193.19.207.90", + "193.19.207.92", + "193.19.207.94", + "193.19.207.96", + "193.19.207.98", + "193.19.207.100", + "193.19.207.102" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "hostname": "lk-cmb.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "62.197.156.18", + "62.197.156.20", + "62.197.156.34", + "62.197.156.36" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "hostname": "lk-cmb.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "+8TxSpyyEGiZK6d/5V+94Zc7nxOV3F1ag7sM6AN86GY=", + "ips": [ + "62.197.156.18", + "62.197.156.20", + "62.197.156.34", + "62.197.156.36" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "se-sto.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Sweden", + "ips": [ + "146.70.21.171", + "146.70.21.181", + "185.76.9.34", + "185.76.9.36", + "185.76.9.44", + "185.76.9.46", + "185.76.9.55", + "185.76.9.57" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "se-sto.prod.surfshark.com", + "retroloc": "Sweden", + "wgpubkey": "oUFRc+2emXgogDVWnJF4RAzr72PyafCzMVeQOgG92lY=", + "ips": [ + "146.70.21.171", + "146.70.21.181", + "185.76.9.34", + "185.76.9.36", + "185.76.9.44", + "185.76.9.46", + "185.76.9.55", + "185.76.9.57" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "ch-zur.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Switzerland", + "ips": [ + "84.17.53.166", + "84.17.53.214", + "84.17.53.216", + "84.17.53.219", + "84.17.53.225", + "89.37.173.25", + "89.37.173.29", + "89.37.173.37", + "89.37.173.41", + "89.37.173.51", + "89.37.173.53", + "169.150.197.2", + "169.150.197.7", + "212.102.36.232" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "ch-zur.prod.surfshark.com", + "retroloc": "Switzerland", + "wgpubkey": "qFuwaE8IyDbNBTNar3xAXRGaBdkTtmLh1uIGMJxTxUs=", + "ips": [ + "84.17.53.166", + "84.17.53.214", + "84.17.53.216", + "84.17.53.219", + "84.17.53.225", + "89.37.173.25", + "89.37.173.29", + "89.37.173.37", + "89.37.173.41", + "89.37.173.51", + "89.37.173.53", + "169.150.197.2", + "169.150.197.7", + "212.102.36.232" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taichung City", + "hostname": "tw-tai.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Taiwan", + "ips": [ + "45.144.227.7", + "45.144.227.16", + "45.144.227.22", + "45.144.227.28", + "45.144.227.41", + "45.144.227.51", + "45.144.227.56", + "45.144.227.61", + "45.144.227.68", + "45.144.227.81", + "45.144.227.83", + "45.144.227.88" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taichung City", + "hostname": "tw-tai.prod.surfshark.com", + "retroloc": "Taiwan", + "wgpubkey": "P0vaGUOUE7V5bbGOYY2WgQeZnTZEHvIr+dfebU7W4Ao=", + "ips": [ + "45.144.227.7", + "45.144.227.16", + "45.144.227.22", + "45.144.227.28", + "45.144.227.41", + "45.144.227.51", + "45.144.227.56", + "45.144.227.61", + "45.144.227.68", + "45.144.227.81", + "45.144.227.83", + "45.144.227.88" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "hostname": "th-bkk.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Thailand", + "ips": [ + "103.176.152.2", + "103.176.152.4", + "103.176.152.7", + "103.176.152.9", + "103.176.152.12", + "103.176.152.17", + "103.176.152.19", + "103.176.152.22", + "103.176.152.24", + "103.176.152.34", + "103.176.152.37", + "103.176.152.39", + "103.176.152.42", + "103.176.152.44" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "hostname": "th-bkk.prod.surfshark.com", + "retroloc": "Thailand", + "wgpubkey": "OoFY46j/w4uQFyFu/OQ/h3x+ymJ1DJ4UR1fwGNxOxk0=", + "ips": [ + "103.176.152.2", + "103.176.152.4", + "103.176.152.7", + "103.176.152.9", + "103.176.152.12", + "103.176.152.17", + "103.176.152.19", + "103.176.152.22", + "103.176.152.24", + "103.176.152.34", + "103.176.152.37", + "103.176.152.39", + "103.176.152.42", + "103.176.152.44" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Europe", + "city": "Istanbul", + "hostname": "tr-ist.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Turkey Istanbul", + "ips": [ + "45.136.155.50", + "45.136.155.51", + "45.136.155.53", + "45.136.155.55", + "45.136.155.58", + "45.136.155.193" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Europe", + "city": "Istanbul", + "hostname": "tr-ist.prod.surfshark.com", + "retroloc": "Turkey Istanbul", + "wgpubkey": "sF/TlxU9XaDN3QQBT/lu2Pw9qpD3XpDqLBfInBtff2A=", + "ips": [ + "45.136.155.50", + "45.136.155.51", + "45.136.155.53", + "45.136.155.55", + "45.136.155.58", + "45.136.155.193" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "hostname": "ua-iev.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Ukraine", + "ips": [ + "143.244.46.66", + "143.244.46.76", + "143.244.46.103", + "143.244.46.108", + "143.244.46.110", + "143.244.46.113", + "143.244.46.120", + "143.244.46.226", + "143.244.46.231", + "143.244.46.233" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "hostname": "ua-iev.prod.surfshark.com", + "retroloc": "Ukraine", + "wgpubkey": "wy+PhWBP715KfBrsQR4P3JUalYc9a77FmZWQinwYLmo=", + "ips": [ + "143.244.46.66", + "143.244.46.76", + "143.244.46.103", + "143.244.46.108", + "143.244.46.110", + "143.244.46.113", + "143.244.46.120", + "143.244.46.226", + "143.244.46.231", + "143.244.46.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Middle East and Africa", + "city": "Dubai", + "hostname": "ae-dub.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "United Arab Emirates", + "ips": [ + "146.70.102.181", + "146.70.102.189", + "146.70.102.195", + "146.70.102.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Middle East and Africa", + "city": "Dubai", + "hostname": "ae-dub.prod.surfshark.com", + "retroloc": "United Arab Emirates", + "wgpubkey": "6dZGkg0iAMgQuOCGknAgBAqDEeJeBQ4Of5eblO4aNC8=", + "ips": [ + "146.70.102.181", + "146.70.102.189", + "146.70.102.195", + "146.70.102.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "hostname": "uk-edi.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.57.87", + "188.240.57.91", + "188.240.57.95", + "188.240.57.105", + "188.240.57.113", + "188.240.57.115", + "188.240.57.117", + "188.240.57.121", + "188.240.57.123", + "188.240.57.125" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "hostname": "uk-edi.prod.surfshark.com", + "wgpubkey": "f0fMBZNOzoTDfU28EKhtvYy3keiG5Jkh4fLBov1DI0U=", + "ips": [ + "188.240.57.87", + "188.240.57.91", + "188.240.57.95", + "188.240.57.105", + "188.240.57.113", + "188.240.57.115", + "188.240.57.117", + "188.240.57.121", + "188.240.57.123", + "188.240.57.125" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "hostname": "uk-gla.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK Glasgow", + "ips": [ + "185.108.105.37", + "185.108.105.39", + "185.108.105.77", + "185.108.105.105", + "185.108.105.107", + "185.108.105.113", + "185.108.105.117", + "185.108.105.131", + "185.108.105.133", + "185.108.105.145", + "185.108.105.147", + "185.108.105.236" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "hostname": "uk-gla.prod.surfshark.com", + "retroloc": "UK Glasgow", + "wgpubkey": "QiFHJ7wtwhXEztRqBjGrFphsFXtlAFWwMDgruFKq0XE=", + "ips": [ + "185.108.105.37", + "185.108.105.39", + "185.108.105.77", + "185.108.105.105", + "185.108.105.107", + "185.108.105.113", + "185.108.105.117", + "185.108.105.131", + "185.108.105.133", + "185.108.105.145", + "185.108.105.147", + "185.108.105.236" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London mp001", + "ips": [ + "206.189.119.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st001", + "ips": [ + "217.146.82.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st001.prod.surfshark.com", + "retroloc": "UK London st001", + "wgpubkey": "G+Jv9y9nMXdTIe92fXG4cYAKpsyIHmMwYSujCL+1uCo=", + "ips": [ + "217.146.82.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st002", + "ips": [ + "185.134.22.80" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st002.prod.surfshark.com", + "retroloc": "UK London st002", + "wgpubkey": "+zZlWRDv4SAZ1j1DpyZKBzFVM7yV0hgBNKf8/nG2hWo=", + "ips": [ + "185.134.22.80" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st003", + "ips": [ + "185.134.22.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st003.prod.surfshark.com", + "retroloc": "UK London st003", + "wgpubkey": "/Ae1VALCWv/m+TU80A+1NB7NLffdSGKyCgpgW9NRNEI=", + "ips": [ + "185.134.22.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st004", + "ips": [ + "185.44.76.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st004.prod.surfshark.com", + "retroloc": "UK London st004", + "wgpubkey": "G+gdwCKtJUgSce/FwjMSh0xeEhvk55jjbqhBnTYgg3o=", + "ips": [ + "185.44.76.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st005", + "ips": [ + "185.44.76.188" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st005.prod.surfshark.com", + "retroloc": "UK London st005", + "wgpubkey": "QWhiKTxKWp9wo3blPDcMdA1Y/Vn69u2d8WQKQMTuoWw=", + "ips": [ + "185.44.76.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London", + "ips": [ + "138.199.29.132", + "138.199.29.135", + "138.199.29.225", + "154.47.24.83", + "178.238.10.144", + "178.239.163.51", + "178.239.163.53", + "178.239.163.87", + "178.239.172.59", + "185.44.77.52", + "185.44.77.54", + "185.44.77.125", + "185.245.82.48", + "217.146.82.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon.prod.surfshark.com", + "retroloc": "UK London", + "wgpubkey": "iBJRXLZwXuWWrOZE1ZrAXEKMgV/z0WjG0Tks5rnWLBI=", + "ips": [ + "138.199.29.132", + "138.199.29.135", + "138.199.29.225", + "154.47.24.83", + "178.238.10.144", + "178.239.163.51", + "178.239.163.53", + "178.239.163.87", + "178.239.172.59", + "185.44.77.52", + "185.44.77.54", + "185.44.77.125", + "185.245.82.48", + "217.146.82.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "uk-man.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK Manchester", + "ips": [ + "37.120.159.131", + "37.120.159.133", + "37.120.159.141", + "37.120.233.171", + "37.120.233.173", + "37.120.233.237", + "84.39.114.157", + "86.106.136.117", + "89.238.135.45", + "89.238.138.235", + "91.90.121.213", + "103.214.44.48", + "103.214.44.51", + "103.219.21.1", + "103.219.21.3", + "103.219.21.40", + "103.219.21.112", + "103.219.21.130", + "139.28.176.21", + "139.28.176.51", + "139.28.176.149", + "194.37.98.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "uk-man.prod.surfshark.com", + "retroloc": "UK Manchester", + "wgpubkey": "9R8He1cP8Laf5MT58FcaEYtPW/qnN3M9MQThIXOIvHs=", + "ips": [ + "37.120.159.131", + "37.120.159.133", + "37.120.159.141", + "37.120.233.171", + "37.120.233.173", + "37.120.233.237", + "84.39.114.157", + "86.106.136.117", + "89.238.135.45", + "89.238.138.235", + "91.90.121.213", + "103.214.44.48", + "103.214.44.51", + "103.219.21.1", + "103.219.21.3", + "103.219.21.40", + "103.219.21.112", + "103.219.21.130", + "139.28.176.21", + "139.28.176.51", + "139.28.176.149", + "194.37.98.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Ashburn", + "hostname": "us-ash.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.206.34", + "37.19.206.51", + "45.144.115.26", + "45.144.115.34", + "45.144.115.50", + "45.144.115.146", + "149.102.227.103", + "185.156.46.102", + "185.156.46.105", + "185.156.46.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Ashburn", + "hostname": "us-ash.prod.surfshark.com", + "wgpubkey": "9ef2f8mXHnAxx06lx4OxhtzASfJgv6YfEimuVyef6QE=", + "ips": [ + "37.19.206.34", + "37.19.206.51", + "45.144.115.26", + "45.144.115.34", + "45.144.115.50", + "45.144.115.146", + "149.102.227.103", + "185.156.46.102", + "185.156.46.105", + "185.156.46.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "hostname": "us-atl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Atlanta", + "ips": [ + "92.119.16.32", + "92.119.16.40", + "92.119.19.10", + "92.119.19.50", + "92.119.19.56", + "92.119.19.58", + "92.119.19.64", + "138.199.2.135", + "138.199.2.137", + "156.146.47.232", + "156.146.47.237", + "185.238.28.21", + "195.181.171.226", + "195.181.171.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "hostname": "us-atl.prod.surfshark.com", + "retroloc": "US Atlanta", + "wgpubkey": "SgciXll6wGQhcyxPUdp0V0z6WwN9P3fqDoeh3N3xNjc=", + "ips": [ + "92.119.16.32", + "92.119.16.40", + "92.119.19.10", + "92.119.19.50", + "92.119.19.56", + "92.119.19.58", + "92.119.19.64", + "138.199.2.135", + "138.199.2.137", + "156.146.47.232", + "156.146.47.237", + "185.238.28.21", + "195.181.171.226", + "195.181.171.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Bend", + "hostname": "us-bdn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Bend", + "ips": [ + "66.235.168.191", + "66.235.168.193", + "66.235.168.195", + "66.235.168.197", + "66.235.168.209", + "66.235.168.212", + "66.235.168.218", + "66.235.168.221", + "104.255.173.141", + "104.255.173.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Bend", + "hostname": "us-bdn.prod.surfshark.com", + "retroloc": "US Bend", + "wgpubkey": "YaxEFQHtwF/EGvf5s/aLlX5Jr0djKTV5oNcAcIwAz0E=", + "ips": [ + "66.235.168.191", + "66.235.168.193", + "66.235.168.195", + "66.235.168.197", + "66.235.168.209", + "66.235.168.212", + "66.235.168.218", + "66.235.168.221", + "104.255.173.141", + "104.255.173.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Boston", + "hostname": "us-bos.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Boston", + "ips": [ + "43.225.189.108", + "43.225.189.110", + "43.225.189.116", + "149.40.50.199", + "149.40.50.201", + "149.40.50.209", + "149.40.50.211", + "149.40.50.214", + "149.40.50.221" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Boston", + "hostname": "us-bos.prod.surfshark.com", + "retroloc": "US Boston", + "wgpubkey": "V0vpMcp0/586Y/q1EzW9PhM45JhypnCYgmrP0rzDEVw=", + "ips": [ + "43.225.189.108", + "43.225.189.110", + "43.225.189.116", + "149.40.50.199", + "149.40.50.201", + "149.40.50.209", + "149.40.50.211", + "149.40.50.214", + "149.40.50.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "hostname": "us-buf.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Buffalo", + "ips": [ + "172.93.148.163", + "172.93.148.165", + "172.93.148.171", + "172.93.148.179", + "172.93.148.181", + "172.93.148.187", + "172.93.148.189", + "172.93.153.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "hostname": "us-buf.prod.surfshark.com", + "retroloc": "US Buffalo", + "wgpubkey": "156ry2sOmv+I9KYTy2jR4/BLTnPT+Qn+DoCNqOon1ys=", + "ips": [ + "172.93.148.163", + "172.93.148.165", + "172.93.148.171", + "172.93.148.179", + "172.93.148.181", + "172.93.148.187", + "172.93.148.189", + "172.93.153.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "hostname": "us-clt.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Charlotte", + "ips": [ + "165.140.84.37", + "165.140.84.47", + "165.140.84.50", + "191.96.101.165", + "191.96.101.167", + "191.96.101.173", + "191.96.101.175", + "192.158.224.186", + "192.158.231.249", + "192.158.238.12", + "192.158.238.14", + "192.158.239.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "hostname": "us-clt.prod.surfshark.com", + "retroloc": "US Charlotte", + "wgpubkey": "tLnNDtNUOScxIU6t70ujsx1erSWOj9hWkWJD5iJwPwc=", + "ips": [ + "165.140.84.37", + "165.140.84.47", + "165.140.84.50", + "191.96.101.165", + "191.96.101.167", + "191.96.101.173", + "191.96.101.175", + "192.158.224.186", + "192.158.231.249", + "192.158.238.12", + "192.158.238.14", + "192.158.239.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "hostname": "us-chi.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Chicago", + "ips": [ + "138.199.42.129", + "138.199.42.135", + "138.199.42.141", + "138.199.42.166", + "138.199.42.171", + "138.199.42.184", + "143.244.60.167", + "143.244.60.182", + "149.34.240.97", + "149.34.240.102", + "149.34.240.107", + "149.34.240.112", + "154.47.25.11", + "154.47.25.98", + "154.47.25.100", + "154.47.25.112", + "185.246.209.55", + "185.246.209.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "hostname": "us-chi.prod.surfshark.com", + "retroloc": "US Chicago", + "wgpubkey": "DpMfulanF/MVHmt3AX4dqLqcyE0dpPqYBjDlWMaUI00=", + "ips": [ + "138.199.42.129", + "138.199.42.135", + "138.199.42.141", + "138.199.42.166", + "138.199.42.171", + "138.199.42.184", + "143.244.60.167", + "143.244.60.182", + "149.34.240.97", + "149.34.240.102", + "149.34.240.107", + "149.34.240.112", + "154.47.25.11", + "154.47.25.98", + "154.47.25.100", + "154.47.25.112", + "185.246.209.55", + "185.246.209.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "hostname": "us-dal.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Dallas", + "ips": [ + "2.56.189.72", + "2.56.189.82", + "2.56.189.96", + "2.56.189.98", + "2.56.189.106", + "2.56.189.114", + "2.56.189.122", + "2.56.189.176", + "2.56.189.178", + "37.19.200.98", + "37.19.200.103", + "37.19.200.105", + "37.19.200.110", + "37.19.200.114", + "169.150.254.71", + "169.150.254.73", + "169.150.254.78", + "169.150.254.81", + "169.150.254.89", + "169.150.254.101", + "212.102.40.66", + "212.102.40.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "hostname": "us-dal.prod.surfshark.com", + "retroloc": "US Dallas", + "wgpubkey": "0iwHQpV+rsOg38ogv4g4XMLJa51YqWY/yKWR9UEUMDk=", + "ips": [ + "2.56.189.72", + "2.56.189.82", + "2.56.189.96", + "2.56.189.98", + "2.56.189.106", + "2.56.189.114", + "2.56.189.122", + "2.56.189.176", + "2.56.189.178", + "37.19.200.98", + "37.19.200.103", + "37.19.200.105", + "37.19.200.110", + "37.19.200.114", + "169.150.254.71", + "169.150.254.73", + "169.150.254.78", + "169.150.254.81", + "169.150.254.89", + "169.150.254.101", + "212.102.40.66", + "212.102.40.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "hostname": "us-den.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Denver", + "ips": [ + "169.150.231.196", + "212.102.44.71", + "212.102.44.73", + "212.102.44.81", + "212.102.44.118", + "212.102.44.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "hostname": "us-den.prod.surfshark.com", + "retroloc": "US Denver", + "wgpubkey": "AnRLZKBwCfuGFZfoa3dsdjpcpvgFsQhASmjHXhIJLgM=", + "ips": [ + "169.150.231.196", + "212.102.44.71", + "212.102.44.73", + "212.102.44.81", + "212.102.44.118", + "212.102.44.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Detroit", + "hostname": "us-dtw.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Gahanna", + "ips": [ + "185.141.119.50", + "185.141.119.58", + "185.141.119.78", + "185.141.119.98", + "185.141.119.102", + "185.141.119.106", + "185.141.119.108", + "185.141.119.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Detroit", + "hostname": "us-dtw.prod.surfshark.com", + "retroloc": "US Gahanna", + "wgpubkey": "WFhlLK8H1pRzgMggza5NhBMjIcGhmsCqjR8+yFRfXhg=", + "ips": [ + "185.141.119.50", + "185.141.119.58", + "185.141.119.78", + "185.141.119.98", + "185.141.119.102", + "185.141.119.106", + "185.141.119.108", + "185.141.119.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Houston", + "hostname": "us-hou.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Houston", + "ips": [ + "37.19.221.66", + "37.19.221.76", + "37.19.221.78", + "37.19.221.84", + "37.19.221.88", + "37.19.221.91", + "107.179.20.155", + "107.179.20.157", + "107.179.20.163", + "107.179.20.173", + "107.179.20.181", + "107.179.20.195", + "107.179.20.197", + "107.179.20.203", + "107.179.20.205", + "107.179.20.213", + "149.40.58.2", + "149.40.58.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Houston", + "hostname": "us-hou.prod.surfshark.com", + "retroloc": "US Houston", + "wgpubkey": "1g84fGxVJokKXdMYEJKjN6/opyYN/YSHmrMyw0v6VnM=", + "ips": [ + "37.19.221.66", + "37.19.221.76", + "37.19.221.78", + "37.19.221.84", + "37.19.221.88", + "37.19.221.91", + "107.179.20.155", + "107.179.20.157", + "107.179.20.163", + "107.179.20.173", + "107.179.20.181", + "107.179.20.195", + "107.179.20.197", + "107.179.20.203", + "107.179.20.205", + "107.179.20.213", + "149.40.58.2", + "149.40.58.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "hostname": "us-kan.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Kansas City", + "ips": [ + "74.80.182.89", + "74.80.182.94", + "74.80.182.97", + "74.80.182.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "hostname": "us-kan.prod.surfshark.com", + "retroloc": "US Kansas City", + "wgpubkey": "SWN/jzfK69ucEUqQyPejKb9wWxwUoOgG37YlgeCmvjg=", + "ips": [ + "74.80.182.89", + "74.80.182.94", + "74.80.182.97", + "74.80.182.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Las Vegas", + "hostname": "us-las.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Las Vegas", + "ips": [ + "45.89.173.179", + "45.89.173.181", + "45.89.173.211", + "79.110.53.11", + "185.242.5.229", + "185.242.5.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Las Vegas", + "hostname": "us-las.prod.surfshark.com", + "retroloc": "US Las Vegas", + "wgpubkey": "Nw5CG5BOvqb8GXVEKLOo7v3gGvP7WaUYlJT++c3c31g=", + "ips": [ + "45.89.173.179", + "45.89.173.181", + "45.89.173.211", + "79.110.53.11", + "185.242.5.229", + "185.242.5.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Latham", + "hostname": "us-ltm.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Latham", + "ips": [ + "154.16.169.91", + "154.16.169.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Latham", + "hostname": "us-ltm.prod.surfshark.com", + "retroloc": "US Latham", + "wgpubkey": "Smruh1SmMqi7CecjV/+yI4Sy62gpAr+Uddq+9K6iLB0=", + "ips": [ + "154.16.169.91", + "154.16.169.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "hostname": "us-lax.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Los Angeles", + "ips": [ + "89.187.187.76", + "89.187.187.88", + "138.199.35.7", + "169.150.203.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "hostname": "us-lax.prod.surfshark.com", + "retroloc": "US Los Angeles", + "wgpubkey": "m+L7BVQWDwU2TxjfspMRLkRctvmo7fOkd+eVk6KC5lM=", + "ips": [ + "89.187.187.76", + "89.187.187.88", + "138.199.35.7", + "169.150.203.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "hostname": "us-mia.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Miami", + "ips": [ + "89.38.227.187", + "89.187.173.201", + "146.70.45.171", + "146.70.45.181", + "146.70.183.197", + "146.70.183.205", + "149.34.250.56", + "149.102.224.194", + "149.102.224.199", + "149.102.224.201", + "149.102.224.204", + "149.102.224.211", + "149.102.224.214", + "212.102.61.136", + "212.102.61.138", + "212.102.61.146", + "212.102.61.148", + "212.102.61.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "hostname": "us-mia.prod.surfshark.com", + "retroloc": "US Miami", + "wgpubkey": "KvJ/jtWb8BsBI85OcZnOIJu9kfh12mCMR4cejWFpDCc=", + "ips": [ + "89.38.227.187", + "89.187.173.201", + "146.70.45.171", + "146.70.45.181", + "146.70.183.197", + "146.70.183.205", + "149.34.250.56", + "149.102.224.194", + "149.102.224.199", + "149.102.224.201", + "149.102.224.204", + "149.102.224.211", + "149.102.224.214", + "212.102.61.136", + "212.102.61.138", + "212.102.61.146", + "212.102.61.148", + "212.102.61.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City mp001", + "ips": [ + "45.55.60.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st001", + "ips": [ + "92.119.177.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st001.prod.surfshark.com", + "retroloc": "US New York City st001", + "wgpubkey": "7UmSjyjD6Sf4AnjYpBQGQYx9IGYa/sM8mZOQ+yJ5REo=", + "ips": [ + "92.119.177.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st002", + "ips": [ + "92.119.177.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st002.prod.surfshark.com", + "retroloc": "US New York City st002", + "wgpubkey": "PWjVpuAt3zKbKrxc30uiq2jOzKAVEZU402isK6Bunwc=", + "ips": [ + "92.119.177.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st003", + "ips": [ + "92.119.177.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st003.prod.surfshark.com", + "retroloc": "US New York City st003", + "wgpubkey": "nuqSzswFHh7PK/NdEmfXIe/UYgZlc+L7shI5e6OMUH4=", + "ips": [ + "92.119.177.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st004", + "ips": [ + "193.148.18.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st004.prod.surfshark.com", + "retroloc": "US New York City st004", + "wgpubkey": "RQ3ZRcXYnTl5lRjTuEolYsTfBRFtIeiZirFkBdcKw14=", + "ips": [ + "193.148.18.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st005", + "ips": [ + "193.148.18.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st005.prod.surfshark.com", + "retroloc": "US New York City st005", + "wgpubkey": "5/AGlscGX/hFpNuAq06M+gIP1HUxfbox+0Pi4M9ybjE=", + "ips": [ + "193.148.18.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City", + "ips": [ + "84.17.35.66", + "84.17.35.101", + "84.17.35.106", + "91.246.58.138", + "91.246.58.178", + "138.199.40.167", + "138.199.40.169", + "138.199.40.172", + "138.199.40.184", + "146.70.186.147", + "146.70.186.155", + "194.33.45.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc.prod.surfshark.com", + "retroloc": "US New York City", + "wgpubkey": "rhuoCmHdyYrh0zW3J0YXZK4aN3It7DD26TXlACuWnwU=", + "ips": [ + "84.17.35.66", + "84.17.35.101", + "84.17.35.106", + "91.246.58.138", + "91.246.58.178", + "138.199.40.167", + "138.199.40.169", + "138.199.40.172", + "138.199.40.184", + "146.70.186.147", + "146.70.186.155", + "194.33.45.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "hostname": "us-phx.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Phoenix", + "ips": [ + "45.86.208.8", + "45.86.208.24", + "45.86.208.26", + "45.86.208.112", + "45.86.208.120", + "45.86.208.122", + "45.86.211.1", + "45.86.211.16", + "45.86.211.58", + "45.86.211.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "hostname": "us-phx.prod.surfshark.com", + "retroloc": "US Phoenix", + "wgpubkey": "HDCyeD2+lw6KHVMu7Opkt4V4ikYZHzQNWmwklBMb4Ac=", + "ips": [ + "45.86.208.8", + "45.86.208.24", + "45.86.208.26", + "45.86.208.112", + "45.86.208.120", + "45.86.208.122", + "45.86.211.1", + "45.86.211.16", + "45.86.211.58", + "45.86.211.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "hostname": "us-slc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Salt Lake City", + "ips": [ + "93.152.220.155", + "93.152.220.160", + "93.152.220.162", + "93.152.220.165", + "93.152.220.167", + "93.152.220.172", + "93.152.220.229", + "93.152.220.231", + "93.152.220.245", + "93.152.220.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "hostname": "us-slc.prod.surfshark.com", + "retroloc": "US Salt Lake City", + "wgpubkey": "jxotWPy1jNzKzjqSqg6KkWnoOsp/FbrTK4+j9gluSFA=", + "ips": [ + "93.152.220.155", + "93.152.220.160", + "93.152.220.162", + "93.152.220.165", + "93.152.220.167", + "93.152.220.172", + "93.152.220.229", + "93.152.220.231", + "93.152.220.245", + "93.152.220.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US San Francisco mp001", + "ips": [ + "165.232.53.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US San Francisco", + "ips": [ + "93.152.210.166", + "93.152.210.171", + "93.152.210.178", + "93.152.210.183", + "93.152.210.193", + "93.152.210.196", + "93.152.210.198", + "93.152.210.206", + "93.152.210.208", + "93.152.210.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo.prod.surfshark.com", + "retroloc": "US San Francisco", + "wgpubkey": "7SpGSSI78hf8jy689ec5Ql0/Gsq0LLHDmjEFsGUWl1k=", + "ips": [ + "93.152.210.166", + "93.152.210.171", + "93.152.210.178", + "93.152.210.183", + "93.152.210.193", + "93.152.210.196", + "93.152.210.198", + "93.152.210.206", + "93.152.210.208", + "93.152.210.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Jose", + "hostname": "us-sjc.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "149.36.48.68", + "149.36.48.77", + "149.36.48.82", + "149.36.48.164", + "156.146.54.53", + "156.146.54.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Jose", + "hostname": "us-sjc.prod.surfshark.com", + "wgpubkey": "sDDS1f/+IqVljMN7GzMFeAbNescQUTLIt0xio0W61Q0=", + "ips": [ + "149.36.48.68", + "149.36.48.77", + "149.36.48.82", + "149.36.48.164", + "156.146.54.53", + "156.146.54.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "hostname": "us-sea.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Seatle", + "ips": [ + "84.17.41.75", + "138.199.12.52", + "138.199.12.55", + "149.102.254.4", + "149.102.254.7", + "149.102.254.9", + "149.102.254.29", + "212.102.46.35", + "212.102.46.39", + "212.102.46.42", + "212.102.46.45", + "212.102.46.46", + "212.102.46.51", + "212.102.46.54", + "212.102.46.65", + "212.102.46.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "hostname": "us-sea.prod.surfshark.com", + "retroloc": "US Seatle", + "wgpubkey": "SpMH/p90bg9ZAG6V2DWJQ9csWPVnKcDVppIp9Xul5G8=", + "ips": [ + "84.17.41.75", + "138.199.12.52", + "138.199.12.55", + "149.102.254.4", + "149.102.254.7", + "149.102.254.9", + "149.102.254.29", + "212.102.46.35", + "212.102.46.39", + "212.102.46.42", + "212.102.46.45", + "212.102.46.46", + "212.102.46.51", + "212.102.46.54", + "212.102.46.65", + "212.102.46.69" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "hostname": "uy-mvd.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "212.119.32.18", + "212.119.32.36" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "hostname": "uy-mvd.prod.surfshark.com", + "wgpubkey": "N4HQsZ7deamq3itB5Pmj9MhtjjDNYKY4YfiUFkfWlBo=", + "ips": [ + "212.119.32.18", + "212.119.32.36" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "hostname": "uz-tas.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "94.154.124.18", + "94.154.124.20", + "94.154.124.34", + "94.154.124.36" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "hostname": "uz-tas.prod.surfshark.com", + "wgpubkey": "CX6N+j5AfK2LVl3tfAop6/oXFb15tCnuDbPy7CbrKXw=", + "ips": [ + "94.154.124.18", + "94.154.124.20", + "94.154.124.34", + "94.154.124.36" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "hostname": "ve-car.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.149.3.18", + "45.149.3.20", + "45.149.3.34", + "45.149.3.36" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "hostname": "ve-car.prod.surfshark.com", + "wgpubkey": "fK7yvbWdPrpginzYzhQu7IT6J+Mf18/K+VNrwyXqriU=", + "ips": [ + "45.149.3.18", + "45.149.3.20", + "45.149.3.34", + "45.149.3.36" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Ho Chi Minh City", + "hostname": "vn-hcm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "83.97.112.34", + "83.97.112.36" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Ho Chi Minh City", + "hostname": "vn-hcm.prod.surfshark.com", + "wgpubkey": "Mioou38fh5H+3LWMpitLOWT3JaDGg2gXxqjl2eXkPFU=", + "ips": [ + "83.97.112.34", + "83.97.112.36" + ] + } + ] + }, + "torguard": { + "version": 3, + "timestamp": 1689696112, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "93.115.35.98", + "93.115.35.106", + "93.115.35.114", + "93.115.35.122", + "93.115.35.130", + "93.115.35.138", + "93.115.35.146", + "93.115.35.154", + "193.56.253.18", + "193.56.253.34", + "193.56.253.50", + "193.56.253.66", + "193.56.253.82", + "193.56.253.98", + "193.56.253.114", + "193.56.253.130", + "217.138.205.98", + "217.138.205.106", + "217.138.205.114", + "217.138.205.202", + "217.138.205.210", + "217.138.205.218" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "aus.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.2", + "37.120.155.10", + "37.120.155.18", + "37.120.155.26", + "37.120.155.34" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "bg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.73.130", + "89.249.73.162", + "89.249.73.170", + "89.249.73.250", + "185.104.186.2", + "185.232.21.34", + "185.232.21.42", + "185.232.21.210", + "185.232.21.242", + "185.232.21.250", + "194.187.251.34" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.180.130", + "45.133.180.138", + "45.133.180.146", + "45.133.180.154", + "45.133.180.162" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "bul.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.170", + "82.102.23.178", + "82.102.23.186", + "82.102.23.194", + "82.102.23.202", + "82.102.23.210", + "82.102.23.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "ca.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.137.2", + "146.70.137.18", + "146.70.137.34", + "146.70.137.42", + "146.70.137.50", + "146.70.137.58", + "146.70.137.66", + "146.70.137.74", + "146.70.137.82", + "146.70.137.90", + "146.70.137.98", + "146.70.137.106", + "146.70.137.114", + "146.70.137.122", + "146.70.137.130", + "146.70.137.138", + "146.70.137.146", + "146.70.137.154", + "146.70.137.194", + "146.70.137.210", + "146.70.137.218", + "146.70.137.226" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "cavan.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "107.181.189.34", + "107.181.189.35", + "107.181.189.36", + "107.181.189.37", + "107.181.189.38", + "107.181.189.39", + "107.181.189.40", + "107.181.189.41", + "107.181.189.42", + "107.181.189.43", + "107.181.189.44", + "107.181.189.45", + "107.181.189.46", + "107.181.189.47", + "107.181.189.48" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "ch.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.52.19", + "37.235.52.64", + "193.235.146.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech", + "hostname": "cz.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.115.98", + "185.189.115.103", + "185.189.115.108", + "185.189.115.113", + "185.189.115.118" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dn.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.138", + "2.58.46.146", + "2.58.46.154", + "2.58.46.162", + "2.58.46.170", + "2.58.46.178", + "45.12.221.2", + "45.12.221.10", + "45.12.221.18", + "45.12.221.26", + "45.12.221.34", + "45.12.221.42", + "185.245.84.74" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "fn.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.197.186", + "91.132.197.188", + "91.132.197.192" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "fr.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.158.138", + "93.177.75.2", + "93.177.75.10", + "93.177.75.26", + "93.177.75.34", + "93.177.75.42", + "93.177.75.50", + "93.177.75.58", + "93.177.75.66", + "93.177.75.74", + "93.177.75.90", + "93.177.75.98", + "93.177.75.106", + "93.177.75.114", + "93.177.75.122", + "93.177.75.130", + "93.177.75.138", + "93.177.75.146", + "93.177.75.154", + "93.177.75.162", + "93.177.75.202", + "93.177.75.218" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "ger.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.73.66", + "93.177.73.74", + "93.177.73.82", + "93.177.73.90", + "93.177.73.98", + "93.177.73.106", + "93.177.73.114", + "93.177.73.122", + "93.177.73.130", + "93.177.73.138", + "93.177.73.146", + "93.177.73.154", + "93.177.73.194", + "93.177.73.202", + "93.177.73.210", + "93.177.73.218", + "93.177.73.226", + "93.177.73.234" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "gre.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.92.33.2", + "45.92.33.10", + "45.92.33.18" + ] + }, + { + "vpn": "openvpn", + "country": "Hong", + "city": "Kong", + "hostname": "hk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.104.82", + "86.107.104.90", + "86.107.104.98", + "86.107.104.106", + "89.45.6.18", + "89.45.6.202", + "89.45.6.210", + "89.45.6.218", + "89.45.6.226", + "89.45.6.234" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.98", + "37.120.144.106" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "ice.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.192.210", + "45.133.192.214", + "45.133.192.218", + "45.133.192.226", + "45.133.192.230", + "45.133.192.234", + "45.133.192.250", + "45.133.192.254" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Bangalore", + "hostname": "in.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.142.10", + "146.70.142.34", + "146.70.142.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "ire.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.58", + "77.81.139.66", + "77.81.139.74", + "77.81.139.82", + "77.81.139.90" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "isr-loc1.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.191.204.154", + "185.191.204.155" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "it.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.14", + "45.9.251.178", + "45.9.251.182", + "185.128.27.106", + "192.145.127.190" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "jp.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.58", + "146.70.76.66", + "146.70.76.74", + "146.70.76.82", + "146.70.76.90", + "146.70.76.98", + "146.70.76.106", + "146.70.76.114" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lux.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.204.58", + "5.253.204.66", + "5.253.204.74", + "5.253.204.82" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.180.2", + "45.133.180.10", + "45.133.180.18", + "45.133.180.26", + "45.133.180.34" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "md.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.131.106", + "178.175.131.114", + "178.175.138.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.172.146", + "206.217.216.3", + "206.217.216.6", + "206.217.216.7", + "206.217.216.9", + "206.217.216.10", + "206.217.216.11", + "206.217.216.12", + "206.217.216.13", + "206.217.216.14", + "206.217.216.15", + "206.217.216.16", + "206.217.216.17", + "206.217.216.18", + "206.217.216.19", + "206.217.216.20", + "206.217.216.21", + "206.217.216.22", + "206.217.216.23", + "206.217.216.24", + "206.217.216.25", + "206.217.216.26", + "206.217.216.27", + "206.217.216.28" + ] + }, + { + "vpn": "openvpn", + "country": "New", + "city": "Zealand", + "hostname": "nz.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "103.108.94.50", + "103.108.94.58", + "103.231.90.2", + "103.231.90.10", + "103.231.90.18", + "103.231.90.26", + "103.231.90.34", + "103.231.90.42", + "103.231.90.202" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "no.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.125.168.247", + "185.125.168.248", + "185.125.169.24", + "185.125.169.25", + "185.125.169.26", + "185.125.169.27", + "185.125.169.29", + "185.125.169.30", + "185.125.169.31", + "185.125.169.32", + "185.181.61.36", + "185.181.61.37", + "185.181.61.39", + "185.181.61.40", + "185.181.61.151" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "pl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.170", + "37.120.156.178", + "37.120.156.186", + "37.120.156.194", + "37.120.156.202" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "pg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.179.65", + "94.46.179.70", + "94.46.179.80" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "ro.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "31.14.252.18", + "31.14.252.90", + "31.14.252.146", + "31.14.252.178", + "89.40.71.106", + "89.46.103.106", + "93.120.27.162", + "185.45.14.122", + "185.45.14.250", + "185.45.15.106", + "194.59.248.202", + "194.59.248.210" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.25.2", + "82.102.25.226", + "91.245.253.134", + "91.245.253.138", + "92.119.178.22", + "92.119.178.26", + "185.200.116.250", + "185.200.117.138", + "185.200.117.142", + "185.200.117.186" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "slk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.122", + "193.37.255.130", + "193.37.255.138", + "193.37.255.146", + "193.37.255.162" + ] + }, + { + "vpn": "openvpn", + "country": "South", + "city": "Korea", + "hostname": "sk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "172.107.248.154", + "172.107.248.162", + "172.107.248.170", + "172.107.248.178", + "172.107.248.194" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "sp.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.178.206", + "89.238.178.234", + "192.145.124.174", + "192.145.124.186", + "192.145.124.190", + "192.145.124.226", + "192.145.124.230", + "192.145.124.234", + "192.145.124.238", + "192.145.124.242" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "swe.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.153.2", + "37.120.153.7", + "37.120.153.12", + "37.120.153.17", + "37.120.153.22", + "37.120.153.27", + "37.120.153.32", + "37.120.153.37", + "37.120.153.42", + "37.120.153.47", + "37.120.153.52", + "37.120.153.57", + "37.120.153.62", + "37.120.153.67", + "37.120.153.72", + "37.120.153.77", + "37.120.153.82", + "37.120.153.87", + "37.120.153.92", + "37.120.153.97", + "37.120.153.102", + "37.120.153.107" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "swiss.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.210", + "185.236.201.215", + "195.206.105.2", + "195.206.105.7", + "195.206.105.12", + "195.206.105.17", + "195.206.105.22", + "195.206.105.27", + "195.206.105.32", + "195.206.105.37", + "195.206.105.42", + "195.206.105.47", + "195.206.105.52", + "195.206.105.57", + "217.138.203.154", + "217.138.203.242" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "tw.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.181.66" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "th.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "202.129.16.42", + "202.129.16.104", + "202.129.16.106", + "202.129.16.140", + "202.129.16.143" + ] + }, + { + "vpn": "openvpn", + "country": "UAE", + "hostname": "uae.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.158", + "45.9.249.238", + "45.9.250.10" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.198.162", + "146.70.83.130", + "146.70.83.146", + "146.70.83.154", + "146.70.83.162", + "146.70.83.170", + "146.70.83.178", + "146.70.83.186", + "146.70.83.194", + "146.70.83.202", + "146.70.83.210", + "146.70.83.218", + "146.70.83.226", + "146.70.83.234", + "146.70.83.242", + "146.70.83.250", + "146.70.95.18", + "146.70.95.34", + "146.70.95.42", + "146.70.95.50", + "146.70.95.58", + "146.70.95.66", + "185.253.98.42" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "us-atl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.57.2", + "146.70.57.10", + "146.70.57.18", + "146.70.57.26", + "146.70.57.34", + "146.70.57.42", + "146.70.57.50", + "146.70.57.58", + "146.70.57.66", + "146.70.57.74" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "us-chi-loc2.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.63.98", + "64.44.140.250", + "167.88.3.210", + "167.88.15.50" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "us-dal.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.147.98", + "64.44.147.106", + "64.44.147.114", + "64.44.147.122", + "146.70.50.2", + "146.70.50.10", + "146.70.50.18", + "146.70.50.26", + "146.70.50.34", + "146.70.50.42", + "146.70.50.50", + "146.70.50.58", + "146.70.50.66", + "146.70.50.74", + "146.70.50.82", + "146.70.50.90", + "146.70.50.98", + "146.70.50.106", + "146.70.50.114", + "146.70.50.122", + "146.70.50.130", + "146.70.50.138", + "146.70.50.146", + "146.70.50.154", + "146.70.50.162", + "146.70.50.170", + "146.70.50.178", + "146.70.50.186", + "146.70.50.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Las Vegas", + "hostname": "us-lv.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.147.234", + "37.120.147.242", + "37.120.147.250", + "45.89.173.98", + "45.89.173.106", + "45.89.173.114", + "45.89.173.122", + "45.89.173.162", + "185.242.5.66", + "185.242.5.74", + "185.242.5.82", + "185.242.5.90", + "185.242.5.162", + "185.242.5.170", + "185.242.5.178", + "185.242.5.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "us-la.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.147.130", + "37.120.214.114", + "37.120.214.122", + "91.219.212.242", + "91.219.212.250", + "139.28.216.74", + "139.28.216.218", + "146.70.49.2", + "146.70.49.10", + "146.70.49.18", + "146.70.49.26", + "146.70.49.34", + "146.70.49.42", + "146.70.49.50", + "146.70.49.58", + "146.70.49.66", + "146.70.49.74", + "146.70.49.82", + "146.70.49.90", + "146.70.49.98", + "146.70.49.106", + "146.70.49.114", + "185.253.161.186", + "217.138.217.2" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "us-fl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.51.2", + "146.70.51.10", + "146.70.51.18", + "146.70.51.26", + "146.70.51.34", + "146.70.51.42", + "146.70.51.50", + "146.70.51.58", + "146.70.51.66", + "146.70.51.74", + "146.70.51.82", + "146.70.51.90", + "146.70.51.98", + "146.70.51.106", + "146.70.51.114", + "146.70.51.122", + "146.70.51.130", + "146.70.51.138", + "146.70.51.146", + "146.70.51.154", + "146.70.51.162", + "146.70.51.170", + "146.70.51.178", + "146.70.51.186", + "146.70.51.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "us-nj.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.34.2", + "146.70.34.10", + "146.70.34.18", + "146.70.34.26", + "146.70.34.34", + "146.70.34.42", + "146.70.34.50", + "146.70.34.58", + "146.70.34.66", + "146.70.34.74", + "146.70.34.82", + "146.70.34.90", + "146.70.34.98", + "146.70.34.106", + "146.70.34.114", + "146.70.34.122", + "146.70.34.130", + "146.70.34.138", + "146.70.34.146", + "146.70.34.154", + "146.70.34.162", + "146.70.34.170", + "146.70.34.178", + "146.70.34.186", + "146.70.34.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "us-ny.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "67.213.221.3", + "67.213.221.4", + "67.213.221.5", + "67.213.221.6", + "67.213.221.7", + "67.213.221.8", + "67.213.221.9", + "67.213.221.10", + "67.213.221.11", + "67.213.221.12", + "67.213.221.14", + "67.213.221.15", + "67.213.221.16", + "67.213.221.17", + "67.213.221.18", + "67.213.221.19", + "67.213.221.20", + "67.213.221.22", + "67.213.221.23", + "67.213.221.24", + "67.213.221.25", + "67.213.221.26", + "67.213.221.27" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Francisco", + "hostname": "us-sf.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "143.198.101.109", + "167.99.103.222", + "167.99.109.166", + "167.99.163.123", + "167.99.171.156", + "206.189.64.78", + "206.189.64.126", + "206.189.169.41", + "206.189.208.52", + "206.189.208.113", + "206.189.214.46", + "206.189.214.52", + "206.189.218.112", + "206.189.218.114", + "206.189.218.238" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "us-sa.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "199.229.250.34", + "199.229.250.38", + "199.229.250.42", + "199.229.250.66", + "199.229.250.74", + "199.229.250.78", + "199.229.250.82", + "199.229.250.86", + "199.229.250.90", + "199.229.250.94", + "199.229.250.106", + "199.229.250.114", + "199.229.250.118", + "199.229.250.122", + "199.229.250.130", + "199.229.250.131", + "199.229.250.133", + "199.229.250.134", + "199.229.250.135", + "199.229.250.136", + "199.229.250.137", + "199.229.250.138", + "199.229.250.140", + "199.229.250.142", + "199.229.250.146", + "199.229.250.149" + ] + }, + { + "vpn": "openvpn", + "country": "serbia", + "hostname": "serbia.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.54.90", + "146.70.54.98" + ] + } + ] + }, + "vpn unlimited": { + "version": 1, + "timestamp": 1708534611, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-syd.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.79.239.47", + "139.99.130.220", + "139.99.131.38", + "170.64.132.24", + "170.64.132.105", + "170.64.132.155", + "170.64.132.164", + "170.64.132.166", + "170.64.132.168" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "at.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "50.7.115.19", + "95.164.36.217", + "95.164.36.221", + "95.164.36.222", + "95.164.36.223", + "176.120.65.51", + "176.120.65.52" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "be.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.143.178" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "hostname": "ba.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.164.35.37" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "216.238.105.38", + "216.238.111.125", + "216.238.116.106", + "216.238.117.122", + "216.238.117.129" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "bg.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "77.91.100.3", + "77.91.100.61", + "77.91.100.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "ca.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "192.99.6.164", + "192.99.6.166", + "192.99.7.170", + "192.99.14.158", + "192.99.37.199" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "ca-tr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "104.254.90.34", + "104.254.90.58", + "162.253.131.106", + "184.75.213.42", + "184.75.213.50", + "184.75.213.194", + "204.187.100.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "ca-vn.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "162.221.202.17" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "cr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "145.14.131.24", + "145.14.131.50", + "145.14.131.59", + "145.14.131.81", + "145.14.131.173", + "145.14.131.176", + "145.14.131.187", + "145.14.131.194" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "hr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "85.10.51.3", + "85.10.56.3", + "85.10.56.4", + "85.10.56.100" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "cy.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "194.30.136.102", + "194.30.136.123" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "cz.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.97.31", + "94.131.97.159", + "94.131.97.199", + "185.216.35.46" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.194.174", + "89.45.7.90", + "185.206.224.50" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "ee.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.181.23.37", + "94.131.15.52", + "95.164.8.18" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "fi.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.159.249.138", + "45.159.249.162", + "45.159.249.205" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "fr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "51.159.99.123", + "62.210.38.83", + "62.210.132.5", + "62.210.132.12", + "62.210.188.244", + "62.210.204.161", + "62.210.206.27", + "62.210.207.15", + "195.154.166.20", + "195.154.169.66", + "195.154.199.175", + "195.154.204.36", + "195.154.221.54", + "195.154.222.168" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Roubaix", + "hostname": "fr-rbx.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "51.255.71.16", + "147.135.137.107", + "151.80.27.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Düsseldorf", + "hostname": "de-dus.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "85.14.243.42", + "146.0.32.121", + "146.0.42.77" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "gr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.8.45", + "94.131.8.47" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hu.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.182.38.132", + "5.182.38.193", + "77.91.72.105" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "is.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.194.161.20", + "91.194.161.21", + "91.194.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "in.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "162.218.95.14", + "198.145.227.50", + "198.145.227.51", + "198.145.227.52", + "198.145.227.53", + "198.145.227.54", + "198.145.227.55", + "198.145.227.56", + "198.145.227.57", + "198.145.227.58", + "198.145.227.59", + "198.145.227.60", + "198.145.227.61", + "198.145.227.62", + "198.145.227.63", + "198.145.227.64", + "198.145.227.65", + "198.145.227.66", + "198.145.227.67", + "198.145.227.68", + "198.145.227.69", + "198.145.227.70" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-dub.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.108.129.58", + "188.241.178.118", + "194.4.51.233", + "194.4.51.234", + "194.4.51.235" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "im.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.235.55.14", + "37.235.55.45", + "37.235.55.57", + "37.235.55.62", + "37.235.55.68", + "37.235.55.240", + "192.71.211.15" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "il.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.225.218.142", + "91.225.218.143", + "91.225.218.144", + "193.182.144.23" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "it-mil.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.193.5.50" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "jp.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.76.49.6", + "45.76.220.224", + "66.42.38.10", + "85.208.110.122", + "107.191.60.241", + "108.160.139.177", + "139.162.125.238", + "139.180.197.252", + "139.180.206.179" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "kr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "141.164.34.194", + "141.164.39.45", + "158.247.213.101" + ] + }, + { + "vpn": "openvpn", + "country": "Kuala Lumpur", + "hostname": "mys.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "111.90.141.34" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "lt.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.14.222", + "94.131.14.223", + "94.131.14.224", + "94.131.14.225", + "94.131.14.226" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "216.238.66.6", + "216.238.66.40", + "216.238.69.229", + "216.238.72.203", + "216.238.73.64", + "216.238.73.252", + "216.238.75.254", + "216.238.76.115", + "216.238.77.95", + "216.238.78.81", + "216.238.79.163", + "216.238.79.200", + "216.238.80.169", + "216.238.81.55", + "216.238.82.61", + "216.238.83.73" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "md.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.67.229.191", + "45.67.229.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.32.236.232", + "50.7.176.51", + "50.7.176.116", + "82.196.12.12", + "95.85.21.9", + "95.85.21.11", + "95.85.21.12", + "95.85.21.13", + "95.179.150.23", + "199.247.27.95" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "nz.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.99.133.64", + "185.99.133.177" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "no.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.225.217.27", + "91.225.217.28", + "91.225.217.29", + "91.225.217.30", + "91.225.217.31" + ] + }, + { + "vpn": "openvpn", + "country": "Oman", + "hostname": "om.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.226.124.110" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "pl.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.156.234" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "pt.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.10.98", + "94.131.10.99", + "94.131.10.100", + "94.131.10.101" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "ro.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "77.81.98.70", + "185.144.83.11", + "185.144.83.13" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg-free.vpnunlimitedapp.com", + "udp": true, + "free": true, + "ips": [ + "178.128.48.177", + "178.128.117.139", + "188.166.177.236", + "206.189.80.158" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "139.99.62.61", + "143.198.207.137", + "143.198.207.145", + "143.198.207.218", + "143.198.208.19", + "143.198.208.211", + "143.198.212.21", + "143.198.216.60", + "143.198.216.119", + "143.198.216.142", + "143.198.216.213", + "159.65.0.220", + "159.223.48.163", + "159.223.63.231", + "159.223.85.125", + "159.223.91.73", + "174.138.22.2", + "174.138.24.49", + "178.128.85.6", + "178.128.107.38", + "209.97.161.18" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "sk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.252.23.93", + "5.252.23.194", + "45.89.54.32", + "45.89.54.232", + "45.89.54.234" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "si.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.132.94.91", + "91.132.94.240", + "192.71.244.28", + "192.71.244.38" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "za.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "129.232.129.157", + "129.232.130.179", + "129.232.130.186", + "129.232.130.187", + "129.232.133.41", + "129.232.134.122", + "129.232.219.195", + "129.232.219.196" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "es.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "65.20.97.197", + "176.120.74.254", + "185.231.204.2", + "185.231.204.4", + "185.231.204.9", + "185.231.204.14", + "185.231.204.16", + "208.85.19.114", + "208.85.21.129" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "se.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "70.34.201.81", + "70.34.202.181", + "70.34.214.117", + "94.131.98.211", + "94.131.98.217", + "94.131.98.218", + "94.131.115.4", + "94.131.115.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "ch.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.12.81", + "94.131.12.83", + "94.131.12.90", + "94.131.12.96", + "94.131.12.104", + "94.131.12.116" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "th.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.64.186.97" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "tr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.17.115.62", + "185.73.202.218", + "185.123.101.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "ae.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.9.249.201", + "45.9.249.202", + "45.9.249.209", + "45.9.249.211", + "45.9.249.216", + "45.9.250.143", + "45.9.250.145", + "147.78.0.91", + "147.78.0.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "uk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.152.213.186", + "77.245.65.2", + "88.150.180.82", + "88.150.224.74", + "176.227.198.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-cv.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.101.143.66", + "5.101.169.146", + "178.159.10.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-lon.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.101.136.154", + "78.110.160.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "us-stream.vpnunlimitedapp.com", + "udp": true, + "stream": true, + "ips": [ + "64.227.111.143", + "128.199.9.51", + "138.197.203.142", + "143.110.156.9", + "143.110.225.79", + "159.89.128.183", + "161.35.236.242", + "164.90.144.44", + "165.227.49.171", + "167.99.96.113", + "178.128.79.75", + "192.241.194.208", + "198.199.96.52", + "198.199.97.247", + "198.199.103.88", + "198.199.103.243", + "198.199.105.87", + "198.199.114.155", + "206.189.165.44", + "206.189.211.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "us.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "108.181.57.249", + "108.181.132.151", + "108.181.132.193", + "108.181.132.195", + "172.106.167.229", + "199.115.117.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "us-chi.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "66.23.205.226", + "108.181.62.129", + "108.181.62.187", + "108.181.62.189", + "108.181.62.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "us-dal.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "172.241.113.19", + "172.241.115.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "us-den.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.237.26.20", + "23.237.26.25", + "23.237.26.26", + "23.237.26.67", + "23.237.26.68", + "23.237.26.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "us-hou.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "66.187.75.122", + "162.218.228.194", + "162.218.228.196", + "162.218.229.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "us-lv.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.242.5.18", + "185.242.5.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "us-la.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.83.37.209", + "23.83.37.213", + "45.136.131.40", + "64.31.33.154", + "69.162.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "us-mia.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.32.174.147", + "45.77.74.249", + "45.77.95.122", + "45.77.161.227", + "45.77.165.103", + "45.77.196.77", + "140.82.29.71", + "144.202.44.138", + "144.202.44.229", + "149.28.111.111", + "207.246.75.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "us-ny-free.vpnunlimitedapp.com", + "udp": true, + "free": true, + "ips": [ + "64.227.9.14", + "137.184.131.0", + "137.184.199.252", + "137.184.218.195", + "143.198.124.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "us-ny.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.105.134.162", + "64.42.178.202", + "64.42.178.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "hostname": "us-slc.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "209.95.53.223", + "209.95.53.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Francisco", + "hostname": "us-sf.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "209.58.135.75", + "209.58.135.106", + "209.58.137.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "us-sea.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.81.209.137", + "64.120.123.48", + "108.62.60.89", + "216.244.82.50" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "vn.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "146.196.67.7" + ] + } + ] + }, + "vpnsecure": { + "version": 1, + "timestamp": 1714383841, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "103.75.119.47" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "109.104.155.30" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca0.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "198.100.159.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "149.56.46.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "158.69.7.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "158.69.7.185" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Flanders", + "city": "Antwerp", + "hostname": "fr2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "5.135.35.186" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Flanders", + "city": "Antwerp", + "hostname": "fr4.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "5.135.35.180" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Hauts-de-France", + "city": "Roubaix", + "hostname": "fr1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "151.80.148.41" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Hauts-de-France", + "city": "Roubaix", + "hostname": "fr3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "151.80.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Maharashtra", + "city": "Mumbai", + "hostname": "in1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "103.26.10.96" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie1.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.197.164" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.199.37" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.196.102" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Île-de-France", + "city": "Paris", + "hostname": "nl1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "51.158.252.2" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Lower Silesia", + "city": "Wroclaw", + "hostname": "pl1.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "87.98.234.252" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "region": "Moscow", + "city": "Moscow", + "hostname": "ru1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.56.143" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "region": "Moscow", + "city": "Moscow", + "hostname": "ru2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "213.183.56.232" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Kyiv City", + "city": "Kyiv", + "hostname": "ua1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.38.117" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Kyiv City", + "city": "Kyiv", + "hostname": "ua2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "139.28.39.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Erith", + "hostname": "uk2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "51.195.174.153" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Erith", + "hostname": "uk4.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "51.195.174.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us10.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us6.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us7.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us8.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us9.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us3.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us4.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us5.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.30" + ] + } + ] + }, + "vyprvpn": { + "version": 3, + "timestamp": 1709814473, + "servers": [ + { + "vpn": "openvpn", + "region": "Algeria", + "hostname": "dz1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.104.254" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "hostname": "ar1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Melbourne", + "hostname": "au2.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Perth", + "hostname": "au3.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Sydney", + "hostname": "au1.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.18" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "hostname": "at1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.148.254" + ] + }, + { + "vpn": "openvpn", + "region": "Bahrain", + "hostname": "bh1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.63.254" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "hostname": "be1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.145.254" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "hostname": "br1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.20" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "hostname": "bg1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.167.254" + ] + }, + { + "vpn": "openvpn", + "region": "Canada", + "hostname": "ca1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.33" + ] + }, + { + "vpn": "openvpn", + "region": "Columbia", + "hostname": "co1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.21" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "hostname": "cr1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.22" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "hostname": "cz1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.164.254" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "hostname": "dk1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.154.254" + ] + }, + { + "vpn": "openvpn", + "region": "Dubai", + "hostname": "ae1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.101.254" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "hostname": "eg1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.10.254" + ] + }, + { + "vpn": "openvpn", + "region": "El Salvador", + "hostname": "sv1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.20" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "hostname": "fi1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.166.254" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "hostname": "fr1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.141.254" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "hostname": "de1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.128.254" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "hostname": "gr1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.11.254" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "hostname": "hk1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.36" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "hostname": "is1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.17.254" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "hostname": "in1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.60.254" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "hostname": "id1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.20" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "hostname": "ie1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.19.254" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "hostname": "il1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.59.254" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "hostname": "it1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.161.254" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "hostname": "jp1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.113.18" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "hostname": "lv1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.174.254" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "hostname": "li1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.177.254" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "hostname": "lt1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.173.254" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "hostname": "lu1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.165.254" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "hostname": "mo1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.31.254" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "hostname": "my1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.21" + ] + }, + { + "vpn": "openvpn", + "region": "Maldives", + "hostname": "mv1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.26" + ] + }, + { + "vpn": "openvpn", + "region": "Marshall Islands", + "hostname": "mh1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.25" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "hostname": "mx1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.23" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "hostname": "eu1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.135.254" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "hostname": "nz1.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.20" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "hostname": "no1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.163.254" + ] + }, + { + "vpn": "openvpn", + "region": "Pakistan", + "hostname": "pk1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.58.254" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "hostname": "pa1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.23" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "hostname": "ph1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.22" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "hostname": "pl1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.170.254" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "hostname": "pt1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.168.254" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "hostname": "qa1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.62.254" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "hostname": "ro1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.171.254" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "hostname": "ru1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.151.254" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "hostname": "sa1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.61.254" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "hostname": "sg1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.18" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "hostname": "sk1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.176.254" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "hostname": "si1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.175.254" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "hostname": "kr1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.113.19" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "hostname": "es1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.157.254" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "hostname": "se1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.159.254" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "hostname": "ch1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.41.254" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "hostname": "tw1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.32.254" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "hostname": "th1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.23" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "hostname": "tr1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.169.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Austin", + "hostname": "us3.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.27" + ] + }, + { + "vpn": "openvpn", + "region": "USA Chicago", + "hostname": "us6.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.21" + ] + }, + { + "vpn": "openvpn", + "region": "USA Los Angeles", + "hostname": "us1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.28.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Miami", + "hostname": "us4.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.18" + ] + }, + { + "vpn": "openvpn", + "region": "USA New York", + "hostname": "us5.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.31" + ] + }, + { + "vpn": "openvpn", + "region": "USA San Francisco", + "hostname": "us7.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.29.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Seattle", + "hostname": "us8.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.30.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Washington DC", + "hostname": "us2.vyprvpn.com", + "udp": true, + "ips": [ + "209.160.115.254" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "hostname": "ua1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.172.254" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "hostname": "uk1.vyprvpn.com", + "udp": true, + "ips": [ + "178.208.168.254" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "hostname": "uy1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.25" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "hostname": "vn1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.24" + ] + } + ] + }, + "wevpn": { + "version": 2, + "timestamp": 1679755674, + "servers": [ + { + "vpn": "openvpn", + "city": "Amsterdam", + "hostname": "amsterdam.wevpn.com", + "udp": true, + "ips": [ + "89.238.177.234" + ] + }, + { + "vpn": "openvpn", + "city": "Athens", + "hostname": "athens.wevpn.com", + "udp": true, + "ips": [ + "185.51.134.210" + ] + }, + { + "vpn": "openvpn", + "city": "Atlanta", + "hostname": "atlanta.wevpn.com", + "udp": true, + "ips": [ + "104.223.91.146" + ] + }, + { + "vpn": "openvpn", + "city": "Auckland", + "hostname": "auckland.wevpn.com", + "udp": true, + "ips": [ + "103.108.94.226" + ] + }, + { + "vpn": "openvpn", + "city": "Belgrade", + "hostname": "belgrade.wevpn.com", + "udp": true, + "ips": [ + "37.120.193.170" + ] + }, + { + "vpn": "openvpn", + "city": "Brussels", + "hostname": "brussels.wevpn.com", + "udp": true, + "ips": [ + "77.243.191.178" + ] + }, + { + "vpn": "openvpn", + "city": "Bucharest", + "hostname": "bucharest.wevpn.com", + "udp": true, + "ips": [ + "86.105.25.162" + ] + }, + { + "vpn": "openvpn", + "city": "Budapest", + "hostname": "budapest.wevpn.com", + "udp": true, + "ips": [ + "185.128.26.130" + ] + }, + { + "vpn": "openvpn", + "city": "Buenos Aires", + "hostname": "buenosaires.wevpn.com", + "udp": true, + "ips": [ + "131.255.4.140" + ] + }, + { + "vpn": "openvpn", + "city": "Cairo", + "hostname": "cairo.wevpn.com", + "udp": true, + "ips": [ + "188.214.122.138" + ] + }, + { + "vpn": "openvpn", + "city": "Chennai", + "hostname": "chennai.wevpn.com", + "udp": true, + "ips": [ + "169.38.107.52" + ] + }, + { + "vpn": "openvpn", + "city": "Chicago", + "hostname": "chicago.wevpn.com", + "udp": true, + "ips": [ + "69.39.239.72" + ] + }, + { + "vpn": "openvpn", + "city": "Copenhagen", + "hostname": "copenhagen.wevpn.com", + "udp": true, + "ips": [ + "37.120.194.82" + ] + }, + { + "vpn": "openvpn", + "city": "Dallas", + "hostname": "dallas.wevpn.com", + "udp": true, + "ips": [ + "194.110.112.74" + ] + }, + { + "vpn": "openvpn", + "city": "Denizli", + "hostname": "bursa.wevpn.com", + "udp": true, + "ips": [ + "89.252.132.138" + ] + }, + { + "vpn": "openvpn", + "city": "Denver", + "hostname": "denver.wevpn.com", + "udp": true, + "ips": [ + "70.39.71.2" + ] + }, + { + "vpn": "openvpn", + "city": "Dubai", + "hostname": "dubai.wevpn.com", + "udp": true, + "ips": [ + "217.138.193.42" + ] + }, + { + "vpn": "openvpn", + "city": "Dublin", + "hostname": "dublin.wevpn.com", + "udp": true, + "ips": [ + "217.138.222.138" + ] + }, + { + "vpn": "openvpn", + "city": "Frankfurt", + "hostname": "frankfurt.wevpn.com", + "udp": true, + "ips": [ + "45.141.152.178" + ] + }, + { + "vpn": "openvpn", + "city": "Hanoi", + "hostname": "hanoi.wevpn.com", + "udp": true, + "ips": [ + "188.214.152.194" + ] + }, + { + "vpn": "openvpn", + "city": "Helsinki", + "hostname": "helsinki.wevpn.com", + "udp": true, + "ips": [ + "185.212.149.152" + ] + }, + { + "vpn": "openvpn", + "city": "Hong Kong", + "hostname": "hongkong.wevpn.com", + "udp": true, + "ips": [ + "84.17.37.55" + ] + }, + { + "vpn": "openvpn", + "city": "Jakarta", + "hostname": "jakarta.wevpn.com", + "udp": true, + "ips": [ + "45.133.181.58" + ] + }, + { + "vpn": "openvpn", + "city": "Johannesburg", + "hostname": "johannesburg.wevpn.com", + "udp": true, + "ips": [ + "102.165.20.38" + ] + }, + { + "vpn": "openvpn", + "city": "Kiev", + "hostname": "kyiv.wevpn.com", + "udp": true, + "ips": [ + "37.19.218.197" + ] + }, + { + "vpn": "openvpn", + "city": "Lagos", + "hostname": "lagos.wevpn.com", + "udp": true, + "ips": [ + "102.129.144.142" + ] + }, + { + "vpn": "openvpn", + "city": "Lisbon", + "hostname": "lisbon.wevpn.com", + "udp": true, + "ips": [ + "185.90.57.152" + ] + }, + { + "vpn": "openvpn", + "city": "London", + "hostname": "london.wevpn.com", + "udp": true, + "ips": [ + "45.141.154.2" + ] + }, + { + "vpn": "openvpn", + "city": "London-PF", + "hostname": "london-pf.wevpn.com", + "udp": true, + "ips": [ + "77.243.177.78" + ] + }, + { + "vpn": "openvpn", + "city": "Los Angeles", + "hostname": "losangeles.wevpn.com", + "udp": true, + "ips": [ + "45.152.182.82" + ] + }, + { + "vpn": "openvpn", + "city": "Los Angeles-PF", + "hostname": "losangeles-pf.wevpn.com", + "udp": true, + "ips": [ + "66.55.92.75" + ] + }, + { + "vpn": "openvpn", + "city": "Luxembourg", + "hostname": "luxembourg.wevpn.com", + "udp": true, + "ips": [ + "5.253.204.194" + ] + }, + { + "vpn": "openvpn", + "city": "Madrid", + "hostname": "madrid.wevpn.com", + "udp": true, + "ips": [ + "45.152.183.242" + ] + }, + { + "vpn": "openvpn", + "city": "Manchester", + "hostname": "manchester.wevpn.com", + "udp": true, + "ips": [ + "86.106.136.98" + ] + }, + { + "vpn": "openvpn", + "city": "Manila", + "hostname": "manila.wevpn.com", + "udp": true, + "ips": [ + "188.214.125.106" + ] + }, + { + "vpn": "openvpn", + "city": "Melbourne", + "hostname": "melbourne.wevpn.com", + "udp": true, + "ips": [ + "116.206.230.130" + ] + }, + { + "vpn": "openvpn", + "city": "Mexico City", + "hostname": "mexico.wevpn.com", + "udp": true, + "ips": [ + "169.57.35.97" + ] + }, + { + "vpn": "openvpn", + "city": "Miami", + "hostname": "miami.wevpn.com", + "udp": true, + "ips": [ + "96.47.224.2" + ] + }, + { + "vpn": "openvpn", + "city": "Milan", + "hostname": "milan.wevpn.com", + "udp": true, + "ips": [ + "217.138.197.138" + ] + }, + { + "vpn": "openvpn", + "city": "Montreal", + "hostname": "montreal.wevpn.com", + "udp": true, + "ips": [ + "217.138.200.242" + ] + }, + { + "vpn": "openvpn", + "city": "Moscow", + "hostname": "moscow.wevpn.com", + "udp": true, + "ips": [ + "80.93.181.194" + ] + }, + { + "vpn": "openvpn", + "city": "New Jersey", + "hostname": "newjersey.wevpn.com", + "udp": true, + "ips": [ + "23.226.131.146" + ] + }, + { + "vpn": "openvpn", + "city": "New York", + "hostname": "newyork.wevpn.com", + "udp": true, + "ips": [ + "217.138.206.98" + ] + }, + { + "vpn": "openvpn", + "city": "New York-PF", + "hostname": "newyork-pf.wevpn.com", + "udp": true, + "ips": [ + "188.241.179.2" + ] + }, + { + "vpn": "openvpn", + "city": "Oslo", + "hostname": "oslo.wevpn.com", + "udp": true, + "ips": [ + "84.247.50.10" + ] + }, + { + "vpn": "openvpn", + "city": "Oulu", + "hostname": "oulu.wevpn.com", + "udp": true, + "ips": [ + "188.126.89.174" + ] + }, + { + "vpn": "openvpn", + "city": "Paris", + "hostname": "paris.wevpn.com", + "udp": true, + "ips": [ + "37.120.136.234" + ] + }, + { + "vpn": "openvpn", + "city": "Phoenix", + "hostname": "phoenix.wevpn.com", + "udp": true, + "ips": [ + "170.130.15.34" + ] + }, + { + "vpn": "openvpn", + "city": "Prague", + "hostname": "prague.wevpn.com", + "udp": true, + "ips": [ + "217.138.199.138" + ] + }, + { + "vpn": "openvpn", + "city": "Salt Lake City", + "hostname": "saltlakecity.wevpn.com", + "udp": true, + "ips": [ + "107.182.234.233" + ] + }, + { + "vpn": "openvpn", + "city": "San Jose", + "hostname": "sanjose.wevpn.com", + "udp": true, + "ips": [ + "66.115.157.226" + ] + }, + { + "vpn": "openvpn", + "city": "Sao Paulo", + "hostname": "saopaulo.wevpn.com", + "udp": true, + "ips": [ + "177.54.152.89" + ] + }, + { + "vpn": "openvpn", + "city": "Seattle", + "hostname": "seattle.wevpn.com", + "udp": true, + "ips": [ + "104.140.21.178" + ] + }, + { + "vpn": "openvpn", + "city": "Seoul", + "hostname": "seoul.wevpn.com", + "udp": true, + "ips": [ + "169.56.83.206" + ] + }, + { + "vpn": "openvpn", + "city": "Sibu", + "hostname": "kualalumpur.wevpn.com", + "udp": true, + "ips": [ + "223.25.246.4" + ] + }, + { + "vpn": "openvpn", + "city": "Singapore", + "hostname": "singapore.wevpn.com", + "udp": true, + "ips": [ + "84.17.38.144" + ] + }, + { + "vpn": "openvpn", + "city": "Sofia", + "hostname": "sofia.wevpn.com", + "udp": true, + "ips": [ + "217.138.221.42" + ] + }, + { + "vpn": "openvpn", + "city": "St Petersburg", + "hostname": "petersburg.wevpn.com", + "udp": true, + "ips": [ + "82.202.220.242" + ] + }, + { + "vpn": "openvpn", + "city": "Stockholm", + "hostname": "stockholm.wevpn.com", + "udp": true, + "ips": [ + "45.83.91.66" + ] + }, + { + "vpn": "openvpn", + "city": "Sydney", + "hostname": "sydney.wevpn.com", + "udp": true, + "ips": [ + "46.102.153.106" + ] + }, + { + "vpn": "openvpn", + "city": "Taipei", + "hostname": "taipei.wevpn.com", + "udp": true, + "ips": [ + "188.214.106.98" + ] + }, + { + "vpn": "openvpn", + "city": "Tel Aviv", + "hostname": "telaviv.wevpn.com", + "udp": true, + "ips": [ + "212.199.61.55" + ] + }, + { + "vpn": "openvpn", + "city": "Tokyo", + "hostname": "tokyo.wevpn.com", + "udp": true, + "ips": [ + "84.17.34.8" + ] + }, + { + "vpn": "openvpn", + "city": "Toronto", + "hostname": "toronto.wevpn.com", + "udp": true, + "ips": [ + "184.75.208.234" + ] + }, + { + "vpn": "openvpn", + "city": "Vancouver", + "hostname": "vancouver.wevpn.com", + "udp": true, + "ips": [ + "71.19.249.109" + ] + }, + { + "vpn": "openvpn", + "city": "Vienna", + "hostname": "vienna.wevpn.com", + "udp": true, + "ips": [ + "37.120.212.162" + ] + }, + { + "vpn": "openvpn", + "city": "Warsaw", + "hostname": "warsaw.wevpn.com", + "udp": true, + "ips": [ + "217.138.209.122" + ] + }, + { + "vpn": "openvpn", + "city": "Washington DC", + "hostname": "washington.wevpn.com", + "udp": true, + "ips": [ + "70.32.0.208" + ] + }, + { + "vpn": "openvpn", + "city": "Zurich", + "hostname": "zurich.wevpn.com", + "udp": true, + "ips": [ + "37.120.137.82" + ] + } + ] + }, + "windscribe": { + "version": 2, + "timestamp": 1722459630, + "servers": [ + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-283.windscribe.com", + "ips": [ + "194.113.94.210", + "194.113.94.211" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-003.whiskergalaxy.com", + "wgpubkey": "/8WvGXPoWTiPmrQsmakiEk7wFhn0ab7FWqN5k13oszQ=", + "ips": [ + "194.113.94.212" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-423.windscribe.com", + "ips": [ + "87.120.103.226", + "87.120.103.227" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-004.whiskergalaxy.com", + "wgpubkey": "Y+/gx8qgmaUqnfVJ0Sp/y6ji6oPrPj4ESLwLWIwOIHg=", + "ips": [ + "87.120.103.228" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-423.windscribe.com", + "ips": [ + "87.120.103.242", + "87.120.103.243" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-005.whiskergalaxy.com", + "wgpubkey": "Y+/gx8qgmaUqnfVJ0Sp/y6ji6oPrPj4ESLwLWIwOIHg=", + "ips": [ + "87.120.103.244" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "city": "Buenos Aires", + "hostname": "ar-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "eze-278.windscribe.com", + "ips": [ + "190.103.176.146", + "190.103.176.147" + ] + }, + { + "vpn": "wireguard", + "region": "Argentina", + "city": "Buenos Aires", + "hostname": "ar-008.whiskergalaxy.com", + "wgpubkey": "2+O8VAshLkyWM1b6Ye2Cuoa3R/guKZgQ+YLoCsseWCU=", + "ips": [ + "190.103.176.148" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "adl-319.windscribe.com", + "ips": [ + "116.90.72.242", + "116.90.72.243" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-008.whiskergalaxy.com", + "wgpubkey": "tEh6Z8bnFmQU2KWHWYOS7yuDFZgwn3LGOZAdR1hN8kU=", + "ips": [ + "116.90.72.244" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "adl-354.windscribe.com", + "ips": [ + "103.108.92.82", + "103.108.92.83" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-011.whiskergalaxy.com", + "wgpubkey": "Sb5VSMZhhqSo5absckjzPn9HWhT7UrKk1AQv0me0zhI=", + "ips": [ + "103.108.92.84" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bne-225.windscribe.com", + "ips": [ + "103.62.50.130", + "103.62.50.131" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-007.whiskergalaxy.com", + "wgpubkey": "KvFr7Te5+RaFATDKJzrNXKf44ws8J6E9WbNVsMPvY1I=", + "ips": [ + "103.62.50.132" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bne-357.windscribe.com", + "ips": [ + "103.108.95.226", + "103.108.95.227" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-018.whiskergalaxy.com", + "wgpubkey": "iY4MhQqQTP4uT7U4w9DfUEVxi5I3HJvjZcIL2dwmtTw=", + "ips": [ + "103.108.95.228" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mel-224.windscribe.com", + "ips": [ + "103.137.14.34", + "103.137.14.35" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-005.whiskergalaxy.com", + "wgpubkey": "sDDXsvjyVqpB8fecUsjX0/Y8YdZye+oiV1Dy9BfUkwE=", + "ips": [ + "103.137.14.36" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mel-356.windscribe.com", + "ips": [ + "116.206.228.178", + "116.206.228.179" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-017.whiskergalaxy.com", + "wgpubkey": "r5BDU0T+VGZU6I+zuF3vlGrdORtgNvLhY08gQxrFRCw=", + "ips": [ + "116.206.228.180" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Perth", + "hostname": "au-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "per-223.windscribe.com", + "ips": [ + "45.121.208.128", + "45.121.208.160" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Perth", + "hostname": "au-004.whiskergalaxy.com", + "wgpubkey": "dqRF96aFvKwZ/UZXC+VuIciE6e2Iy138Vx54D2iHug8=", + "ips": [ + "45.121.208.161" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Perth", + "hostname": "au-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "per-355.windscribe.com", + "ips": [ + "103.77.234.210", + "103.77.234.211" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Perth", + "hostname": "au-012.whiskergalaxy.com", + "wgpubkey": "Jhhq6jvPxABM8OmzaM4/zJbcoRBR5OZalIHrZaFuXAU=", + "ips": [ + "103.77.234.212" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-226.windscribe.com", + "ips": [ + "103.1.213.210", + "103.1.213.211" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-015.whiskergalaxy.com", + "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", + "ips": [ + "103.1.213.212" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-226.windscribe.com", + "ips": [ + "103.1.212.242", + "103.1.212.243" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-016.whiskergalaxy.com", + "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", + "ips": [ + "103.1.212.244" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-243.windscribe.com", + "ips": [ + "103.77.232.74", + "103.77.232.75" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-019.whiskergalaxy.com", + "wgpubkey": "eSxX+L8qX+1MdmwjtlZGIDbDivFdURBh5Rm1KfUpYzc=", + "ips": [ + "103.77.232.76" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-308.windscribe.com", + "ips": [ + "89.187.168.65", + "89.187.168.66" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-004.whiskergalaxy.com", + "wgpubkey": "KtJIKy9zsCXtKwFMQeGDEZVXtqw+X1+5z10Rh84/N0s=", + "ips": [ + "89.187.168.67" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-308.windscribe.com", + "ips": [ + "154.47.19.129", + "154.47.19.130" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-005.whiskergalaxy.com", + "wgpubkey": "KtJIKy9zsCXtKwFMQeGDEZVXtqw+X1+5z10Rh84/N0s=", + "ips": [ + "154.47.19.131" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-87.windscribe.com", + "ips": [ + "146.70.244.18", + "146.70.244.19" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-006.whiskergalaxy.com", + "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", + "ips": [ + "146.70.244.20" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-87.windscribe.com", + "ips": [ + "146.70.244.2", + "146.70.244.3" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-007.whiskergalaxy.com", + "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", + "ips": [ + "146.70.244.4" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bru-99.windscribe.com", + "ips": [ + "146.70.176.242", + "146.70.176.243" + ] + }, + { + "vpn": "wireguard", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-007.whiskergalaxy.com", + "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", + "ips": [ + "146.70.176.244" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bru-99.windscribe.com", + "ips": [ + "146.70.123.98", + "146.70.123.99" + ] + }, + { + "vpn": "wireguard", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-008.whiskergalaxy.com", + "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", + "ips": [ + "146.70.123.100" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia", + "city": "Novi Travnik", + "hostname": "ba-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjj-410.windscribe.com", + "ips": [ + "45.156.248.50", + "45.156.248.51" + ] + }, + { + "vpn": "wireguard", + "region": "Bosnia", + "city": "Novi Travnik", + "hostname": "ba-002.whiskergalaxy.com", + "wgpubkey": "T9eiZMCJSOeNgm9n6s5/5WKDjMTN2TAKLbRvUNrGKUo=", + "ips": [ + "45.156.248.52" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia", + "city": "Sarajevo", + "hostname": "ba-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjj-286.windscribe.com", + "ips": [ + "185.164.35.16", + "185.99.3.24" + ] + }, + { + "vpn": "wireguard", + "region": "Bosnia", + "city": "Sarajevo", + "hostname": "ba-001.whiskergalaxy.com", + "wgpubkey": "6oMHpHHL3pq6Pdr2HoDRYuyjcyQGxfQaSRQR+HPyvgc=", + "ips": [ + "185.99.3.25" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-231.windscribe.com", + "ips": [ + "149.78.184.70", + "149.78.184.98" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-007.whiskergalaxy.com", + "wgpubkey": "bfeZeTGkISX5GVgVOkTMRlqvWlTI8obCb7vVdy8XGWk=", + "ips": [ + "149.78.184.99" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-165.windscribe.com", + "ips": [ + "149.102.251.206", + "149.102.251.207" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-008.whiskergalaxy.com", + "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", + "ips": [ + "149.102.251.208" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-165.windscribe.com", + "ips": [ + "149.102.251.193", + "149.102.251.194" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-009.whiskergalaxy.com", + "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", + "ips": [ + "149.102.251.195" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sof-100.windscribe.com", + "ips": [ + "185.94.192.194", + "185.94.192.195" + ] + }, + { + "vpn": "wireguard", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-004.whiskergalaxy.com", + "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", + "ips": [ + "185.94.192.196" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sof-100.windscribe.com", + "ips": [ + "185.94.192.210", + "185.94.192.211" + ] + }, + { + "vpn": "wireguard", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-005.whiskergalaxy.com", + "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", + "ips": [ + "185.94.192.212" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pnh-374.windscribe.com", + "ips": [ + "195.80.149.242", + "195.80.149.243" + ] + }, + { + "vpn": "wireguard", + "region": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh-001.whiskergalaxy.com", + "wgpubkey": "V95mJcGcpBFRAy3rQQJc6pWe5VA/28YoWKTl53slzz4=", + "ips": [ + "195.80.149.244" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yhz-386.windscribe.com", + "ips": [ + "23.191.80.2", + "23.191.80.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-021.whiskergalaxy.com", + "wgpubkey": "w262TI0UyIg9pFunMiekVURYUuT/z4qXRor2Z7VcOn4=", + "ips": [ + "23.191.80.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-048.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yhz-386.windscribe.com", + "ips": [ + "23.191.80.98", + "23.191.80.99" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-048.whiskergalaxy.com", + "wgpubkey": "w262TI0UyIg9pFunMiekVURYUuT/z4qXRor2Z7VcOn4=", + "ips": [ + "23.191.80.100" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-027.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "38.170.155.242", + "38.153.115.1" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-027.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.153.115.2" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-028.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "23.236.161.50", + "38.153.115.33" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-028.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.153.115.34" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-032.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "23.236.161.210", + "38.170.148.1" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-032.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.170.148.2" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.82.2", + "172.98.82.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-050.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.82.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.194", + "172.98.68.195" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-051.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.196" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-052.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.205", + "172.98.68.206" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-052.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.207" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.216", + "172.98.68.217" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-053.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.218" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "104.254.92.10", + "104.254.92.11" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-002.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "104.254.92.12" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "104.254.92.90", + "104.254.92.91" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-009.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "104.254.92.92" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "184.75.212.90", + "184.75.212.91" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-017.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "184.75.212.92" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-056.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-197.windscribe.com", + "ips": [ + "149.88.98.65", + "149.88.98.66" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-056.whiskergalaxy.com", + "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", + "ips": [ + "149.88.98.67" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-197.windscribe.com", + "ips": [ + "149.88.98.81", + "149.88.98.82" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-057.whiskergalaxy.com", + "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", + "ips": [ + "149.88.98.83" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "208.78.41.130", + "208.78.41.131" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-017.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "208.78.41.132" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "208.78.41.162", + "208.78.41.163" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-019.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "208.78.41.164" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "198.8.92.98", + "198.8.92.99" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-020.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "198.8.92.100" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-124.windscribe.com", + "ips": [ + "167.88.50.2", + "167.88.50.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-021.whiskergalaxy.com", + "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", + "ips": [ + "167.88.50.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-124.windscribe.com", + "ips": [ + "167.88.50.34", + "167.88.50.35" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-022.whiskergalaxy.com", + "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", + "ips": [ + "167.88.50.36" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-023.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-187.windscribe.com", + "ips": [ + "95.173.219.1", + "95.173.219.2" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-023.whiskergalaxy.com", + "wgpubkey": "hHmf2yS/Hjkh6ZJ4seoO5Vwv0LwNlYFTnUK3v9lGvEQ=", + "ips": [ + "95.173.219.3" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "scl-373.windscribe.com", + "ips": [ + "149.88.104.225", + "149.88.104.226" + ] + }, + { + "vpn": "wireguard", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-003.whiskergalaxy.com", + "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", + "ips": [ + "149.88.104.227" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "scl-373.windscribe.com", + "ips": [ + "149.88.104.238", + "149.88.104.239" + ] + }, + { + "vpn": "wireguard", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-004.whiskergalaxy.com", + "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", + "ips": [ + "149.88.104.240" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bog-360.windscribe.com", + "ips": [ + "149.88.111.14", + "149.88.111.15" + ] + }, + { + "vpn": "wireguard", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-003.whiskergalaxy.com", + "wgpubkey": "QpdeoH7VxAatKlFm0sPo8phHjv1tiiHdqQaACmzMJjE=", + "ips": [ + "149.88.111.16" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bog-360.windscribe.com", + "ips": [ + "149.88.111.1", + "149.88.111.2" + ] + }, + { + "vpn": "wireguard", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-004.whiskergalaxy.com", + "wgpubkey": "QpdeoH7VxAatKlFm0sPo8phHjv1tiiHdqQaACmzMJjE=", + "ips": [ + "149.88.111.3" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zag-252.windscribe.com", + "ips": [ + "154.47.29.161", + "154.47.29.162" + ] + }, + { + "vpn": "wireguard", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-005.whiskergalaxy.com", + "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", + "ips": [ + "154.47.29.163" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zag-252.windscribe.com", + "ips": [ + "154.47.29.174", + "154.47.29.175" + ] + }, + { + "vpn": "wireguard", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-006.whiskergalaxy.com", + "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", + "ips": [ + "154.47.29.176" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "46.199.75.105", + "46.199.75.106" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-002.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "46.199.75.107" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "46.199.75.100", + "46.199.75.101" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-003.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "46.199.75.102" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "85.190.230.21", + "85.190.230.22" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-004.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "85.190.230.23" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "185.246.210.1", + "185.246.210.2" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-002.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "185.246.210.3" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "149.40.61.225", + "149.40.61.226" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-004.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "149.40.61.227" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "149.40.61.193", + "149.40.61.194" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-006.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "149.40.61.195" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-88.windscribe.com", + "ips": [ + "185.216.35.66", + "185.216.35.67" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-007.whiskergalaxy.com", + "wgpubkey": "a599bjD8WzXg94xH1DfGBxW8yJ64EXMZq18elEfAwyk=", + "ips": [ + "185.216.35.68" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-88.windscribe.com", + "ips": [ + "185.216.35.130", + "185.216.35.131" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-008.whiskergalaxy.com", + "wgpubkey": "a599bjD8WzXg94xH1DfGBxW8yJ64EXMZq18elEfAwyk=", + "ips": [ + "185.216.35.132" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cph-153.windscribe.com", + "ips": [ + "185.245.84.34", + "185.245.84.35" + ] + }, + { + "vpn": "wireguard", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-005.whiskergalaxy.com", + "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", + "ips": [ + "185.245.84.36" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cph-153.windscribe.com", + "ips": [ + "185.245.84.50", + "185.245.84.51" + ] + }, + { + "vpn": "wireguard", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-006.whiskergalaxy.com", + "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", + "ips": [ + "185.245.84.52" + ] + }, + { + "vpn": "openvpn", + "region": "Ecuador", + "city": "Quito", + "hostname": "ec-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "uio-385.windscribe.com", + "ips": [ + "179.49.5.122", + "179.49.5.123" + ] + }, + { + "vpn": "wireguard", + "region": "Ecuador", + "city": "Quito", + "hostname": "ec-002.whiskergalaxy.com", + "wgpubkey": "nwpvJ7AtDjk77dpyL7qKkvwsWQL82Fqy3JEk/KR/iGw=", + "ips": [ + "179.49.5.124" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.122", + "165.231.141.123" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-006.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.124" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.130", + "165.231.141.131" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-007.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.132" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.138", + "165.231.141.139" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-008.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.140" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.74", + "196.196.122.227" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-009.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "196.196.122.228" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "149.57.28.8", + "149.57.28.225" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-001.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "149.57.28.226" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "149.57.28.9", + "149.57.28.241" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-002.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "149.57.28.242" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "181.215.52.192", + "181.215.52.193" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-003.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "181.215.52.194" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-98.windscribe.com", + "ips": [ + "196.244.192.202", + "196.244.192.203" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-006.whiskergalaxy.com", + "wgpubkey": "2LiGGjfWP64d7uVNpgV8n/lIg2iM62iz8ZXRHFd1Qw0=", + "ips": [ + "196.244.192.204" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-186.windscribe.com", + "ips": [ + "193.161.204.22", + "193.161.204.23" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-007.whiskergalaxy.com", + "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", + "ips": [ + "193.161.204.24" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-186.windscribe.com", + "ips": [ + "185.212.149.49", + "185.212.149.50" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-008.whiskergalaxy.com", + "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", + "ips": [ + "185.212.149.51" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-98.windscribe.com", + "ips": [ + "196.244.194.2", + "196.244.194.3" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-009.whiskergalaxy.com", + "wgpubkey": "2LiGGjfWP64d7uVNpgV8n/lIg2iM62iz8ZXRHFd1Qw0=", + "ips": [ + "196.244.194.4" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Marseille", + "hostname": "fr-024.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mrs-411.windscribe.com", + "ips": [ + "149.102.245.65", + "149.102.245.66" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Marseille", + "hostname": "fr-024.whiskergalaxy.com", + "wgpubkey": "Cqqx4g+EJG8C+CGRA/WCeMH7pixp9jLSXuadJCDPZ2g=", + "ips": [ + "149.102.245.67" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "84.17.42.33", + "84.17.42.37" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-008.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "84.17.42.35" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "84.17.42.1", + "84.17.42.2" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-009.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "84.17.42.3" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "45.89.174.34", + "45.89.174.35" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-011.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "45.89.174.36" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "188.241.83.66", + "188.241.83.67" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-012.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "188.241.83.68" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "138.199.47.220", + "138.199.47.221" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-016.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "138.199.47.222" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "146.70.105.2", + "146.70.105.3" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-021.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "146.70.105.4" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "146.70.105.34", + "146.70.105.35" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-022.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "146.70.105.36" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "city": "Tbilisi", + "hostname": "ge-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tbs-387.windscribe.com", + "ips": [ + "195.54.178.210", + "195.54.178.211" + ] + }, + { + "vpn": "wireguard", + "region": "Georgia", + "city": "Tbilisi", + "hostname": "ge-002.whiskergalaxy.com", + "wgpubkey": "Jntc7e8Zxk9vNvq2dbOOwyoXsB9nybUMF1LRdCZZgWk=", + "ips": [ + "195.54.178.212" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.50", + "45.87.212.51" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-012.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.52" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.66", + "45.87.212.67" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-013.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.68" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "193.27.14.178", + "193.27.14.179" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-014.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "193.27.14.180" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.82", + "45.87.212.83" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-017.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.84" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "146.70.101.34", + "146.70.101.35" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-018.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "146.70.101.36" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "87.249.132.196", + "87.249.132.197" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-020.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "87.249.132.198" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-026.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "146.70.107.2", + "146.70.107.3" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-026.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "146.70.107.4" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-032.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "149.36.50.129", + "149.36.50.130" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-032.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "149.36.50.131" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-033.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "87.249.132.97", + "87.249.132.98" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-033.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "87.249.132.99" + ] + }, + { + "vpn": "openvpn", + "region": "Ghana", + "city": "Accra", + "hostname": "gh-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "acc-394.windscribe.com", + "ips": [ + "169.255.56.202", + "169.255.56.203" + ] + }, + { + "vpn": "wireguard", + "region": "Ghana", + "city": "Accra", + "hostname": "gh-001.whiskergalaxy.com", + "wgpubkey": "+ZYeVrDMZ+7Kpewr4IL/jRRpb2x3pjky+xwkY1wiUjM=", + "ips": [ + "169.255.56.204" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "city": "Athens", + "hostname": "gr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ath-247.windscribe.com", + "ips": [ + "149.22.85.65", + "149.22.85.66" + ] + }, + { + "vpn": "wireguard", + "region": "Greece", + "city": "Athens", + "hostname": "gr-009.whiskergalaxy.com", + "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", + "ips": [ + "149.22.85.67" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "city": "Athens", + "hostname": "gr-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ath-247.windscribe.com", + "ips": [ + "149.22.85.78", + "149.22.85.79" + ] + }, + { + "vpn": "wireguard", + "region": "Greece", + "city": "Athens", + "hostname": "gr-010.whiskergalaxy.com", + "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", + "ips": [ + "149.22.85.80" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-189.windscribe.com", + "ips": [ + "84.17.57.113", + "84.17.57.114" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-006.whiskergalaxy.com", + "wgpubkey": "zi62xnrtbvAbaavB8MLoTF36BX/stxjfnGJ6mIsZYzg=", + "ips": [ + "84.17.57.115" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-189.windscribe.com", + "ips": [ + "149.40.54.129", + "149.40.54.130" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-010.whiskergalaxy.com", + "wgpubkey": "zi62xnrtbvAbaavB8MLoTF36BX/stxjfnGJ6mIsZYzg=", + "ips": [ + "149.40.54.131" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-26.windscribe.com", + "ips": [ + "146.70.9.226", + "146.70.9.227" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-013.whiskergalaxy.com", + "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", + "ips": [ + "146.70.9.228" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-26.windscribe.com", + "ips": [ + "146.70.9.242", + "146.70.9.243" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-015.whiskergalaxy.com", + "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", + "ips": [ + "146.70.9.244" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bud-90.windscribe.com", + "ips": [ + "146.70.120.130", + "146.70.120.131" + ] + }, + { + "vpn": "wireguard", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-003.whiskergalaxy.com", + "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", + "ips": [ + "146.70.120.132" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bud-90.windscribe.com", + "ips": [ + "146.70.203.18", + "146.70.203.19" + ] + }, + { + "vpn": "wireguard", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-004.whiskergalaxy.com", + "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", + "ips": [ + "146.70.203.20" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kef-344.windscribe.com", + "ips": [ + "185.165.170.1", + "185.165.170.2" + ] + }, + { + "vpn": "wireguard", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-002.whiskergalaxy.com", + "wgpubkey": "ua7TUXkcSiiHeTyCok5b3PX9DkJ4l5yVvGlSmJ34WU8=", + "ips": [ + "185.165.170.3" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kef-121.windscribe.com", + "ips": [ + "45.133.192.194", + "45.133.192.195" + ] + }, + { + "vpn": "wireguard", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-003.whiskergalaxy.com", + "wgpubkey": "8ZGAQUv1E/9pfVmPwasDo4g69PlAHIzlUf5pAmCJ7hk=", + "ips": [ + "45.133.192.196" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.210", + "165.231.253.211" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-009.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.212" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.242", + "165.231.253.243" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-010.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.244" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.66", + "165.231.253.67" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-012.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.68" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "196.240.60.66", + "196.240.60.67" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-013.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "196.240.60.68" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "New Delhi", + "hostname": "in-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "del-417.windscribe.com", + "ips": [ + "103.26.207.55", + "103.26.207.109" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "New Delhi", + "hostname": "in-014.whiskergalaxy.com", + "wgpubkey": "Ve/vQfFTt4NRr0RWG0muS7Gv0SpqaLdsk16mj33GUXA=", + "ips": [ + "103.26.207.110" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "New Delhi", + "hostname": "in-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "del-417.windscribe.com", + "ips": [ + "103.26.207.94", + "103.26.207.213" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "New Delhi", + "hostname": "in-015.whiskergalaxy.com", + "wgpubkey": "Ve/vQfFTt4NRr0RWG0muS7Gv0SpqaLdsk16mj33GUXA=", + "ips": [ + "103.26.207.214" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-391.windscribe.com", + "ips": [ + "202.74.239.10", + "202.74.239.11" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-007.whiskergalaxy.com", + "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", + "ips": [ + "202.74.239.12" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-391.windscribe.com", + "ips": [ + "202.74.239.90", + "202.74.239.91" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-008.whiskergalaxy.com", + "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", + "ips": [ + "202.74.239.92" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-416.windscribe.com", + "ips": [ + "103.87.68.50", + "103.87.68.51" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-009.whiskergalaxy.com", + "wgpubkey": "n+cx0HnDtLEjiK8TzHH2qhuBKKZvt1iWU/e0ba0jyRE=", + "ips": [ + "103.87.68.52" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-416.windscribe.com", + "ips": [ + "103.87.68.146", + "103.87.68.147" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-010.whiskergalaxy.com", + "wgpubkey": "n+cx0HnDtLEjiK8TzHH2qhuBKKZvt1iWU/e0ba0jyRE=", + "ips": [ + "103.87.68.148" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-370.windscribe.com", + "ips": [ + "23.92.127.34", + "23.92.127.35" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-003.whiskergalaxy.com", + "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", + "ips": [ + "23.92.127.36" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-370.windscribe.com", + "ips": [ + "5.157.13.146", + "5.157.13.147" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-004.whiskergalaxy.com", + "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", + "ips": [ + "5.157.13.148" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-73.windscribe.com", + "ips": [ + "185.104.217.66", + "185.104.217.67" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-008.whiskergalaxy.com", + "wgpubkey": "7V00BhJ4cAxsJmU8mEXbdUU5wljw67fGKs1oDhUYtl8=", + "ips": [ + "185.104.217.68" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-400.windscribe.com", + "ips": [ + "149.88.96.12", + "149.88.96.13" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-010.whiskergalaxy.com", + "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", + "ips": [ + "149.88.96.14" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-400.windscribe.com", + "ips": [ + "149.88.96.1", + "149.88.96.2" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-011.whiskergalaxy.com", + "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", + "ips": [ + "149.88.96.3" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tlv-218.windscribe.com", + "ips": [ + "185.191.205.2", + "185.191.205.3" + ] + }, + { + "vpn": "wireguard", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-005.whiskergalaxy.com", + "wgpubkey": "2tyuu2HcOljr/wndoswy2Vk9gqXgjaP/IRg3vXoqFig=", + "ips": [ + "185.191.205.4" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tlv-218.windscribe.com", + "ips": [ + "185.191.204.98", + "185.191.204.99" + ] + }, + { + "vpn": "wireguard", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-006.whiskergalaxy.com", + "wgpubkey": "2tyuu2HcOljr/wndoswy2Vk9gqXgjaP/IRg3vXoqFig=", + "ips": [ + "185.191.204.100" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-318.windscribe.com", + "ips": [ + "84.17.59.65", + "84.17.59.66" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-004.whiskergalaxy.com", + "wgpubkey": "QI+u918O4tyAtoV37B6HVdiQeZoEUi0dWXhSsC3LiWQ=", + "ips": [ + "84.17.59.67" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-318.windscribe.com", + "ips": [ + "149.102.237.33", + "149.102.237.34" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-008.whiskergalaxy.com", + "wgpubkey": "QI+u918O4tyAtoV37B6HVdiQeZoEUi0dWXhSsC3LiWQ=", + "ips": [ + "149.102.237.35" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-110.windscribe.com", + "ips": [ + "185.183.105.130", + "185.183.105.131" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-009.whiskergalaxy.com", + "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", + "ips": [ + "185.183.105.132" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-110.windscribe.com", + "ips": [ + "185.183.105.146", + "185.183.105.147" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-010.whiskergalaxy.com", + "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", + "ips": [ + "185.183.105.148" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Rome", + "hostname": "it-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fco-238.windscribe.com", + "ips": [ + "82.102.26.18", + "82.102.26.19" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Rome", + "hostname": "it-011.whiskergalaxy.com", + "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", + "ips": [ + "82.102.26.20" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Rome", + "hostname": "it-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fco-238.windscribe.com", + "ips": [ + "82.102.26.50", + "82.102.26.51" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Rome", + "hostname": "it-012.whiskergalaxy.com", + "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", + "ips": [ + "82.102.26.52" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-148.windscribe.com", + "ips": [ + "138.199.22.161", + "138.199.22.162" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-006.whiskergalaxy.com", + "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", + "ips": [ + "138.199.22.163" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-148.windscribe.com", + "ips": [ + "143.244.40.225", + "143.244.40.226" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-007.whiskergalaxy.com", + "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", + "ips": [ + "143.244.40.227" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-287.windscribe.com", + "ips": [ + "37.120.210.66", + "37.120.210.67" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-009.whiskergalaxy.com", + "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", + "ips": [ + "37.120.210.68" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-287.windscribe.com", + "ips": [ + "37.120.210.146", + "37.120.210.147" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-010.whiskergalaxy.com", + "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", + "ips": [ + "37.120.210.148" + ] + }, + { + "vpn": "openvpn", + "region": "Kenya", + "city": "Nairobi", + "hostname": "ke-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "nbo-389.windscribe.com", + "ips": [ + "45.138.86.226", + "45.138.86.227" + ] + }, + { + "vpn": "wireguard", + "region": "Kenya", + "city": "Nairobi", + "hostname": "ke-001.whiskergalaxy.com", + "wgpubkey": "S/qPJPWnfwfb1pWIcKN8FH71j5dFt9eH2KbEeU1+QlE=", + "ips": [ + "45.138.86.228" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-398.windscribe.com", + "ips": [ + "185.145.245.88", + "185.145.245.96" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-011.whiskergalaxy.com", + "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", + "ips": [ + "185.145.245.98" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-398.windscribe.com", + "ips": [ + "185.145.245.89", + "185.145.245.97" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-012.whiskergalaxy.com", + "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", + "ips": [ + "185.145.245.99" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-254.windscribe.com", + "ips": [ + "109.248.147.66", + "109.248.147.67" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-013.whiskergalaxy.com", + "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", + "ips": [ + "109.248.147.68" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-254.windscribe.com", + "ips": [ + "109.248.149.34", + "109.248.149.35" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-014.whiskergalaxy.com", + "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", + "ips": [ + "109.248.149.36" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vno-378.windscribe.com", + "ips": [ + "37.156.216.146", + "37.156.216.147" + ] + }, + { + "vpn": "wireguard", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-004.whiskergalaxy.com", + "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", + "ips": [ + "37.156.216.148" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vno-378.windscribe.com", + "ips": [ + "37.156.216.130", + "37.156.216.131" + ] + }, + { + "vpn": "wireguard", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-005.whiskergalaxy.com", + "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", + "ips": [ + "37.156.216.132" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lux-152.windscribe.com", + "ips": [ + "185.221.132.242", + "185.221.132.243" + ] + }, + { + "vpn": "wireguard", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-006.whiskergalaxy.com", + "wgpubkey": "BzMLell5uUM/d9aNGaGMog+GFH36s4dFO0WuQ6/VxCg=", + "ips": [ + "185.221.132.244" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lux-152.windscribe.com", + "ips": [ + "185.221.132.226", + "185.221.132.227" + ] + }, + { + "vpn": "wireguard", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-007.whiskergalaxy.com", + "wgpubkey": "BzMLell5uUM/d9aNGaGMog+GFH36s4dFO0WuQ6/VxCg=", + "ips": [ + "185.221.132.228" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.29", + "118.107.220.30" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-010.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.31" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.37", + "118.107.220.38" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-011.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.39" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.53", + "118.107.220.54" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-012.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.55" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.45", + "118.107.220.46" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-013.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.47" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "qro-420.windscribe.com", + "ips": [ + "149.88.22.33", + "149.88.22.34" + ] + }, + { + "vpn": "wireguard", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-012.whiskergalaxy.com", + "wgpubkey": "V3tmL5CQsOEXUm6DwKAEvKpLZFMLdwI+6aCOIsakER8=", + "ips": [ + "149.88.22.35" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "qro-420.windscribe.com", + "ips": [ + "149.88.22.46", + "149.88.22.47" + ] + }, + { + "vpn": "wireguard", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-013.whiskergalaxy.com", + "wgpubkey": "V3tmL5CQsOEXUm6DwKAEvKpLZFMLdwI+6aCOIsakER8=", + "ips": [ + "149.88.22.48" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kiv-210.windscribe.com", + "ips": [ + "178.175.134.186", + "178.175.134.187" + ] + }, + { + "vpn": "wireguard", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-003.whiskergalaxy.com", + "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", + "ips": [ + "178.175.134.188" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kiv-210.windscribe.com", + "ips": [ + "178.175.142.7", + "178.175.140.209" + ] + }, + { + "vpn": "wireguard", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-004.whiskergalaxy.com", + "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", + "ips": [ + "178.175.140.210" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "185.253.96.2", + "185.253.96.3" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-008.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "185.253.96.4" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "84.17.46.1", + "84.17.46.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-011.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "84.17.46.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-289.windscribe.com", + "ips": [ + "72.11.157.66", + "72.11.157.67" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-013.whiskergalaxy.com", + "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", + "ips": [ + "72.11.157.68" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-289.windscribe.com", + "ips": [ + "72.11.157.34", + "72.11.157.35" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-014.whiskergalaxy.com", + "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", + "ips": [ + "72.11.157.36" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "109.201.130.1", + "109.201.130.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-015.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "109.201.130.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "185.156.172.162", + "185.156.172.163" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-019.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "185.156.172.164" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "195.181.172.145", + "195.181.172.146" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-020.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "195.181.172.147" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "146.70.108.162", + "146.70.108.163" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-030.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "146.70.108.164" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-037.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "185.107.81.129", + "185.107.81.130" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-037.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "185.107.81.131" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-038.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "149.36.51.129", + "149.36.51.130" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-038.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "149.36.51.131" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-039.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "46.166.179.209", + "46.166.179.210" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-039.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "46.166.179.211" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "46.166.129.1", + "46.166.129.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-040.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "46.166.129.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-041.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "185.107.95.49", + "185.107.95.50" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-041.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "185.107.95.51" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "akl-352.windscribe.com", + "ips": [ + "103.108.94.162", + "103.108.94.163" + ] + }, + { + "vpn": "wireguard", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-003.whiskergalaxy.com", + "wgpubkey": "el0He87GLmmywBmn7ErEiuKd5Bjc6Q4zWciL86rYcxw=", + "ips": [ + "103.108.94.164" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "akl-251.windscribe.com", + "ips": [ + "116.90.75.226", + "116.90.75.227" + ] + }, + { + "vpn": "wireguard", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-004.whiskergalaxy.com", + "wgpubkey": "LxvdxRlnn73teVay3m0wY8tP1131yCbfnCAftD+p7VE=", + "ips": [ + "116.90.75.228" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "city": "Skopje", + "hostname": "mk-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "skp-339.windscribe.com", + "ips": [ + "185.225.28.50", + "185.225.28.51" + ] + }, + { + "vpn": "wireguard", + "region": "North Macedonia", + "city": "Skopje", + "hostname": "mk-003.whiskergalaxy.com", + "wgpubkey": "9J0kA4c4i7N/+6B+3j0zFkDTHocZNsw6eK6+sLZ1qCQ=", + "ips": [ + "185.225.28.52" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "185.206.225.130", + "185.206.225.131" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-003.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "185.206.225.132" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "37.120.203.66", + "37.120.203.67" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-006.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "37.120.203.68" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "37.120.149.50", + "37.120.149.51" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-008.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "37.120.149.52" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "city": "Panama City", + "hostname": "pa-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pty-358.windscribe.com", + "ips": [ + "138.186.142.202", + "138.186.142.203" + ] + }, + { + "vpn": "wireguard", + "region": "Panama", + "city": "Panama City", + "hostname": "pa-001.whiskergalaxy.com", + "wgpubkey": "3L8yhe+v7TzBeesOFxSdU2VUa8FG4PTuoiiUoV7DAGY=", + "ips": [ + "138.186.142.204" + ] + }, + { + "vpn": "openvpn", + "region": "Peru", + "city": "Lima", + "hostname": "pe-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lim-367.windscribe.com", + "ips": [ + "95.173.223.78", + "95.173.223.79" + ] + }, + { + "vpn": "wireguard", + "region": "Peru", + "city": "Lima", + "hostname": "pe-004.whiskergalaxy.com", + "wgpubkey": "ZrLVHs2FNXanFBtymCd64gZNNixH7k2K5F9+O+xpt0o=", + "ips": [ + "95.173.223.80" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mnl-365.windscribe.com", + "ips": [ + "128.1.209.254", + "129.227.97.114" + ] + }, + { + "vpn": "wireguard", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-006.whiskergalaxy.com", + "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", + "ips": [ + "129.227.97.115" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mnl-365.windscribe.com", + "ips": [ + "129.227.103.90", + "129.227.97.98" + ] + }, + { + "vpn": "wireguard", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-007.whiskergalaxy.com", + "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", + "ips": [ + "129.227.97.99" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-309.windscribe.com", + "ips": [ + "84.17.55.97", + "84.17.55.98" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-004.whiskergalaxy.com", + "wgpubkey": "MYoOwWssF5fWZ+bOQINzfitdjwyqiHcJhr607wSAzEY=", + "ips": [ + "84.17.55.99" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-237.windscribe.com", + "ips": [ + "37.120.156.18", + "37.120.156.19" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-007.whiskergalaxy.com", + "wgpubkey": "aZkVfQ47eZjQXlFXaXR/joai25TTXOH0jk8JU4S+718=", + "ips": [ + "37.120.156.20" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-237.windscribe.com", + "ips": [ + "37.120.156.34", + "37.120.156.35" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-008.whiskergalaxy.com", + "wgpubkey": "aZkVfQ47eZjQXlFXaXR/joai25TTXOH0jk8JU4S+718=", + "ips": [ + "37.120.156.36" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lis-249.windscribe.com", + "ips": [ + "149.22.86.1", + "149.22.86.2" + ] + }, + { + "vpn": "wireguard", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-004.whiskergalaxy.com", + "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", + "ips": [ + "149.22.86.3" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lis-249.windscribe.com", + "ips": [ + "149.22.86.14", + "149.22.86.15" + ] + }, + { + "vpn": "wireguard", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-005.whiskergalaxy.com", + "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", + "ips": [ + "149.22.86.16" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "otp-105.windscribe.com", + "ips": [ + "91.207.102.146", + "91.207.102.147" + ] + }, + { + "vpn": "wireguard", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-008.whiskergalaxy.com", + "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", + "ips": [ + "91.207.102.148" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "otp-105.windscribe.com", + "ips": [ + "146.70.97.178", + "146.70.97.179" + ] + }, + { + "vpn": "wireguard", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-010.whiskergalaxy.com", + "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", + "ips": [ + "146.70.97.180" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "svo-346.windscribe.com", + "ips": [ + "95.143.177.98", + "95.143.177.101" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-021.whiskergalaxy.com", + "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", + "ips": [ + "95.143.177.99" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "svo-346.windscribe.com", + "ips": [ + "95.143.177.69", + "95.143.177.66" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-022.whiskergalaxy.com", + "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", + "ips": [ + "95.143.177.67" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-265.windscribe.com", + "ips": [ + "188.124.42.114", + "188.124.42.115" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-012.whiskergalaxy.com", + "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", + "ips": [ + "188.124.42.116" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-265.windscribe.com", + "ips": [ + "188.124.42.98", + "188.124.42.99" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-013.whiskergalaxy.com", + "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", + "ips": [ + "188.124.42.100" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.213", + "94.242.50.214" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-016.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.215" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.203", + "94.242.50.204" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-017.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.205" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.193", + "94.242.50.194" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-018.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.195" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.183", + "94.242.50.184" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-019.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.185" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.173", + "94.242.50.174" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-020.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.175" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "beg-288.windscribe.com", + "ips": [ + "146.70.221.18", + "146.70.221.19" + ] + }, + { + "vpn": "wireguard", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-005.whiskergalaxy.com", + "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", + "ips": [ + "146.70.221.20" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "beg-288.windscribe.com", + "ips": [ + "146.70.221.34", + "146.70.221.35" + ] + }, + { + "vpn": "wireguard", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-006.whiskergalaxy.com", + "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", + "ips": [ + "146.70.221.36" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-235.windscribe.com", + "ips": [ + "156.146.56.97", + "156.146.56.98" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-006.whiskergalaxy.com", + "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", + "ips": [ + "156.146.56.99" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-235.windscribe.com", + "ips": [ + "156.146.56.110", + "156.146.56.111" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-007.whiskergalaxy.com", + "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", + "ips": [ + "156.146.56.112" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-241.windscribe.com", + "ips": [ + "103.107.198.226", + "103.107.198.227" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-008.whiskergalaxy.com", + "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", + "ips": [ + "103.107.198.228" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-170.windscribe.com", + "ips": [ + "82.102.25.50", + "82.102.25.51" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-010.whiskergalaxy.com", + "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", + "ips": [ + "82.102.25.52" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-170.windscribe.com", + "ips": [ + "82.102.25.210", + "82.102.25.211" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-011.whiskergalaxy.com", + "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", + "ips": [ + "82.102.25.212" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-241.windscribe.com", + "ips": [ + "103.107.198.242", + "103.107.198.243" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-012.whiskergalaxy.com", + "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", + "ips": [ + "103.107.198.244" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bts-213.windscribe.com", + "ips": [ + "146.70.114.146", + "146.70.114.147" + ] + }, + { + "vpn": "wireguard", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-003.whiskergalaxy.com", + "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", + "ips": [ + "146.70.114.148" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bts-213.windscribe.com", + "ips": [ + "146.70.114.162", + "146.70.114.163" + ] + }, + { + "vpn": "wireguard", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-004.whiskergalaxy.com", + "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", + "ips": [ + "146.70.114.164" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.155.133", + "197.242.157.235" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-001.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.157.255" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.155.197", + "197.242.156.53" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-003.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.156.56" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-232.windscribe.com", + "ips": [ + "165.73.248.90", + "165.73.248.91" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-004.whiskergalaxy.com", + "wgpubkey": "stPvzj5yM1z5Qg9H3gMvAKNPJLU0X3SeUSJPg3wqDR8=", + "ips": [ + "165.73.248.92" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.159.23", + "197.242.159.199" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-006.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.159.229" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-232.windscribe.com", + "ips": [ + "108.181.120.26", + "108.181.120.27" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-008.whiskergalaxy.com", + "wgpubkey": "stPvzj5yM1z5Qg9H3gMvAKNPJLU0X3SeUSJPg3wqDR8=", + "ips": [ + "108.181.120.28" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-409.windscribe.com", + "ips": [ + "149.102.248.110", + "149.102.248.111" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-009.whiskergalaxy.com", + "wgpubkey": "YQMr8hKdHeoj5MMeVyUT5NeGshAbN2QmswaqHNrFjn4=", + "ips": [ + "149.102.248.112" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-409.windscribe.com", + "ips": [ + "149.102.248.97", + "149.102.248.98" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-010.whiskergalaxy.com", + "wgpubkey": "YQMr8hKdHeoj5MMeVyUT5NeGshAbN2QmswaqHNrFjn4=", + "ips": [ + "149.102.248.99" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "icn-362.windscribe.com", + "ips": [ + "45.133.194.210", + "45.133.194.211" + ] + }, + { + "vpn": "wireguard", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-009.whiskergalaxy.com", + "wgpubkey": "rtk1/cMCEyJw9xgs6v0ef0rsk2bwi+sI/zgbo+gLkko=", + "ips": [ + "45.133.194.212" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "icn-399.windscribe.com", + "ips": [ + "58.120.141.74", + "58.120.141.75" + ] + }, + { + "vpn": "wireguard", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-010.whiskergalaxy.com", + "wgpubkey": "4LAPQWjzxtuGHyHjij+ZiM3idLe3xY9IiYNFD/V9akM=", + "ips": [ + "58.120.141.76" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bcn-239.windscribe.com", + "ips": [ + "130.195.250.34", + "130.195.250.35" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-007.whiskergalaxy.com", + "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", + "ips": [ + "130.195.250.36" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bcn-239.windscribe.com", + "ips": [ + "130.195.250.18", + "130.195.250.19" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-008.whiskergalaxy.com", + "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", + "ips": [ + "130.195.250.20" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Madrid", + "hostname": "es-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mad-115.windscribe.com", + "ips": [ + "82.102.17.130", + "82.102.17.131" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Madrid", + "hostname": "es-005.whiskergalaxy.com", + "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", + "ips": [ + "82.102.17.132" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Madrid", + "hostname": "es-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mad-115.windscribe.com", + "ips": [ + "82.102.17.178", + "82.102.17.179" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Madrid", + "hostname": "es-006.whiskergalaxy.com", + "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", + "ips": [ + "82.102.17.180" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-234.windscribe.com", + "ips": [ + "79.142.76.197", + "79.142.76.198" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-002.whiskergalaxy.com", + "wgpubkey": "P5X43E/SgvnJtbrKnJwLFxqFoZGsCghW2SxlXvfdzm0=", + "ips": [ + "79.142.76.199" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-159.windscribe.com", + "ips": [ + "195.181.166.71", + "195.181.166.129" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-003.whiskergalaxy.com", + "wgpubkey": "HENIT1CTAKjPrhG4s64jPJSzEjtEZPRARxA3amm49WU=", + "ips": [ + "195.181.166.130" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-234.windscribe.com", + "ips": [ + "79.142.77.63", + "79.142.77.64" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-005.whiskergalaxy.com", + "wgpubkey": "P5X43E/SgvnJtbrKnJwLFxqFoZGsCghW2SxlXvfdzm0=", + "ips": [ + "79.142.77.65" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-159.windscribe.com", + "ips": [ + "149.50.216.65", + "149.50.216.66" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-006.whiskergalaxy.com", + "wgpubkey": "HENIT1CTAKjPrhG4s64jPJSzEjtEZPRARxA3amm49WU=", + "ips": [ + "149.50.216.67" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-30.windscribe.com", + "ips": [ + "146.70.242.130", + "146.70.242.131" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-007.whiskergalaxy.com", + "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", + "ips": [ + "146.70.242.132" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-30.windscribe.com", + "ips": [ + "146.70.242.146", + "146.70.242.147" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-008.whiskergalaxy.com", + "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", + "ips": [ + "146.70.242.148" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-112.windscribe.com", + "ips": [ + "185.156.175.178", + "185.156.175.179" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-003.whiskergalaxy.com", + "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", + "ips": [ + "185.156.175.180" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "89.187.165.97", + "89.187.165.98" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-005.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "89.187.165.99" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "84.17.53.1", + "84.17.53.2" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-006.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "84.17.53.3" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-112.windscribe.com", + "ips": [ + "37.120.213.162", + "37.120.213.163" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-008.whiskergalaxy.com", + "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", + "ips": [ + "37.120.213.164" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "169.150.197.161", + "169.150.197.162" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-013.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "169.150.197.163" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-264.windscribe.com", + "ips": [ + "141.255.162.194", + "141.255.162.195" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-017.whiskergalaxy.com", + "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", + "ips": [ + "141.255.162.196" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-264.windscribe.com", + "ips": [ + "141.255.162.210", + "141.255.162.211" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-018.whiskergalaxy.com", + "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", + "ips": [ + "141.255.162.212" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.29.76", + "103.4.29.77" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-008.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "103.4.29.78" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.160.11", + "185.189.160.12" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-009.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.160.13" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.30.197", + "185.189.160.27" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-010.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.161.50" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.30.203", + "185.189.160.32" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-011.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.161.51" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.163.157", + "185.189.163.162" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-012.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.163.176" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.163.211", + "185.189.163.214" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-013.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.163.219" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-361.windscribe.com", + "ips": [ + "103.27.203.47", + "103.230.122.176" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-006.whiskergalaxy.com", + "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", + "ips": [ + "103.230.122.177" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-415.windscribe.com", + "ips": [ + "212.80.214.2", + "212.80.214.3" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-007.whiskergalaxy.com", + "wgpubkey": "jPRI236aNThUWlgrP2LY1HKCusk/ZIWiVIIV0u6bShU=", + "ips": [ + "212.80.214.4" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-415.windscribe.com", + "ips": [ + "45.154.27.207", + "45.154.27.3" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-010.whiskergalaxy.com", + "wgpubkey": "jPRI236aNThUWlgrP2LY1HKCusk/ZIWiVIIV0u6bShU=", + "ips": [ + "45.154.27.203" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-361.windscribe.com", + "ips": [ + "103.27.203.46", + "116.206.126.48" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-015.whiskergalaxy.com", + "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", + "ips": [ + "116.206.126.49" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.132.34", + "89.252.132.35" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-018.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.132.36" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-405.windscribe.com", + "ips": [ + "45.136.155.225", + "45.136.155.226" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-020.whiskergalaxy.com", + "wgpubkey": "YQvL8lipIGjEE4qgpjMX3FrG+CnVNFyiGgg3wkvhSw4=", + "ips": [ + "45.136.155.227" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-405.windscribe.com", + "ips": [ + "149.102.229.193", + "149.102.229.194" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-021.whiskergalaxy.com", + "wgpubkey": "YQvL8lipIGjEE4qgpjMX3FrG+CnVNFyiGgg3wkvhSw4=", + "ips": [ + "149.102.229.195" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-029.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.132.18", + "89.252.132.19" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-029.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.132.20" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.133.211", + "89.252.133.212" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-030.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.133.213" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-031.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.133.237", + "89.252.133.238" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-031.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.133.239" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.130", + "107.150.31.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-015.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.129.18.130", + "104.129.18.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-020.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.129.18.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-034.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "161.129.70.194", + "161.129.70.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-034.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "161.129.70.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.66", + "107.150.31.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-050.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-070.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.30.194", + "107.150.30.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-070.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.30.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "162.222.198.130", + "162.222.198.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-077.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "162.222.198.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-087.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.223.93.130", + "104.223.93.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-087.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.223.93.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-088.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "155.94.216.130", + "155.94.216.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-088.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "155.94.216.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-089.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "155.94.216.194", + "155.94.216.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-089.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "155.94.216.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-100.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.2", + "107.150.31.3" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-100.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-101.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.194", + "107.150.31.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-101.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-103.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.223.88.2", + "104.223.88.3" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-103.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.223.88.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-107.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-331.windscribe.com", + "ips": [ + "154.47.28.129", + "154.47.28.130" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-107.whiskergalaxy.com", + "wgpubkey": "v8yTgxOMZjdZkCUoBVMUOiDBYgaNzQ9OfXc+uz2GUDc=", + "ips": [ + "154.47.28.131" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-029.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "198.55.125.194", + "198.55.125.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-029.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "198.55.125.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-036.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "204.44.112.66", + "204.44.112.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-036.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "204.44.112.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-037.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "204.44.112.130", + "204.44.112.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-037.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "204.44.112.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-328.windscribe.com", + "ips": [ + "172.241.115.46", + "172.241.131.129" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-045.whiskergalaxy.com", + "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", + "ips": [ + "172.241.131.130" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-055.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "206.217.139.18", + "206.217.139.19" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-055.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "206.217.139.20" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-328.windscribe.com", + "ips": [ + "172.241.113.18", + "172.241.26.78" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-057.whiskergalaxy.com", + "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", + "ips": [ + "172.241.26.79" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-060.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "198.55.126.130", + "198.55.126.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-060.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "198.55.126.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-067.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "104.223.98.194", + "104.223.98.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-067.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "104.223.98.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-072.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "162.218.120.66", + "162.218.120.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-072.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "162.218.120.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-078.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "155.94.248.66", + "155.94.248.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-078.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "155.94.248.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "192.161.189.130", + "192.161.189.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-079.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "192.161.189.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-080.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "192.161.188.194", + "192.161.188.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-080.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "192.161.188.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-081.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "155.94.249.66", + "155.94.249.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-081.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "155.94.249.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-095.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "206.217.134.114", + "206.217.134.115" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-095.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "206.217.134.116" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-096.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "23.95.42.210", + "23.95.42.211" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-096.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "23.95.42.212" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-104.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-414.windscribe.com", + "ips": [ + "149.88.100.65", + "149.88.100.66" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-104.whiskergalaxy.com", + "wgpubkey": "gSj19b2N8kfxHE9SuU2IS+FGZaOlL5p5b3xth9adhHE=", + "ips": [ + "149.88.100.67" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Denver", + "hostname": "us-central-106.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "den-145.windscribe.com", + "ips": [ + "95.173.221.1", + "95.173.221.2" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Denver", + "hostname": "us-central-106.whiskergalaxy.com", + "wgpubkey": "c31sdkhmVsucRVa6nSNNSiZ2UHHLdUhq5gvfdJxSnFw=", + "ips": [ + "95.173.221.3" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-097.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mci-371.windscribe.com", + "ips": [ + "74.80.181.131", + "74.80.181.132" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-097.whiskergalaxy.com", + "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", + "ips": [ + "74.80.181.133" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-098.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mci-371.windscribe.com", + "ips": [ + "74.80.181.146", + "74.80.181.147" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-098.whiskergalaxy.com", + "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", + "ips": [ + "74.80.181.148" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "199.217.105.226", + "199.217.105.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-051.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "199.217.105.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-117.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.40.50.81", + "149.40.50.82" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-117.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.40.50.83" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-118.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.40.50.66", + "149.40.50.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-118.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.40.50.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-123.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "192.34.83.226", + "192.34.83.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-123.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "192.34.83.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-124.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "199.217.104.226", + "199.217.104.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-124.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "199.217.104.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-125.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.88.108.1", + "149.88.108.2" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-125.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.88.108.3" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "buf-281.windscribe.com", + "ips": [ + "104.168.34.146", + "104.168.34.147" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-045.whiskergalaxy.com", + "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", + "ips": [ + "104.168.34.148" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-065.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "buf-281.windscribe.com", + "ips": [ + "198.12.64.34", + "198.12.64.35" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-065.whiskergalaxy.com", + "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", + "ips": [ + "198.12.64.36" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "clt-303.windscribe.com", + "ips": [ + "67.21.32.144", + "67.21.32.145" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-040.whiskergalaxy.com", + "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", + "ips": [ + "67.21.32.146" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-100.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "clt-303.windscribe.com", + "ips": [ + "192.158.226.14", + "192.158.226.15" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-100.whiskergalaxy.com", + "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", + "ips": [ + "192.158.226.16" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.50.226", + "68.235.50.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-015.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.50.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "23.226.141.194", + "23.226.141.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-019.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "23.226.141.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "167.160.172.2", + "167.160.172.3" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-022.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "167.160.172.4" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "107.150.29.130", + "107.150.29.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-053.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "107.150.29.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-071.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.35.11", + "68.235.35.12" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-071.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.35.13" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.43.203", + "68.235.43.204" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-077.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.43.205" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-086.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "208.77.22.99", + "208.77.22.100" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-086.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "208.77.22.101" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-101.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "107.150.28.130", + "107.150.28.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-101.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "107.150.28.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-128.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-323.windscribe.com", + "ips": [ + "154.47.25.65", + "154.47.25.66" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-128.whiskergalaxy.com", + "wgpubkey": "5LYbbr320XMoXPrLsZex+2cDAMUOnzX5Htpcgb4Uc1c=", + "ips": [ + "154.47.25.67" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-112.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cle-146.windscribe.com", + "ips": [ + "104.244.209.34", + "104.244.209.35" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-112.whiskergalaxy.com", + "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", + "ips": [ + "104.244.209.36" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-114.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cle-146.windscribe.com", + "ips": [ + "104.244.209.66", + "104.244.209.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-114.whiskergalaxy.com", + "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", + "ips": [ + "104.244.209.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dtw-368.windscribe.com", + "ips": [ + "104.244.210.50", + "104.244.210.51" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-079.whiskergalaxy.com", + "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", + "ips": [ + "104.244.210.52" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-098.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dtw-368.windscribe.com", + "ips": [ + "104.244.210.242", + "104.244.210.243" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-098.whiskergalaxy.com", + "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", + "ips": [ + "104.244.210.244" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "173.44.36.66", + "173.44.36.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-006.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "173.44.36.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-028.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "104.223.127.194", + "104.223.127.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-028.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "104.223.127.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-067.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-140.windscribe.com", + "ips": [ + "86.106.87.82", + "86.106.87.83" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-067.whiskergalaxy.com", + "wgpubkey": "1S9LgDyVSo2X34ZG8ukQQ7vqL5RpmXszNe0SYNjiUws=", + "ips": [ + "86.106.87.84" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-097.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "173.44.43.130", + "173.44.43.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-097.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "173.44.43.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-129.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-326.windscribe.com", + "ips": [ + "149.34.248.65", + "149.34.248.66" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-129.whiskergalaxy.com", + "wgpubkey": "makkxzTeghSw9LGaFifz0C251aBeDCKhMmtJ8p0E6Uw=", + "ips": [ + "149.34.248.67" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "162.222.195.66", + "162.222.195.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-020.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "162.222.195.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-054.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "167.160.167.194", + "167.160.167.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-054.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "167.160.167.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-095.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "173.205.85.162", + "173.205.85.163" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-095.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "173.205.85.164" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "185.232.22.194", + "185.232.22.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-013.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "185.232.22.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-031.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "77.81.136.66", + "77.81.136.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-031.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "77.81.136.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-063.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "92.119.177.82", + "92.119.177.83" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-063.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "92.119.177.84" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-068.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "142.234.200.140", + "142.234.200.176" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-068.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "23.81.64.130" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-074.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "217.138.255.178", + "217.138.255.179" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-074.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "217.138.255.180" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-116.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-384.windscribe.com", + "ips": [ + "149.102.226.97", + "149.102.226.98" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-116.whiskergalaxy.com", + "wgpubkey": "VB4VC+CyLyFtYO86OsTV4Z17X/sa1t3pPqbJejI/Enc=", + "ips": [ + "149.102.226.99" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-119.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "142.234.204.65", + "142.234.204.1" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-119.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "142.234.204.2" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-120.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-384.windscribe.com", + "ips": [ + "149.88.21.129", + "149.88.21.130" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-120.whiskergalaxy.com", + "wgpubkey": "VB4VC+CyLyFtYO86OsTV4Z17X/sa1t3pPqbJejI/Enc=", + "ips": [ + "149.88.21.131" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-127.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "108.62.49.221", + "23.81.64.209" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-127.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "23.81.64.210" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-052.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mco-336.windscribe.com", + "ips": [ + "198.147.22.186", + "198.147.22.225" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-052.whiskergalaxy.com", + "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", + "ips": [ + "198.147.22.227" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-082.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mco-336.windscribe.com", + "ips": [ + "66.115.182.130", + "66.115.182.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-082.whiskergalaxy.com", + "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", + "ips": [ + "66.115.182.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-061.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-348.windscribe.com", + "ips": [ + "23.172.112.226", + "23.172.112.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-061.whiskergalaxy.com", + "wgpubkey": "oZSSjyLgPsssnrWYUZYiU5x1wF4wuuENQUoY5S4oeHc=", + "ips": [ + "23.172.112.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-121.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-413.windscribe.com", + "ips": [ + "23.148.146.178", + "23.146.243.194" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-121.whiskergalaxy.com", + "wgpubkey": "1Fy3ynW7Y8y0VTKH/J2IP5ETlXF/ATneNmZDhydyvxA=", + "ips": [ + "23.146.243.195" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-122.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-413.windscribe.com", + "ips": [ + "23.148.146.179", + "23.146.243.210" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-122.whiskergalaxy.com", + "wgpubkey": "1Fy3ynW7Y8y0VTKH/J2IP5ETlXF/ATneNmZDhydyvxA=", + "ips": [ + "23.146.243.211" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-113.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sbn-388.windscribe.com", + "ips": [ + "74.80.180.194", + "74.80.180.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-113.whiskergalaxy.com", + "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", + "ips": [ + "74.80.180.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-115.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sbn-388.windscribe.com", + "ips": [ + "74.80.180.178", + "74.80.180.179" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-115.whiskergalaxy.com", + "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", + "ips": [ + "74.80.180.180" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Tampa", + "hostname": "us-east-110.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpa-349.windscribe.com", + "ips": [ + "38.95.13.130", + "38.95.13.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Tampa", + "hostname": "us-east-110.whiskergalaxy.com", + "wgpubkey": "jqf7HHmkBdzk1kkGLD20O/EzLHSFV2Bc7z4MeHcP7iA=", + "ips": [ + "38.95.13.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-089.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.247", + "198.7.56.226" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-089.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "198.7.56.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-090.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.248", + "198.7.56.231" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-090.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "207.244.91.131" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-092.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.232", + "207.244.91.143" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-092.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "207.244.91.144" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-093.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.230", + "198.7.56.238" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-093.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "198.7.56.239" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Bend", + "hostname": "us-west-038.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pdx-302.windscribe.com", + "ips": [ + "104.152.222.32", + "104.152.222.33" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Bend", + "hostname": "us-west-038.whiskergalaxy.com", + "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", + "ips": [ + "104.152.222.34" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Bend", + "hostname": "us-west-072.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pdx-302.windscribe.com", + "ips": [ + "104.255.169.109", + "104.255.169.110" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Bend", + "hostname": "us-west-072.whiskergalaxy.com", + "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", + "ips": [ + "104.255.169.111" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-075.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "las-183.windscribe.com", + "ips": [ + "37.120.147.146", + "37.120.147.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-075.whiskergalaxy.com", + "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", + "ips": [ + "37.120.147.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-076.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "las-183.windscribe.com", + "ips": [ + "82.102.31.146", + "82.102.31.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-076.whiskergalaxy.com", + "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", + "ips": [ + "82.102.31.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "185.236.200.34", + "185.236.200.35" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-004.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "185.236.200.36" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "216.45.53.130", + "216.45.53.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-015.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "216.45.53.132" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-027.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "212.103.49.66", + "212.103.49.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-027.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "212.103.49.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "89.187.185.33", + "89.187.185.34" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-040.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "89.187.185.35" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-044.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-321.windscribe.com", + "ips": [ + "192.3.20.50", + "192.3.20.51" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-044.whiskergalaxy.com", + "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", + "ips": [ + "192.3.20.52" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-047.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-327.windscribe.com", + "ips": [ + "23.19.68.138", + "172.241.214.202" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-047.whiskergalaxy.com", + "wgpubkey": "sgBIEKuocQBegrbXRmTVl6QvbhdXj2MQlIrhfEMf3RQ=", + "ips": [ + "172.241.214.203" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-055.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.3.66", + "104.129.3.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-055.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.3.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-059.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.3.162", + "104.129.3.163" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-059.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.3.164" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-060.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "217.138.217.50", + "217.138.217.51" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-060.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "217.138.217.52" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-063.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-321.windscribe.com", + "ips": [ + "198.23.242.146", + "198.23.242.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-063.whiskergalaxy.com", + "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", + "ips": [ + "198.23.242.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-065.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "217.138.217.210", + "217.138.217.211" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-065.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "217.138.217.212" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-066.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "89.187.187.97", + "89.187.187.98" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-066.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "89.187.187.99" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-069.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "185.152.67.225", + "185.152.67.226" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-069.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "185.152.67.227" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-070.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.4.66", + "104.129.4.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-070.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.4.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-046.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phx-325.windscribe.com", + "ips": [ + "23.83.129.72", + "23.83.130.166" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-046.whiskergalaxy.com", + "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", + "ips": [ + "23.83.130.167" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-061.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phx-325.windscribe.com", + "ips": [ + "23.83.129.65", + "23.83.131.187" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-061.whiskergalaxy.com", + "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", + "ips": [ + "23.83.184.129" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-048.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "172.241.250.137", + "172.241.250.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-048.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "172.241.250.171" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "209.58.129.83", + "209.58.129.121" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-053.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "209.58.129.122" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-054.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "209.58.129.88", + "172.255.125.141" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-054.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "172.255.125.161" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-078.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-337.windscribe.com", + "ips": [ + "149.50.212.206", + "149.50.212.207" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-078.whiskergalaxy.com", + "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", + "ips": [ + "149.50.212.208" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-337.windscribe.com", + "ips": [ + "149.50.212.193", + "149.50.212.194" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-079.whiskergalaxy.com", + "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", + "ips": [ + "149.50.212.195" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-333.windscribe.com", + "ips": [ + "167.88.60.226", + "167.88.60.227" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-050.whiskergalaxy.com", + "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", + "ips": [ + "167.88.60.228" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-333.windscribe.com", + "ips": [ + "167.88.60.242", + "167.88.60.243" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-051.whiskergalaxy.com", + "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", + "ips": [ + "167.88.60.244" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-043.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-221.windscribe.com", + "ips": [ + "23.94.74.98", + "23.94.74.99" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-043.whiskergalaxy.com", + "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", + "ips": [ + "23.94.74.100" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-056.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.66", + "104.129.56.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-056.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.130", + "104.129.56.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-057.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.132" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-062.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-221.windscribe.com", + "ips": [ + "198.12.116.194", + "198.12.116.195" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-062.whiskergalaxy.com", + "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", + "ips": [ + "198.12.116.196" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-071.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.2", + "104.129.56.3" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-071.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.4" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-182.windscribe.com", + "ips": [ + "149.22.88.65", + "149.22.88.66" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-077.whiskergalaxy.com", + "wgpubkey": "mPzcl2obsDyjjBl4tExF+gSle0jEhv9bHRZEi8D0PQA=", + "ips": [ + "149.22.88.67" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kbp-383.windscribe.com", + "ips": [ + "37.19.218.1", + "37.19.218.2" + ] + }, + { + "vpn": "wireguard", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-010.whiskergalaxy.com", + "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", + "ips": [ + "37.19.218.3" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kbp-383.windscribe.com", + "ips": [ + "37.19.218.15", + "37.19.218.16" + ] + }, + { + "vpn": "wireguard", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-011.whiskergalaxy.com", + "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", + "ips": [ + "37.19.218.17" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dxb-304.windscribe.com", + "ips": [ + "146.70.191.98", + "146.70.191.99" + ] + }, + { + "vpn": "wireguard", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-002.whiskergalaxy.com", + "wgpubkey": "TKpGTxyjCr7+CiVhaYulaLZ7pnXEsg4135ZIlz99qwc=", + "ips": [ + "146.70.191.100" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dxb-304.windscribe.com", + "ips": [ + "146.70.191.194", + "146.70.191.195" + ] + }, + { + "vpn": "wireguard", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-003.whiskergalaxy.com", + "wgpubkey": "TKpGTxyjCr7+CiVhaYulaLZ7pnXEsg4135ZIlz99qwc=", + "ips": [ + "146.70.191.196" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-026.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.242", + "193.36.118.243" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-026.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.244" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.226", + "193.36.118.227" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-030.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.228" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-043.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.210", + "193.36.118.211" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-043.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.212" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "185.212.168.132", + "185.212.168.133" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-007.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "185.212.168.134" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.1", + "212.102.63.2" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-020.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.3" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.31", + "212.102.63.32" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-021.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.33" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.61", + "212.102.63.62" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-022.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.63" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-024.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "217.138.254.50", + "217.138.254.51" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-024.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "217.138.254.52" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-033.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "146.70.95.114", + "146.70.95.115" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-033.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "146.70.95.116" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-036.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "84.17.50.193", + "84.17.50.194" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-036.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "84.17.50.195" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-042.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-335.windscribe.com", + "ips": [ + "5.252.69.4", + "202.43.6.34" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-042.whiskergalaxy.com", + "wgpubkey": "qWSr7Tf40kvS+0kv4TbpSb6EevhSvn3kuXsjn2eWbA4=", + "ips": [ + "202.43.6.35" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-044.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.18", + "37.120.233.19" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-044.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.20" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.34", + "37.120.233.35" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-045.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.36" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-046.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.50", + "37.120.233.51" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-046.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.52" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "han-122.windscribe.com", + "ips": [ + "103.9.79.185", + "103.9.79.186" + ] + }, + { + "vpn": "wireguard", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-002.whiskergalaxy.com", + "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", + "ips": [ + "103.9.79.187" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "han-122.windscribe.com", + "ips": [ + "103.9.79.218", + "103.9.79.219" + ] + }, + { + "vpn": "wireguard", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-004.whiskergalaxy.com", + "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", + "ips": [ + "103.9.79.220" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-292.windscribe.com", + "ips": [ + "149.57.28.10", + "149.57.28.49" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-003.whiskergalaxy.com", + "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", + "ips": [ + "149.57.28.50" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-292.windscribe.com", + "ips": [ + "104.254.92.98", + "104.254.92.99" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-004.whiskergalaxy.com", + "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", + "ips": [ + "104.254.92.100" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX JP", + "city": "Tokyo", + "hostname": "wf-jp-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-291.windscribe.com", + "ips": [ + "103.135.244.3", + "5.181.235.67" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX JP", + "city": "Tokyo", + "hostname": "wf-jp-002.whiskergalaxy.com", + "wgpubkey": "RDqLEpYi8AT8yjjNQP12tsBvGxPekebtT0SC+gk2oAw=", + "ips": [ + "5.181.235.68" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "45.9.248.2", + "45.9.248.3" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-001.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "45.9.248.4" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "81.92.200.84", + "81.92.200.85" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-006.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "81.92.200.86" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "89.47.62.82", + "89.47.62.83" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-007.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "89.47.62.84" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "146.70.25.2", + "146.70.25.3" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-010.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "146.70.25.4" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "146.70.25.66", + "146.70.25.67" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-011.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "146.70.25.68" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "185.232.22.130", + "185.232.22.131" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-012.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "185.232.22.132" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "217.138.206.210", + "217.138.206.211" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-013.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "217.138.206.212" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "77.81.136.98", + "77.81.136.99" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-014.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "77.81.136.100" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "38.132.101.210", + "38.132.101.211" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-015.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "38.132.101.212" + ] + } + ] + } +} diff --git a/invidious/invidious-vpn-2/haproxy.cfg b/invidious/invidious-vpn-2/haproxy.cfg new file mode 100644 index 0000000..ff7bb07 --- /dev/null +++ b/invidious/invidious-vpn-2/haproxy.cfg @@ -0,0 +1,45 @@ +global + # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom + maxconn 8192 + # 777 perms for all sockets + unix-bind mode 777 + stats socket ipv4@0.0.0.0:8405 level admin + +resolvers docker + # To be able to use multiple replicas of invidious + # using domains + nameserver dns1 127.0.0.11:53 + +defaults + mode http + # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ + # Use another server if one takes too long to reply + retries 2 + option redispatch + timeout client 30s + timeout connect 30s + timeout server 120s + timeout queue 10s + http-reuse always + +# Prometheus for graphs +frontend prometheus + bind *:8404 + mode http + http-request use-service prometheus-exporter if { path /metrics } + no log + +frontend invidious + bind *:8001 + default_backend invidious + +backend invidious + balance roundrobin + + server invidious-1-vpn gluetun:3000 check init-addr libc,none + server invidious-2-vpn gluetun:3001 check init-addr libc,none + server invidious-3-vpn gluetun:3002 check init-addr libc,none + server invidious-4-vpn gluetun:3003 check init-addr libc,none + server invidious-5-vpn gluetun:3004 check init-addr libc,none + server invidious-6-vpn gluetun:3005 check init-addr libc,none + diff --git a/invidious/invidious-vpn-2/haproxy/haproxy.cfg b/invidious/invidious-vpn-2/haproxy/haproxy.cfg deleted file mode 100644 index 22179ed..0000000 --- a/invidious/invidious-vpn-2/haproxy/haproxy.cfg +++ /dev/null @@ -1,150 +0,0 @@ -global - # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom - maxconn 16384 - # 777 perms for all sockets - unix-bind mode 777 - stats socket ipv4@0.0.0.0:8405 level admin - -resolvers docker - # To be able to use multiple replicas of invidious - # using domains - nameserver dns1 127.0.0.11:53 - -defaults - mode http - # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ - # Use another server if one takes too long to reply - retries 2 - option redispatch - timeout client 30s - timeout connect 5s - timeout server 30s - timeout queue 10s - http-reuse always - -# Prometheus for graphs -frontend prometheus - bind *:8404 - mode http - http-request use-service prometheus-exporter if { path /metrics } - no log - -frontend stats - mode http - bind *:8405 - stats enable - stats uri /stats - stats refresh 1s - stats admin if TRUE - -cache invidious-thumbnail-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 30min - max-age 1800 - process-vary on - -cache invidious-ggpht-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 1h - max-age 3600 - process-vary on - -cache invidious-sb-cache - # 128MB - total-max-size 128 - # 128kB - max-object-size 131072 - # 1h - max-age 86400 - process-vary on - -frontend invidious - http-request set-var(txn.ipath) path - bind *:8001 - default_backend invidious - -frontend invidious-tor - http-request set-var(txn.ipath) path - bind *:8002 - default_backend invidious-tor - -frontend invidious-i2p - http-request set-var(txn.ipath) path - bind *:8003 - default_backend invidious-i2p - -frontend http3-proxy - http-request set-var(txn.hpath) path - bind *:8004 - default_backend http3-proxy - -backend invidious - balance roundrobin - - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-1-vpn gluetun:3000 check init-addr libc,none - server invidious-2-vpn gluetun:3001 check init-addr libc,none - server invidious-3-vpn gluetun:3002 check init-addr libc,none - server invidious-4-vpn gluetun:3003 check init-addr libc,none - server invidious-5-vpn gluetun:3004 check init-addr libc,none - server invidious-6-vpn gluetun:3005 check init-addr libc,none - -backend invidious-tor - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-tor-vpn gluetun:3010 check init-addr libc,none - -backend invidious-i2p - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-i2p-vpn gluetun:3011 check init-addr libc,none - -backend http3-proxy - # Caches video thumbnails, profile pictures and others - http-request cache-use invidious-thumbnail-cache if { path_beg /vi/ } - http-response cache-store invidious-thumbnail-cache - http-request cache-use invidious-ggpht-cache if { path_beg /ggpht/ } - http-response cache-store invidious-ggpht-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl youtube_thumbnails var(txn.hpath) -m beg /vi/ - acl youtube_ggpht var(txn.hpath) -m beg /ggpht/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_ggpht - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_ggpht - - server http3-proxy-1-vpn gluetun:8080 check init-addr libc,none - diff --git a/invidious/invidious-vpn/docker-compose.yml b/invidious/invidious-vpn/docker-compose.yml index 3e3793a..630ec35 100644 --- a/invidious/invidious-vpn/docker-compose.yml +++ b/invidious/invidious-vpn/docker-compose.yml @@ -1,156 +1,77 @@ -# Docker compose file for ${DOMAIN} +# Docker compose file for Backend 2 of inv.nadeko.net services: + invidious-extend: + env_file: + # Env file containing variables like TAG, INV_MEM_* + - .env + # Env file containing INVIDIOUS_* variables + - ../.env + image: "git.nadeko.net/fijxu/invidious:${TAG}" + restart: unless-stopped + mem_limit: ${INV_MEM_LIMIT} + mem_reservation: ${INV_MEM_RESERVATION} + cpus: ${INV_CPU} # Limit to X% of the CPU + network_mode: "service:gluetun" + volumes: + - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw + - ./config.yml:/etc/invidious/config.yml:ro + depends_on: + # - inv_sig_helper + - haproxy + environment: + INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" + healthcheck: + test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 + interval: 300s + timeout: 5s + retries: 2 + # INVIDIOUS CLEARNET invidious: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3000" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - - # INVIDIOUS CLEARNET - invidious-2: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + invidious2: + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3001" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - # INVIDIOUS CLEARNET - invidious-3: - image: "git.nadeko.net/fijxu/invidious:${TAG}" - env_file: - - .env - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro + invidious3: + extends: + service: invidious-extend environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" INVIDIOUS_PORT: "3002" - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - # INVIDIOUS TOR - invidious-tor: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion" - INVIDIOUS_PORT: "3010" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - - # INVIDIOUS I2P - invidious-i2p: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - network_mode: "service:gluetun" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.zzls.i2p" - INVIDIOUS_PORT: "3011" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 + invidious4: + extends: + service: invidious-extend + INVIDIOUS_PORT: "3003" # SIGNATURE HELPER - inv_sig_helper: - image: quay.io/invidious/inv-sig-helper - restart: unless-stopped - network_mode: "service:gluetun" - mem_limit: "512m" - init: true - command: ["--tcp", "0.0.0.0:12999"] - environment: - - RUST_LOG=info - depends_on: - - gluetun + # inv_sig_helper: + # image: quay.io/invidious/inv-sig-helper + # restart: unless-stopped + # network_mode: "service:gluetun" + # mem_limit: "512m" + # init: true + # command: ["--tcp", "0.0.0.0:12999"] + # environment: + # - RUST_LOG=info + # depends_on: + # - gluetun - http3-proxy: - image: git.nadeko.net/fijxu/http3-proxy:latest - restart: unless-stopped - network_mode: "service:gluetun" - environment: - DISABLE_WEBP: 1 - depends_on: - - gluetun + # http3-proxy: + # image: git.nadeko.net/fijxu/http3-ytproxy:latest + # restart: unless-stopped + # network_mode: "service:gluetun" + # depends_on: + # - haproxy + # - gluetun - # Without depends because haproxy is smart haproxy: image: haproxy:lts-alpine restart: unless-stopped @@ -158,15 +79,15 @@ services: # Invidious - "127.0.0.1:10070:8001" # TOR - - "127.0.0.1:10072:8002" + #- "127.0.0.1:10072:8002" # I2P - - "127.0.0.1:10073:8003" + #- "127.0.0.1:10073:8003" # HTTP3-PROXY - # - "127.0.0.1:10071:8004" + #- "127.0.0.1:10071:8004" # METRICS - "127.0.0.1:10074:8404" volumes: - - ./haproxy:/usr/local/etc/haproxy + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg networks: gluetun_network: depends_on: @@ -175,11 +96,6 @@ services: gluetun: image: qmcgaw/gluetun restart: unless-stopped - ports: - # THIS IS ACTUALLY THE PORT OF HTTP3-PROXY - # SINCE THE HTTP3-PTOXY SERVICE IS RUNNING - # UNDER GLUETUN NETWORK. - - "127.0.0.1:10071:8080" env_file: - .env cap_add: @@ -198,6 +114,16 @@ services: networks: gluetun_network: + ptgen: + image: git.nadeko.net/fijxu/youtube-po-token-generator:latest + cpus: 0.1 + restart: unless-stopped + network_mode: "service:gluetun" + environment: + - HOST=valkey-vpn + depends_on: + - gluetun + networks: default: name: invidious-vpn diff --git a/invidious/invidious-vpn/gluetun/servers.json b/invidious/invidious-vpn/gluetun/servers.json new file mode 100644 index 0000000..6527e65 --- /dev/null +++ b/invidious/invidious-vpn/gluetun/servers.json @@ -0,0 +1,303403 @@ +{ + "version": 1, + "airvpn": { + "version": 1, + "timestamp": 1721997873, + "servers": [ + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:5::2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.9.19.106" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:5::5" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.109" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:5::6" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Alderamin", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.110" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:53:b08a:68c7:fb3b:ec5f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.155.178" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:53:2751:b011:52b5:b3ed" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.181" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:53:5513:3e06:b9a2:598a" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Beemim", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.182" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:29:b:faa9:4fd1:4875:e276" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.64.127.194" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:b:87a4:f86:450:7fd5" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.197" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:29:b:56a1:1cee:cbae:e194" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "server_name": "Caelum", + "hostname": "at4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.198" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:a:78f8:16af:14f6:17f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.90" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:a:eb24:ad41:1640:8511" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.93" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:a:7fd9:2d41:32f9:6e1b" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Capricornus", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.94" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:f:9ff8:eafb:3bb8:3c4f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.207.57.114" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:f:80eb:9a7b:3c0f:e4cf" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.117" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:f:fbe4:6628:e869:84f8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Castor", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.118" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:9:49d9:6608:eceb:6822" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.114" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:9:28ca:421c:1d6:d189" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.117" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:9:8136:29d7:563f:9c7a" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Columba", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.118" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:8:9b5f:d788:39c5:3301" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.162" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:8:1730:6aa8:4347:b506" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.165" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:8:a224:de0d:b5a7:d90a" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Diadema", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.166" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:27:7:1a57:eb84:b379:a27c" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.187.251.154" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:7:4e0d:f09c:900:fed8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.157" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:27:7:8d2d:ea10:2093:e495" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "server_name": "Mebsuta", + "hostname": "be4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.158" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:75:25:722d:86d3:4565:bf1a" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.163.90" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:75:25:17cb:500a:be02:bc89" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.163.93" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:75:25:710:4ad1:8bb8:162d" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "America", + "city": "Sao Paulo", + "server_name": "Fulu", + "hostname": "br4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.163.94" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:30:d:6df1:6c92:a457:db3f" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.23.130" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:d:8c6:2ca6:8c95:3efd" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.133" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:d:4081:60c:298d:9f65" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Apus", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.134" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:30:e:f5ff:9736:27b0:1afd" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.23.138" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:e:1b5f:6a17:ae55:6af3" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.141" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:30:e:cc9f:8a2c:11a9:6da0" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Grus", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.142" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7145:0:1:e924:6de2:b32e:28a9" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.46.117.89" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:0:1:8df7:aef3:7cfa:9359" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.92" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:0:1:601e:256e:23ad:cab7" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "server_name": "Wazn", + "hostname": "bg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.93" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:9:9:aed0:e223:e8dd:d27f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "87.101.92.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:9:b626:eb74:bd39:7646" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:9:6552:59d9:a42a:8cf0" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Lacerta", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.174" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:9:3f:5db9:e0be:3d00:c0e7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "139.28.218.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:3f:14e4:ec70:70be:3dd5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:9:3f:1a41:aac3:5dbe:63c2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Montreal", + "server_name": "Ross", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:6:ddb0:6fe6:c526:9e8a" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:6:c5ce:4032:c367:dc3a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:6:3dd6:5e5e:e452:4c1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Agena", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.214" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:3:deae:466b:161e:2d24" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "162.219.176.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:3:d56f:433c:230f:b0ac" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:3:f19e:5185:3202:819e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alhena", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:16:8a24:a1d6:81d5:caf" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:16:a6bd:92ac:ac9:cc2f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:16:b22a:c24f:69ca:7e42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alkurhah", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:7:f062:3298:851e:7cd8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:7:7b23:837f:22f6:9b60" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:7:ec7c:8f59:8e13:e4e4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Aludra", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:30:84f1:1858:f60c:8ea" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:30:c97f:abf1:715d:18f4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.109" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:30:d8db:3034:e4a8:5fd2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alwaid", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:13:2b9b:7d03:9679:33d3" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:13:4f5e:882e:f2b6:df9f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:13:f9a2:1a35:a8ee:6cad" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Alya", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.174" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:12:a847:3338:53bb:e8d3" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:12:65be:a5e:9919:2cbc" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:12:29c2:859:c15c:c453" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Angetenar", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.166" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:17:621b:590c:ee14:76e8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:17:f090:f5ea:51bc:97b6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:17:728c:4b13:5bdd:fbfa" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Arkab", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.214" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:9:ad5d:f490:3982:a40" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:9:1485:1277:203c:bc91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:9:a765:215d:2bec:311" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Avior", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:c:fab7:78e8:4f3a:6eda" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.214.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:c:6040:990d:db42:5d85" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.214.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:c:7a49:ae32:17cf:bd5a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Cephei", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.214.166" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:8:82ac:e2c1:7cf8:371c" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.234" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:8:43f8:ec8:f49b:9a51" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:8:b86d:25a1:7287:b273" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Chort", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.238" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:9:15a2:d969:773f:e2be" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:9:9fe2:f306:be43:48a2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.245" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:9:c233:4906:ffba:a7d2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Enif", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.246" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:a:7b9c:6b1:caf1:56e2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.250" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:a:58ba:4d7a:8cbf:b2b9" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.253" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:a:8f46:8400:31d5:677b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Gorgonea", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.254" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:d:8ee7:3366:303e:c465" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:d:ad00:5cdf:2c6:8210" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:d:a233:590a:2a85:cc93" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Lesath", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:7:6ccc:a3ce:93d0:a3c7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:7:f2a9:8074:eabb:24d0" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.221" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:7:bae7:e11f:4555:149a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Mintaka", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.222" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:e:df81:90c9:1699:6cd0" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:e:a723:7ad1:f110:39a4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:e:f7fb:a1a6:d988:f9ca" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Regulus", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.38" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:5:1855:336:8fe5:c428" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.186" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:5:b8b4:1d0b:765c:eb0d" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:5:20dc:5109:4d0c:2556" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Rotanev", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.190" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:14:148c:a80:695e:b3db" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.178" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:14:2c8c:b6f2:37cb:b213" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.181" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:14:1000:29ff:3b7e:58a7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sadalbari", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:8:a57f:4e14:3b7d:e114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.226" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:8:6143:2b38:61c2:192e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.229" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:8:5392:5560:3d86:c8f1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Saiph", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.230" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:4:e7c:c2df:261c:492f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:4:5ac4:ddf:50b:2339" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:4:2061:3845:8659:db7f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sargas", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:2001:6:99d7:1e07:2e9f:c203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.254.90.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:6:d799:80af:36f1:1847" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:2001:6:e003:1927:3fb:927e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sharatan", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.254.90.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:f:2121:4068:2c46:5bae" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:f:65e2:b4c1:9d9:c1fd" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.45" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:f:5524:b2c9:5779:4a8a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Sualocin", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.46" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:18:e41c:3b51:1e8:2f77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.208.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:18:b4e4:894c:a64c:c8c4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.208.244" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:18:3a6c:bcca:1bbc:506e" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tegmen", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.208.245" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:15:dc3c:532c:3a38:ebb8" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:15:bd9f:c09d:fa78:85e6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:15:5ed5:e4f9:4090:ce16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tejat", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.198" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1002:5:7faa:b55a:a5ee:f79f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.223.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:5:8e8c:6c8d:b249:3a6b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.205" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1002:5:71e0:4725:b7ad:6f09" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Tyl", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.223.206" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:6080:1001:10:1e9d:9651:27be:dda0" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "184.75.221.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:10:f9ce:bc25:b363:501b" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.61" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:6080:1001:10:9944:af90:d4a6:e523" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Ukdah", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "184.75.221.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:550:907:23:151c:dfa8:39e1:3319" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "199.189.27.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:550:907:23:8e06:9684:b4b:55d" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "199.189.27.125" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:550:907:23:5e78:2b3:1c09:95ce" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Toronto Ontario", + "server_name": "Wurren", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "199.189.27.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:103:13:994:7791:5e6e:49bb" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "104.193.135.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:13:8d0b:dd75:bd89:9bb3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.245" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:13:5417:bfd4:e093:8c54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Ginan", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.246" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:e:660c:f5c5:214d:b950" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.66" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:e:a3a9:bd8a:793d:1c49" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.69" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:e:a135:140f:4cf:90eb" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Nahn", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.70" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:103:a:89b1:7558:84db:a2f6" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:a:780:76d3:5172:4961" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.29" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:103:a:481b:9c3e:1890:fb34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Pisces", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.30" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:f:35b5:d1d1:8647:8e42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:f:c3a0:fe2b:6311:5aa2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:f:544d:680e:116d:1f2a" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Sham", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.78" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:c:5f66:c4ab:1f9f:2f13" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:c:a525:824c:a571:53d1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:c:1d47:abf6:6651:4189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Telescopium", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.54" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2606:9580:100:d:f80d:dfc8:66e3:6635" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.30.89.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:d:2342:142:134b:8478" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.61" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2606:9580:100:d:c191:a9da:1689:55db" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "America", + "city": "Vancouver", + "server_name": "Titawin", + "hostname": "ca4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.30.89.62" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:5:a575:5312:9d46:8c58" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.174.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:5:f529:45a0:e2b8:7494" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.29" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:5:396d:3a49:83eb:7c91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Markab", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.30" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:9:3758:d987:4043:a5" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.174.154" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:9:aa94:8a80:1498:7904" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.157" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:9:289a:c0e1:e8c5:3e11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Turais", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.158" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:33:15:670:796c:cf97:d57b" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.238.166.234" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:15:91af:eb57:2fdf:c9f9" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.166.237" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:33:15:ca8a:888d:5c48:4812" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "server_name": "Zuben", + "hostname": "cz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.166.238" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:2" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.195.237.202" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:5" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.195.237.205" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a01:1b8:5:1:ffff:ffff:ffff:6" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "server_name": "Alruba", + "hostname": "ee4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.195.237.206" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:36:3:d8b1:962a:170d:6639" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.217.242" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:36:3:2935:d57f:fc05:83e0" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.217.245" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:36:3:f40e:7b16:64d6:d4e" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Cujam", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.217.246" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:225:ca29:7f52:5a20:829d" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "83.143.245.50" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:225:1b06:18f:a622:b2af" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.53" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:225:cf65:ed0d:1e1a:812b" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "server_name": "Taiyi", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.54" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:5:6000:4b07:7b1c:4c0" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.104.184.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:5:623e:50fc:8023:a65" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:5:68b8:f9de:d736:eb9b" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Adhara", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.46" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:97:ec6c:776:1763:3ee7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.186" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:97:dad1:f205:28f1:bff5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.189" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:97:346e:fd9:50df:ed4e" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Alsephina", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.190" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:9a:9a5a:d9af:457a:bae8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.242" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:9a:13e6:576a:41cb:a5f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.245" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:9a:3e58:5f60:4e82:b316" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Dubhe", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.246" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:9a5:8bac:eb1d:d313" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:a571:6e7e:29e0:abf6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.236" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:94d4:7902:d543:928a" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Intercrus", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.237" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:98:5307:a6cf:d139:d129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.226" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:98:ba0a:dabc:45a8:c67c" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.229" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:98:3571:836c:c67:41c7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Menkalinan", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.230" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:99:744e:9a79:9f43:89c7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.234" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:99:fbf6:b62a:86df:b560" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.237" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:99:97c3:b668:de04:c4da" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirfak", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.238" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:20:96:b054:682e:3392:c1ff" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.102.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:96:226a:3a84:c3d8:dba8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:20:96:7326:32c4:28fb:e568" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Mirzam", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.102.182" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:b240:4a82:7fb6:af29" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.219" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:dbf9:52a9:a0e2:77f1" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.212.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:f0a5:80ba:ef48:de2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Tucana", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.212.217" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:c98:2050:a02f:d4fa:1823:c0b2:2a77" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "178.162.204.222" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:da70:5acb:fd13:14a0" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:c98:2050:a02f:b138:138c:df70:8c61" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "server_name": "Veritate", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.162.204.241" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:c205:0:1031:79f8:734d:afb7:43c" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.143.191.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:c205:0:1031:c1d7:aa8c:4a26:1d03" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.238.229.56" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:c205:0:1031:9d9a:a34e:a732:8ce4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Munich", + "server_name": "Mesarthim", + "hostname": "de4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "178.238.229.57" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:88:82:9a09:c44:b107:b4e9" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.94.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:88:82:2d52:54b8:3cac:f460" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:88:82:600e:6ed9:495b:57d7" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "server_name": "Minchir", + "hostname": "ie4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.94.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:96:e2ec:6fe7:32b6:9cd6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "45.87.213.82" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:96:f2f:2a9a:97a5:85ec" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "45.87.213.85" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:96:b6e1:1f94:3b03:ddb1" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Ainalrami", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "45.87.213.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:ca:3ad8:8644:96a6:af07" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.76.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:ca:26f1:427b:b581:da6b" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.45" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:ca:595e:8e3c:d86e:4f7" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Albaldah", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.46" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:c9:1b4a:ae20:2a46:c924" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.76.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:c9:f9ca:4c15:a65c:a3e1" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.37" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:c9:f194:8d7a:3065:a3b0" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Bharani", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.38" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:47:4ee1:cdb5:f557:af47" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.210.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:47:5111:20cb:5fef:56c6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.213" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:47:9aa3:223e:5855:f5d6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Biham", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.214" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:2:d7fb:2673:f554:6a5e" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.252.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:2:3158:5f3e:e17f:87fc" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.252.125" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:2:5ac0:4030:9411:2802" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Fleed", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.252.126" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:8:1268:44e:9318:a772" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.28.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:8:c8fe:8acd:4880:8d64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.109" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:8:6e2e:89db:741:eecb" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Iskandar", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:48:80d0:7484:9c02:3800" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.210.218" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:48:3fca:64b4:5472:7b27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.221" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:48:367b:f5ef:9f5c:15f" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Okab", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.222" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:40:12:368d:8acf:125d:8d69" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.148.16.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:12:a578:168a:48eb:3b95" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.148.16.213" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:40:12:9757:de3b:4967:7d25" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "server_name": "Taphao", + "hostname": "jp4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.148.16.214" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:226:fb67:aedb:24aa:1132" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "46.183.217.98" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:226:cb2d:9bdf:4fc8:7f2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.217.100" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:226:1f25:a667:d999:a795" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Felis", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.217.101" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:238:1899:59ea:5b22:45dc" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "109.248.148.242" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:238:4cd3:f033:ece5:5b0a" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "109.248.148.244" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:238:ea40:7f5e:53c5:7b0" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Meissa", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "109.248.148.245" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:237:9487:5d:6cf8:e1a4" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "46.183.218.146" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:237:a1fb:cb4e:7bc4:34d8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.218.148" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:237:b6db:30d5:1d92:40fb" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Phact", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "46.183.218.149" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:4840:2:239:104f:d330:da5b:78f5" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.38.135.2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:239:5837:4b2:a15c:3e4c" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.38.135.4" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:4840:2:239:9ae5:7b53:15c3:eb06" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "server_name": "Schedir", + "hostname": "lv4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.38.135.5" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:19:8893:6bd5:2100:e298" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:19:7bf4:e654:150e:ab82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:19:72c9:e006:1e27:c1ba" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alchiba", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:24:a413:5ebd:c707:c896" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.116" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:24:6cca:8384:e253:7a06" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:24:fffa:7669:642a:e166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alcyone", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.120" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1111:c424:6a46:2d7f:e74a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.170" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1111:c591:12bd:c401:e819" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.173" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1111:e737:d280:709c:2e1d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aljanah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.174" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a19:a85d:ab42:5a64:356d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a19:14c6:1:cc77:9ce9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a19:ec92:7e10:b10b:311c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphard", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.203" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a18:8388:c010:29e2:f0b3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a18:5f0e:f803:bdfb:990c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a18:8270:b974:cc65:9211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphecca", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1212:bb81:398d:be57:5862" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.242" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1212:b6c0:ce3e:c42d:28ff" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.245" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1212:6b1e:c39:8bd:14d9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alpheratz", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.246" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a22:492d:1cbd:c5aa:5ee3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a22:bbd9:de4e:f4b:84a2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.217" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a22:c6c5:5d39:54a2:bbf8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alphirk", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:29:63e7:28f7:d677:bc91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:29:1636:4986:4c28:ca88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:29:1354:d6fb:b5c1:7a50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alrai", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:37:801b:661c:47b5:7b5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:37:98e9:10:e8d6:d4d8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:37:1de2:6a0f:a5cd:d88f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alshat", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:2:587c:48ab:9c4c:3e58" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2:60aa:96cd:7e99:dcd" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2:5384:303b:6bb8:ac44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alterf", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.173" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a20:4ecc:3a41:7adb:f632" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a20:5860:e135:af08:94c2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.207" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a20:d5b6:2a67:7784:c7b7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Alzirr", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:16:f876:b7fb:a4dc:613d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:16:46b2:3237:652b:4584" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:16:2570:ade3:292f:f2fe" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Ancha", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.168" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:46:bace:c512:7a73:fdc8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:46:7ed0:3ba6:ba90:6c6b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.231" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:46:c942:50ff:977e:5a61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Andromeda", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.232" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:1911:dfe8:8ae6:5ae7:bf7e" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1911:97d2:d489:5267:5e6e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1911:a8c0:6dba:ff3a:71f4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Anser", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.22" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a21:d76d:58a7:1b12:c79d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.209" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a21:b752:a4b3:ebaf:1614" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.212" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a21:751d:64f9:71e4:5e03" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Asellus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.213" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1101:2c68:6c38:1f47:c621" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1101:421c:bbb6:d39f:f91c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1101:2141:817d:cef3:5311" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Aspidiske", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:38:f845:34ab:88a9:ee3d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:38:397a:7d3:3124:9dc3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:38:23e6:624b:1d5:9335" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Atik", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:52:de5e:a549:85d6:7ce0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:52:6fe6:1b06:cf66:b79c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.221" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:52:27e:cda6:7718:b18e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Canis", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:bbbb:6895:15dd:75c0:cc0a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:bbbb:b07a:c2e:d3fe:a074" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.141" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:bbbb:88b1:167d:93be:e585" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Capella", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.142" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:18:f3eb:d923:5818:7e13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:18:5ac5:3314:8260:3523" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:18:f9df:11aa:ce10:952e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Caph", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.173" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:12:260b:e1ba:da6e:503b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:12:62e5:f415:5aee:5632" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:12:a912:7997:679c:60a6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Celaeno", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a23:819a:3845:c56b:4176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a23:a62b:b2af:1770:f465" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a23:6c11:c840:c42a:2a38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Chara", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.223" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2427:6120:4f03:ee61:bc16" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2427:62d8:873d:55e4:a4d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.165" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2427:2ad7:4c2b:5338:2312" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Comae", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.166" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:55:aac9:ec32:f385:e6af" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:55:f5d0:88df:14b8:45fc" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:55:2127:e0b4:deb:c5aa" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Crater", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:49:4958:5797:6ca3:7b01" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:49:cee8:8539:eb6:2633" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:49:95e2:979b:5ad5:acc7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Cygnus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2838:d65a:1aea:b85f:ba9b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2838:2ec2:d4c7:9b9c:9b95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.213" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2838:f6d5:ddc:1be9:b29f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Dalim", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1:f617:fb36:c2fc:b12a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1:1c5b:4c60:d126:8ad5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1:6054:ef81:b787:2f52" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Diphda", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.168" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:51:3623:6c3b:102f:1bb0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:51:4a50:89b7:f8c1:1943" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.213" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:51:9528:fb9:3102:4a7a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Edasich", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2329:e5f:35d4:4404:ef9f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.39" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2329:cf6c:1a64:36c3:d8f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2329:189d:8b46:414b:7fc6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Elnath", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.43" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:cccc:77c3:d29c:6866:bf5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.146" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:cccc:d09c:258d:5606:a5fe" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.149" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:cccc:1c34:7e0b:dc89:7a7d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Eltanin", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.150" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:28:954d:b058:9910:9359" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:28:2857:2aa3:4f9f:10e4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:28:6671:1594:b03:75f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Garnet", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:2a:9029:4313:5ab0:b295" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2a:d462:e87d:f991:40b7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:2a:d9f:931a:80b5:2314" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gianfar", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.104" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:32:eacf:9278:e835:706d" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.93" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:32:729f:5efe:fdc9:6a8c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:32:b03e:51a4:1fba:6567" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Gienah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:44:56:9663:8c15:434" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.39" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:44:a01e:d1ec:1f2:569" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:44:da97:aa89:2b5:6449" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hassaleh", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.43" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:53:7606:2294:c831:199a" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:53:fb26:6:808e:1af3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:53:7263:21de:a64d:11ce" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Horologium", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:43:118f:9a4d:f657:84bc" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:43:fa9c:f373:dd9d:328" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:43:d1e6:37a:4cc5:3853" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hyadum", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.38" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:54:cbd3:a081:844f:51cb" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:54:6f94:29e4:55c6:bd1c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:54:2f21:670:8b15:169c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Hydrus", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.13" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:1936:ecb4:560a:11c0:9616" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.23" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1936:3ec2:989e:875f:31a9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:1936:95bb:b395:345b:ea92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Jabbah", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.27" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:17:559f:bc01:4a0b:38b0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:17:902b:1d37:c2a6:f611" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.87" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:17:f895:acc:42b8:9bf" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kajam", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:11:36de:7576:8bb7:f679" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:11:8e36:2ae7:895f:a750" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:11:aed1:73d0:cc7f:a8dc" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Kocab", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1010:69af:95fa:4f45:5483" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1010:c605:13fd:8817:ea47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.181" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1010:2321:240:dd97:9f45" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Larawag", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.182" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2429:ce5c:4a68:65d1:f2ca" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2429:a53d:15e4:f299:703" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.170" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2429:dd04:a55:c742:c801" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Luhman", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.171" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:34:5e9a:62db:20c7:365c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:34:c9a:4741:fb26:a732" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:34:f876:c501:12d9:955f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Maasym", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a24:d063:dc07:bfbf:ad9c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a24:fa8e:3d94:7292:f00e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a24:db60:c5df:21d8:ee62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Matar", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.228" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:eeee:3806:8681:cc0f:fff4" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:eeee:cee4:e14f:289b:fc03" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.165" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:eeee:a80f:5c4d:bdc0:370d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Melnick", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.166" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:88:237c:f86f:2662:84a6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.176.134" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:88:65db:a2fb:8419:e15e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.176.140" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:88:9f4a:7bcf:6a0f:bc00" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Menkent", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.176.141" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:42:3891:bb85:78df:984" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:42:efac:2ed7:d1db:755c" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:42:41f:dac6:f08b:a6ed" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Merga", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:27:a25b:9b24:661:38eb" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:27:6058:f06:87bd:8396" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:27:e008:9772:9a50:556a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Mirach", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:31:d489:331e:bd10:fa04" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:31:5c9d:417b:4b59:337" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:31:a2a0:e500:47f5:14a7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Miram", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.92" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1414:dd22:1f73:62ba:917" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1414:f3e3:2b3e:f599:26a0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.205" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1414:7541:6c01:3452:ba8f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muhlifain", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.206" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:5:9d:b529:46dd:97c3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.153" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:5:c3f2:a35b:10ce:5e53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:5:c116:3c20:d3a:baeb" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Muscida", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.157" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:50:7c70:8611:c3d4:4ad5" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.248" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:50:36:8f37:ebb9:c75e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.251" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:50:1fdc:2bca:7f4f:86de" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Musica", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.252" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:41:ecca:3296:1054:804e" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:41:5fc:e9c5:4a11:86b9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.27" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:41:bd2b:d6a4:aa27:ff8e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Nash", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.28" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:48:6802:1269:faa0:14a0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.238" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:48:8aae:32d1:a3e1:894a" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:48:a851:8e4e:a689:6674" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Orion", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.242" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a25:6b7c:a435:93a7:fc12" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.229" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a25:2a92:45f5:9035:6032" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.232" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a25:4a60:bc90:1337:c507" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Phaet", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.233" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:99:5294:9bb7:8fe7:b255" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.178.166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:99:dc6f:5902:eea5:8e43" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.178.169" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:99:1276:b9a3:2b0e:a241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Piautos", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.178.170" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:8:7cdd:c8f0:208a:a6c0" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:8:cb15:cd59:8603:230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.151" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:8:4f8d:4e26:8217:2a34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pleione", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.152" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:47:a1a1:7fe0:f3d3:6900" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.233" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:47:3945:3974:9f70:4e43" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.236" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:47:b7e6:1020:aa99:5527" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Pyxis", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.237" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:3a:7846:1698:644a:f794" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3a:404b:8023:f06f:c9a7" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.86" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3a:2107:ac45:8bea:d885" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Rukbat", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.87" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:7a26:23d9:8019:fdf1:dfc8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.187.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a26:840d:35ca:d39b:7d65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.237" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:7a26:5b47:455c:8e8f:7984" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sadr", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.187.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:4a:7919:e379:a5a4:bfda" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.19" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4a:66a3:65a1:d1d5:e86b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4a:189c:e096:21e:ca6e" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Salm", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.23" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:dddd:1fc:e122:2dc8:9377" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.154" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:dddd:e685:18e2:17fd:c42b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.157" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:dddd:59ab:78fe:39d7:f8bb" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Scuti", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.158" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2330:6c2d:ae93:7dc3:4a73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.34" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2330:f0c8:18af:75f6:baec" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2330:8a48:66ef:74a1:2fb0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Sheliak", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.38" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:39:1e5d:c299:3e8b:f26c" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:39:ebff:5ba1:f41b:fab0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:39:d3a9:6767:1c31:2aa" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Situla", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:33:92d6:e4ab:4c6b:140f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.162.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:33:d704:c857:4207:c202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:33:2be6:88b:a705:448b" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Subra", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.102" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1001:15e5:255f:91b1:acf2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1001:ec33:a378:62ad:7300" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.189" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1001:7019:a8c4:16cc:36ee" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Suhail", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.190" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:6:78ae:4387:607b:1c31" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.137" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:6:f60e:9883:2474:478f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.140" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:6:34ec:1a83:d7a2:d993" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Talitha", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.141" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:4:23d6:1351:861c:d5a9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.132" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4:67ed:f103:150d:105d" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.135" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:4:e2fd:b74f:bc7c:df54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tarazed", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.136" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:1616:eecf:fa10:bebc:3f8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "134.19.179.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1616:4380:8834:bddf:3f21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.237" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:1616:431:92b6:e9a:2bb0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tiaki", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "134.19.179.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:1337:2430:644c:e7f6:5cf7:562b" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.186.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2430:463e:d601:697b:a2f0" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.175" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:1337:2430:e19a:8f8b:4174:75f3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Tianyi", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.186.176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1678:2470:3:3631:b8e:fa96:434" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "213.152.161.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3:dbe1:c320:4986:a891" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.151" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1678:2470:3:1e35:d062:9b5b:33a9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Alblasserdam", + "server_name": "Zibal", + "hostname": "nl4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "213.152.161.152" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2400:fa80:4:f:3f4:322f:1abd:ede4" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "103.231.91.58" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2400:fa80:4:f:1db5:74df:4bb2:c121" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "103.231.91.61" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2400:fa80:4:f:a2f2:5a7:b8a6:d930" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Fawaris", + "hostname": "nz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "103.231.91.62" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2403:7000:8000:160::6" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "120.138.16.100" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2403:7000:8000:160::8" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "120.138.16.103" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2403:7000:8000:160::4" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Oceania", + "city": "Auckland", + "server_name": "Tianguan", + "hostname": "nz4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "120.138.16.104" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:21:f50:6e6a:4419:b1de" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.194" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:21:5956:4255:41cb:da30" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.197" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:21:d4e4:add8:99:3fd1" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Camelopardalis", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.198" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:22:9f73:11d5:96d8:f0bc" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.170" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:22:4340:77ed:b03a:e954" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.173" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:22:3cfe:32ad:92e0:4ceb" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Cepheus", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.174" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:3:b8e5:e794:cf69:4139" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.206.225.50" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:3:ee14:ac76:6ff7:136f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.53" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:3:d567:a112:313e:7f6b" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Fomalhaut", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.54" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:23:db1b:cad:90c0:c5b3" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "82.102.27.162" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:23:3295:eb16:e20d:90bc" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.165" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:23:48dc:ce06:9f17:d462" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Gemini", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.166" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:38:4:47d2:9c39:d8e2:98da" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.206.225.58" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:4:4f25:c151:3f62:dec6" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.61" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:38:4:d11d:2534:27be:f0dc" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "server_name": "Ophiuchus", + "hostname": "no4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.62" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a04:9dc0:c1:53:cff3:6078:912d:4031" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.207.102.162" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a04:9dc0:c1:53:d4f2:d93:d52d:8627" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.102.165" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a04:9dc0:c1:53:fd97:f6a8:9606:1356" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "server_name": "Alamak", + "hostname": "ro4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.207.102.166" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:7d:1e11:7105:2f2:a334:918a" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "152.89.160.130" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:1e11:769e:2617:a577:b9c4" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.133" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:1e11:3a31:3516:7420:69e5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Alnitak", + "hostname": "rs4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.134" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:7d:41:7ec9:76d3:9223:96e8" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.111.18" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:41:5947:48ee:cbd2:c8c3" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.111.21" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:7d:41:79cb:753c:3dbb:4e6a" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "server_name": "Marsic", + "hostname": "rs4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.111.22" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:3:4bc7:5ce2:aa37:7f12" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.210" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:3:fa8:57a8:89fe:cbe9" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.213" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:3:f1b8:e5d2:5aa3:fdbf" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Auriga", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.214" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:2:37d1:e955:6117:151e" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.202" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:2:8271:420:424f:8efe" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.205" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:2:5b46:a787:f556:3b6b" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Circinus", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:4:bc8c:6f80:9d39:d338" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.218" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:4:245:77d5:936e:5f61" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.221" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:4:59d9:aa3a:eecc:8e1" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Delphinus", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.222" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:5:fbe4:e700:c096:b77c" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.117.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:5:c0cb:7dc5:5aa7:84c6" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.117.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:5:dd09:d6a8:ea67:9fd7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Hydra", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.117.134" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:df1:800:a00e:4::fbe7" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "209.58.173.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a00e:4::8976" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.173.159" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a00e:4::bd28" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Lacaille", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.173.160" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:c:9770:897a:948b:e484" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "92.119.178.2" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:c:fd83:58bb:e443:8a8c" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "92.119.178.5" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:c:b1ae:9d33:b667:9a8f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Luyten", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "92.119.178.6" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:df1:800:a007:4::ebe8" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "209.58.183.86" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a007:4::2f8c" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.183.81" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:df1:800:a007:4::6cdf" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Struve", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "209.58.183.83" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0a:b640:1:0:183e:1c9a:e881:1d46" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.200.116.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:0:ee2e:8b26:c3d2:5371" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0a:b640:1:0:1ada:98ee:f867:6b91" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "server_name": "Triangulum", + "hostname": "sg4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.200.116.134" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:35:11::3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.183.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:35:11::5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:35:11::6" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "server_name": "Eridanus", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.6" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:23:13:ad52:937:4aa0:9315" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.93.182.170" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:13:f3b9:3ff5:7cc3:2a0b" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.173" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:13:5018:fcb1:23f4:59d1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Mekbuda", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.174" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:23:11:f237:6c93:5ca8:c220" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.99.104.34" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:11:9819:fd0:4752:7faf" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.99.104.37" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:23:11:776a:3d38:b55e:8b6f" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "server_name": "Taurus", + "hostname": "es4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.99.104.38" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:20:36ca:12cf:b499:e24a:76cf" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "128.127.104.79" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:20:6725:f175:9093:ea29:cce1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.104.82" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:20:6340:af27:b11a:5b60:966b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Ain", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.104.83" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:26:a3f:45d7:1963:738f:a40" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.142.76.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:26:69b0:c974:bc02:d085:9548" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.76.246" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:26:4ba9:3e2e:98bc:6a3f:8645" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Copernicus", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.76.247" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:2c:8b38:81b5:979:9ec9:7eb5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "128.127.105.183" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:2c:ff98:850b:32dc:ee4d:6136" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.105.186" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:2c:7fa4:b436:fa8a:28ea:c26b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Lupus", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "128.127.105.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7142:4a:f517:1b36:30f9:fb4f:7a" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "31.3.152.99" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:4a:aec:b28c:c295:9d35:9255" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.102" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7142:4a:c713:52c6:1b09:c49b:cf94" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "server_name": "Norma", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.103" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:5266:e057:4741:4eab" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.149" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8355:c8c2:abff:9973" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.170" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f784:2492:bf71:d0f5" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Albali", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.177" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:c387:1aa1:1a02:3d96" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.142" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:51bb:593c:be29:6a15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.178" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e4c:1f54:e48:244e" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algieba", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.220" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:17a0:9901:1c49:77f5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.147" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e98c:b04d:f4e1:5b01" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.198" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:19f8:48ea:38de:93a6" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Algorab", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.199" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:b58b:4bda:3aaf:1123" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8817:f0a4:5aab:51d6" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:dc6d:7671:ed8c:5a14" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alrami", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.201" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:dd7a:6003:4fa8:9a5e" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.151" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8e72:2642:bcd:b100" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.204" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:c7af:33b5:8a3b:53f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Alula", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.205" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:c838:5fba:2b90:8c7b" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e175:6c2c:5236:a378" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.206" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:5fad:8a1a:8862:fd4b" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Atria", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.207" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:1b34:9d9f:3b6a:4266" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.141" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f169:6e02:3df:26cd" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.208" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:dc9e:4d3c:634d:a337" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Azmidiske", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.209" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:1c53:8df6:8f3:1c63" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.148" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8886:2a70:30c6:fdff" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.210" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:e244:b5b7:570f:897c" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Benetnasch", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:e93c:6680:a365:6f8f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:8944:b880:48e1:e02d" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.216" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:c16:50a2:5680:6014" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Menkab", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.217" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:1520:27:1:3b4e:42bd:578c:b761" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "62.102.148.146" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:7f63:7281:489d:9cef" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.218" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:1520:27:1:f631:b5ea:d6e5:3b5d" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Uppsala", + "server_name": "Muphrid", + "hostname": "se4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "62.102.148.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:8:c4d0:d13a:3b31:4d" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.170" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:8:a59c:62d3:7664:de71" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.173" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:8:e160:155f:6fdd:e281" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achernar", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.174" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:3:297a:d23b:d23d:4878" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.34" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:3:90d7:29d6:7c38:8a36" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.37" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:3:39e7:7830:4298:4e8c" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Achird", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.38" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:5:b3d6:6f3c:a84c:920a" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.50" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:5:4c06:c19e:9601:ba1b" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:5:266f:3593:dc7d:2071" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Baiten", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.54" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:33:ce64:167a:b3a7:a04d" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "195.206.105.226" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:33:d622:dec0:fb22:5772" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.229" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:33:4c2:2e4a:97b9:df1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Dorado", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.230" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:4:35ea:7d3a:3199:5651" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.42" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:4:f8fd:c46b:5492:23ee" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.45" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:4:3d90:2a7c:ac1a:3bc6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Hamal", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.46" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a02:aa08:e000:4500:516e:bf4f:38dc:eab1" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.214.169.68" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:aa08:e000:4500:8b27:c782:5b23:5ea7" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.214.169.71" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a02:aa08:e000:4500:9b07:2ff6:c701:fff0" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Kitalpha", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.214.169.72" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:32:14c1:185f:f2c1:419" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "195.206.105.202" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:32:d4f9:aa5a:5909:cb5c" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.205" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:32:7367:ac04:4a1:5d6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sextans", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.206" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:28:7:555d:1c1:9028:69a2" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "185.156.175.58" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:7:94fe:8fa6:75b9:2981" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.61" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:28:7:4d7b:61d2:9644:d265" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Sirrah", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.62" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a00:7145:c1:1:d166:dd1b:2fa3:dbdb" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "79.142.69.159" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:c1:1:6838:aa89:d61c:fb42" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.69.162" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a00:7145:c1:1:c862:16de:4698:4c9d" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "server_name": "Xuange", + "hostname": "ch4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "79.142.69.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:254:6a6c:3102:80b:f49c" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.195.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:254:4033:5ebe:59bb:fb17" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:254:c3e4:3d38:c2fc:f729" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alathfar", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:3:fc40:5828:6a44:a9ec" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.151.98.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:3:567c:6570:28cf:f83b" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:3:555b:62ab:db44:1cc" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Alshain", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:5c:7dc9:b4af:2e2f:d5b3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.238.150.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:5c:5e0e:3250:942a:a324" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:5c:bbf7:7cd5:e924:e51d" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Arion", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:4:a7ca:8d0d:73e3:fefa" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.151.98.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:4:40eb:a546:b7d:4ff5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:4:8fe1:e72f:821c:68cd" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Asterion", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.151.98.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:253:8d3f:59fe:3d5b:6537" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.195.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:253:e0b:20cb:4dc3:cb" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:253:fa2c:b064:e9f4:79df" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Betelgeuse", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.195.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:23f:3489:9869:3cec:3b2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:23f:8f09:c9ca:9bde:6145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:23f:f9d8:7c0f:f112:4c62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Carinae", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:22d:eb35:991:afd4:edd5" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:22d:f605:da99:39a2:9091" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:22d:dfa6:cc0b:7339:a53c" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Denebola", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:67:a13a:991e:8f00:42a9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2.58.47.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:67:49dc:d239:a8e7:f3c2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2.58.47.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:67:7ade:4021:310a:54c5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Geminorum", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2.58.47.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:31:362::2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.61.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:362::5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:31:362::6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "server_name": "Kitel", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.61.150" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:11:87c9:cc38:b1ef:35af" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.249.74.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:11:fe20:e49e:a315:9558" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:11:b1f8:9873:a3b4:a1ba" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Asterope", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:12:3a11:54d3:72bc:d35e" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "89.249.74.217" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:12:276d:eb9d:680:cf35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:12:dda7:64a6:a40a:6136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Chow", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "89.249.74.221" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:2e:134:a26a:57be:b1f4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.39.117.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2e:a61c:e4d3:882b:e0d0" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.117.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2e:d24e:2782:ee18:cc8e" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Naos", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.117.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:2d:6c8:2fae:4f1c:79d5" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "84.39.116.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2d:1fad:4331:748c:2790" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.116.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:2d:b922:18c7:b28d:cfb6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Nashira", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "84.39.116.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:8a:19fc:272b:ba42:ef59" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "192.145.126.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:8a:ea73:df51:cdb9:d10f" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.145.126.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:8a:db4c:483b:5064:6b10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Orbitar", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "192.145.126.118" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2001:ac8:21:22:d8d9:a47:46ea:c409" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "141.98.101.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:22:ab80:2f64:7c28:6055" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.101.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2001:ac8:21:22:6819:ac7b:cbcf:349a" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "server_name": "Westerlund", + "hostname": "gb4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "141.98.101.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:80:da13:bf15:4ed3:510c" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:80:3e18:eab5:1e62:c23c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:80:e650:5744:34b8:f317" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Hercules", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:81:315:1c4c:1dd9:df8f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:81:f613:9936:59c3:457d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:81:4a2d:6b0d:aa4:55d7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Libra", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:78:e46c:8e0d:ee6b:38d7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:78:341d:f692:13d9:2f47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:78:e6eb:eca6:5a83:ac00" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Musca", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:77:2b0:4c5e:d735:889f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:77:2fd0:79f8:a665:b1b7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:77:f5ed:9314:8e57:a6d0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Sculptor", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2605:9f80:6000:79:444e:be44:2b14:f669" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "64.42.179.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:79:bc3d:f66:afb8:dc55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2605:9f80:6000:79:d18b:a37f:dcb:db4a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Atlanta Georgia", + "server_name": "Ursa", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "64.42.179.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:14:2694:7c8e:1b5:7451" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.48.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:14:d85a:dd68:fe7a:5969" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.48.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:14:9e7a:b10a:b7d5:8d60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Fang", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.48.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:16:ffe6:19bd:f8c8:2dc5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.35.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:16:4ea6:9202:e2f:55bb" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.35.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:16:44d9:1a4b:1e3a:bbfa" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Kruger", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.36.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:5:29c2:5398:fcda:b96d" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.52.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:5:533c:5df2:8b4b:8846" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:5:d635:da2:f7e6:c31c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Praecipua", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.36.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:3:d1bb:cc80:ddeb:329c" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "68.235.52.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:3:559c:bb7d:8991:1556" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:3:de5f:cbeb:3370:3d94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Sneden", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "68.235.52.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:0:85:68a3:75b4:13ab:770a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "208.77.22.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:85:2676:a640:52fd:9f33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "208.77.22.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:0:85:dcf2:2ce4:fd2e:5d48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Chicago Illinois", + "server_name": "Superba", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "208.77.22.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:e9a:dc69:49e3:d2c3:9084" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8ddb:17bb:d1ef:b10d:a80a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:103b:1e7:7f22:d8cb:78de" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Chamaeleon", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:71f6:7ed3:2a9d:dbf2:7c60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:aaba:3843:a342:d669:3aa7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:650c:56a7:d4fc:72f6:5080" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Equuleus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:a0ba:da8b:684:dcaf:eb42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:2207:9d75:1ad9:29ab:d0db" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8c8e:b02a:1611:4289:afa4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Helvetios", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:3e8c:66f3:ebb5:d7c:342b" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:89a8:494c:41c1:7691:8c69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:3b43:157c:2a60:1467:ab10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Leo", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:47f6:bdb8:da66:62ea:570e" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:f103:50af:7bea:4d85:295b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:6c7a:1622:5c0e:8ff3:1410" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Mensa", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:675a:2752:344a:ee03:310a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:8c8f:4f83:7c62:f8ce:3baf" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:2637:f7e2:7851:a7b:9c5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Pegasus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:1853:787a:a84a:9001:48cf" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:900c:15ec:df72:52c1:f8d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:c550:d2c7:b5ea:2cf9:bb9a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Ran", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:e385:f1a3:4b56:62ed:a407" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:117a:c84b:fbfa:10f3:872f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:df08:2a2c:5134:cc1c:b1cb" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Scutum", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:dd1:eaa6:2ec7:4719:c40a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:529e:6f26:853b:a9e6:50d7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:7243:7a9f:cff7:73e4:ee8d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Volans", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6001:1cf8:3bed:7ca:2b2e:de0e" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "204.8.98.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:d9a3:3edd:4027:a400:a3b6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6001:7f94:208f:44d2:94be:eca7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Dallas Texas", + "server_name": "Vulpecula", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "204.8.98.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:2000:24:93e1:7280:afe2:edca" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.128.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:2000:24:18fe:2ed6:34d1:322f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.128.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:2000:24:41f7:2c61:b01c:85ec" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Denver Colorado", + "server_name": "Sadachbia", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.128.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2620:7:6000:1:4cf7:d125:ec49:5a67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "23.130.104.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6000:1:af9e:aa4a:1d29:369d" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "23.130.104.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2620:7:6000:1:251c:935a:34a5:b995" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Fremont California", + "server_name": "Aquila", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "23.130.104.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:8:3d:bf35:b49d:b2c1:8537" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.132.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3d:8060:ff8d:7ab7:83c6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3d:9e4a:98f5:fee3:1369" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Groombridge", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:4f:8000:e97d:9761:c3d1:c92f" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "217.138.217.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:4f:8000:b939:7df7:f39d:1b9b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.217.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:4f:8000:e4f:6c06:63d:d3c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Saclateni", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "217.138.217.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:8:3e:b389:fbfa:508a:1eca" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "37.120.132.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3e:eceb:3b20:e697:db07" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:8:3e:878b:13a8:3b47:98ed" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Los Angeles", + "server_name": "Teegarden", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:115:3c84:449d:745:1a2a" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:115:d1c7:8be3:b81c:7f61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:115:9545:70e5:59c1:bad1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Aladfar", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:116:2c72:ab:cb01:9170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:116:6f44:43b4:f142:4fc" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:116:28ed:b5a2:d58c:50a8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Ascella", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:119:e70b:b95c:6cba:844" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:119:8faf:6e0:f65c:157a" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:119:4962:e9bb:f89:8237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Chertan", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:118:7198:83e3:8270:2076" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:118:6f2f:b9f5:4a1d:f28b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:118:7098:ead3:d1:fc06" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Elkurud", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:117:b5bc:e71c:50c7:e266" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.252.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:117:3991:a318:86ca:3498" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:117:e196:f964:18b8:dcec" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Giausar", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.252.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:6:114:dfe3:fbc5:65d7:18ea" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "91.219.214.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:114:2228:eace:f22d:92f9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.219.214.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:6:114:8be5:d93d:429d:14f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Miami", + "server_name": "Meleph", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "91.219.214.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:210:f80d:2cbb:2251:ebb" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.115.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:210:e5c3:6cc:3e2:a20f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:210:86a5:5dba:a852:c2c0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Haedus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:211:f971:9290:8b46:e1b4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "146.70.115.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:211:2834:9360:67ce:e375" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:211:21a5:a39d:f23e:77b" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Iklil", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "146.70.115.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:24:55:fac4:15b:cf9f:ab78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "194.36.111.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:55:87df:6588:1997:54e0" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:24:55:8d:9c88:d86d:5383" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "New York City", + "server_name": "Lich", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "156.96.151.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "156.96.151.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Pennsylvania", + "server_name": "Metallah", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "156.96.151.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:4:d997:3a87:1597:3ad6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:4:7e1f:40e7:5011:6a99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:4:4c2c:13b5:9c7f:a113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Bootes", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:6:994d:de38:fedf:47a7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:6:11e8:4ce8:e69:730" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:6:94ad:78a4:779f:85d4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Chalawan", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:7:875:e320:a63f:67ba" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:7:8b53:dd00:a20e:7b0c" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:7:58d9:101:6109:787f" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Indus", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:8:c7d7:a0ca:fc7e:6395" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:8:487e:e5cb:c0ca:9c90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:8:274d:188f:3ce2:ead6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Phoenix", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2a0d:5600:2:5:41e0:91df:ee8b:fa" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "193.37.254.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:5:5200:5517:2b3b:f9b6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2a0d:5600:2:5:cf41:c8d8:2e78:17b2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Phoenix Arizona", + "server_name": "Virgo", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:4000:29:d67f:cbd5:be88:7d07" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.130.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:4000:29:661b:c962:9cab:d6b7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.130.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:4000:29:bb50:38e3:693b:73e3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "Raleigh North Carolina", + "server_name": "Polis", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.130.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:8000:26:1ce2:51b5:2ffa:67f5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.54.134.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:26:2525:f163:ad6f:63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:26:84a9:e5e9:dbe4:a176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Bunda", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us.ipv6.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "2607:9000:8000:27:d8fc:1704:c09:3549" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us.vpn.airdns.org", + "wgpubkey": "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk=", + "ips": [ + "198.44.134.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us3.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:27:f2c:9a28:8ca7:4421" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us3.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us4.ipv6.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "2607:9000:8000:27:79c9:926b:1820:a9c6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "America", + "city": "San Jose California", + "server_name": "Imai", + "hostname": "us4.vpn.airdns.org", + "tcp": true, + "udp": true, + "ips": [ + "198.44.134.10" + ] + } + ] + }, + "cyberghost": { + "version": 5, + "timestamp": 1695202495, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "87-1-al.cg-dialup.net", + "udp": true, + "ips": [ + "31.171.155.3", + "31.171.155.5", + "31.171.155.6", + "31.171.155.7", + "31.171.155.8", + "31.171.155.9", + "31.171.155.10", + "31.171.155.11", + "31.171.155.13", + "31.171.155.14" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "97-1-al.cg-dialup.net", + "tcp": true, + "ips": [ + "31.171.155.3", + "31.171.155.4", + "31.171.155.5", + "31.171.155.6", + "31.171.155.7", + "31.171.155.8", + "31.171.155.9", + "31.171.155.12", + "31.171.155.13", + "31.171.155.14" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "87-1-dz.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.228.146", + "176.125.228.147", + "176.125.228.148", + "176.125.228.149", + "176.125.228.150", + "176.125.228.151", + "176.125.228.152", + "176.125.228.153", + "176.125.228.154", + "176.125.228.155" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "97-1-dz.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.228.146", + "176.125.228.147", + "176.125.228.148", + "176.125.228.149", + "176.125.228.150", + "176.125.228.151", + "176.125.228.152", + "176.125.228.153", + "176.125.228.154", + "176.125.228.155" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "87-1-ad.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.82.132", + "188.241.82.134", + "188.241.82.136", + "188.241.82.142", + "188.241.82.159", + "188.241.82.161", + "188.241.82.165", + "188.241.82.168", + "188.241.82.171", + "188.241.82.181" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "97-1-ad.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.82.133", + "188.241.82.134", + "188.241.82.135", + "188.241.82.157", + "188.241.82.159", + "188.241.82.161", + "188.241.82.173", + "188.241.82.175", + "188.241.82.178", + "188.241.82.181" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "87-1-ar.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.38.63", + "146.70.38.65", + "146.70.38.72", + "146.70.39.3", + "146.70.39.6", + "146.70.39.12", + "146.70.39.16", + "146.70.39.133", + "146.70.39.135", + "146.70.39.145" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "97-1-ar.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.38.74", + "146.70.39.8", + "146.70.39.10", + "146.70.39.11", + "146.70.39.14", + "146.70.39.15", + "146.70.39.139", + "146.70.39.142", + "146.70.39.144", + "146.70.39.147" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "87-1-am.cg-dialup.net", + "udp": true, + "ips": [ + "185.253.160.131", + "185.253.160.132", + "185.253.160.138", + "185.253.160.139", + "185.253.160.141", + "185.253.160.144", + "185.253.160.146", + "185.253.160.147", + "185.253.160.151", + "185.253.160.152" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "97-1-am.cg-dialup.net", + "tcp": true, + "ips": [ + "185.253.160.132", + "185.253.160.133", + "185.253.160.134", + "185.253.160.137", + "185.253.160.146", + "185.253.160.148", + "185.253.160.150", + "185.253.160.151", + "185.253.160.154", + "185.253.160.156" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "hostname": "87-1-au.cg-dialup.net", + "udp": true, + "ips": [ + "154.6.147.11", + "154.6.147.23", + "154.6.147.27", + "154.6.147.68", + "154.16.81.13", + "154.16.81.31", + "191.101.210.22", + "223.252.16.141", + "223.252.16.145", + "223.252.16.156" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "hostname": "97-1-au.cg-dialup.net", + "tcp": true, + "ips": [ + "154.6.147.55", + "154.6.147.58", + "154.16.81.10", + "154.16.81.25", + "154.16.81.35", + "191.101.210.22", + "191.101.210.24", + "223.252.16.138", + "223.252.16.139", + "223.252.16.145" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "87-1-at.cg-dialup.net", + "udp": true, + "ips": [ + "37.19.223.4", + "37.19.223.10", + "37.19.223.15", + "37.19.223.18", + "37.19.223.19", + "37.19.223.29", + "37.19.223.30", + "37.19.223.36", + "37.19.223.107", + "37.19.223.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "97-1-at.cg-dialup.net", + "tcp": true, + "ips": [ + "37.19.223.4", + "37.19.223.18", + "37.19.223.25", + "37.19.223.32", + "37.19.223.102", + "37.19.223.202", + "37.19.223.208", + "37.19.223.221", + "37.19.223.247", + "37.19.223.248" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "87-1-bs.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.238.157", + "95.181.238.158", + "95.181.238.159", + "95.181.238.160", + "95.181.238.161", + "95.181.238.162", + "95.181.238.164", + "95.181.238.165", + "95.181.238.166", + "95.181.238.167" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "97-1-bs.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.238.157", + "95.181.238.158", + "95.181.238.159", + "95.181.238.160", + "95.181.238.161", + "95.181.238.163", + "95.181.238.164", + "95.181.238.165", + "95.181.238.166", + "95.181.238.167" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "87-1-bd.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.17.130", + "192.142.17.131", + "192.142.17.133", + "192.142.17.135", + "192.142.17.139", + "192.142.17.140", + "192.142.17.146", + "192.142.17.154", + "192.142.17.157", + "192.142.17.158" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "97-1-bd.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.17.131", + "192.142.17.135", + "192.142.17.139", + "192.142.17.140", + "192.142.17.141", + "192.142.17.149", + "192.142.17.153", + "192.142.17.155", + "192.142.17.157", + "192.142.17.159" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "87-1-by.cg-dialup.net", + "udp": true, + "ips": [ + "45.132.194.15", + "45.132.194.16", + "45.132.194.17", + "45.132.194.18", + "45.132.194.19", + "45.132.194.20", + "45.132.194.21", + "45.132.194.23", + "45.132.194.25", + "45.132.194.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "97-1-by.cg-dialup.net", + "tcp": true, + "ips": [ + "45.132.194.15", + "45.132.194.16", + "45.132.194.17", + "45.132.194.18", + "45.132.194.19", + "45.132.194.20", + "45.132.194.21", + "45.132.194.22", + "45.132.194.24", + "45.132.194.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "87-1-be.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.123.152", + "146.70.123.157", + "154.47.27.8", + "154.47.27.26", + "181.214.218.117", + "181.214.218.132", + "181.214.218.154", + "181.214.218.158", + "181.214.218.231", + "181.214.218.241" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "97-1-be.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.123.156", + "154.47.27.25", + "181.214.218.109", + "181.214.218.124", + "181.214.218.158", + "181.214.218.199", + "181.214.218.207", + "181.214.218.246", + "181.214.218.251", + "185.104.186.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "hostname": "97-1-ba.cg-dialup.net", + "tcp": true, + "ips": [ + "98.159.36.4", + "98.159.36.6", + "98.159.36.9", + "98.159.36.13", + "98.159.36.16", + "98.159.36.17", + "98.159.36.20", + "98.159.36.22", + "98.159.36.23", + "98.159.36.27" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "87-1-br.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.177.3", + "188.241.177.9", + "188.241.177.12", + "188.241.177.44", + "188.241.177.46", + "188.241.177.124", + "188.241.177.131", + "188.241.177.135", + "188.241.177.152", + "188.241.177.153" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "97-1-br.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.177.41", + "188.241.177.44", + "188.241.177.119", + "188.241.177.125", + "188.241.177.131", + "188.241.177.132", + "188.241.177.137", + "188.241.177.138", + "188.241.177.141", + "188.241.177.152" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "87-1-bg.cg-dialup.net", + "udp": true, + "ips": [ + "156.146.55.159", + "156.146.55.162", + "156.146.55.168", + "156.146.55.169", + "156.146.55.170", + "156.146.55.176", + "156.146.55.177", + "156.146.55.179", + "156.146.55.180", + "156.146.55.181" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "97-1-bg.cg-dialup.net", + "tcp": true, + "ips": [ + "156.146.55.162", + "156.146.55.165", + "156.146.55.167", + "156.146.55.173", + "156.146.55.174", + "156.146.55.176", + "156.146.55.177", + "156.146.55.180", + "156.146.55.182", + "156.146.55.186" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "87-1-kh.cg-dialup.net", + "udp": true, + "ips": [ + "188.215.235.37", + "188.215.235.38", + "188.215.235.41", + "188.215.235.42", + "188.215.235.43", + "188.215.235.44", + "188.215.235.47", + "188.215.235.51", + "188.215.235.52", + "188.215.235.55" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "97-1-kh.cg-dialup.net", + "tcp": true, + "ips": [ + "188.215.235.38", + "188.215.235.39", + "188.215.235.40", + "188.215.235.41", + "188.215.235.43", + "188.215.235.44", + "188.215.235.47", + "188.215.235.48", + "188.215.235.54", + "188.215.235.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "87-1-ca.cg-dialup.net", + "udp": true, + "ips": [ + "66.115.142.135", + "66.115.142.162", + "66.115.142.173", + "104.200.151.61", + "104.200.151.121", + "104.200.151.143", + "140.228.21.49", + "140.228.24.40", + "172.98.89.177", + "181.214.153.13" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "97-1-ca.cg-dialup.net", + "tcp": true, + "ips": [ + "104.200.151.58", + "104.200.151.66", + "104.200.151.118", + "104.200.151.125", + "140.228.21.68", + "140.228.24.12", + "140.228.24.17", + "172.98.89.141", + "179.61.197.146", + "181.214.153.33" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "87-1-cl.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.11.3", + "146.70.11.4", + "146.70.11.6", + "146.70.11.8", + "146.70.11.9", + "146.70.11.10", + "146.70.11.11", + "146.70.11.12", + "146.70.11.13", + "146.70.11.14" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "97-1-cl.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.11.4", + "146.70.11.5", + "146.70.11.6", + "146.70.11.7", + "146.70.11.8", + "146.70.11.9", + "146.70.11.10", + "146.70.11.11", + "146.70.11.12", + "146.70.11.13" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "hostname": "87-1-cn.cg-dialup.net", + "udp": true, + "ips": [ + "188.241.80.133", + "188.241.80.134", + "188.241.80.135", + "188.241.80.136", + "188.241.80.137", + "188.241.80.138", + "188.241.80.139", + "188.241.80.140", + "188.241.80.141", + "188.241.80.142" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "hostname": "97-1-cn.cg-dialup.net", + "tcp": true, + "ips": [ + "188.241.80.131", + "188.241.80.134", + "188.241.80.135", + "188.241.80.136", + "188.241.80.137", + "188.241.80.138", + "188.241.80.139", + "188.241.80.140", + "188.241.80.141", + "188.241.80.142" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "87-1-co.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.16.131", + "154.47.16.136", + "154.47.16.141", + "154.47.16.142", + "154.47.16.147", + "154.47.16.233", + "154.47.16.234", + "154.47.16.238", + "154.47.16.242", + "154.47.16.245" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "97-1-co.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.16.132", + "154.47.16.133", + "154.47.16.141", + "154.47.16.144", + "154.47.16.146", + "154.47.16.221", + "154.47.16.226", + "154.47.16.229", + "154.47.16.231", + "154.47.16.246" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "87-1-cr.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.10.3", + "146.70.10.5", + "146.70.10.6", + "146.70.10.41", + "146.70.10.42", + "146.70.10.43", + "146.70.10.44", + "146.70.10.48", + "146.70.10.50", + "146.70.10.51" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "97-1-cr.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.10.4", + "146.70.10.5", + "146.70.10.7", + "146.70.10.8", + "146.70.10.9", + "146.70.10.11", + "146.70.10.13", + "146.70.10.42", + "146.70.10.45", + "146.70.10.46" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "87-1-hr.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.29.194", + "154.47.29.199", + "154.47.29.201", + "154.47.29.202", + "154.47.29.206", + "154.47.29.217", + "154.47.29.219", + "154.47.29.231", + "154.47.29.243", + "154.47.29.250" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "97-1-hr.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.29.197", + "154.47.29.201", + "154.47.29.203", + "154.47.29.207", + "154.47.29.227", + "154.47.29.228", + "154.47.29.235", + "154.47.29.239", + "154.47.29.246", + "154.47.29.247" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "87-1-cy.cg-dialup.net", + "udp": true, + "ips": [ + "185.253.162.131", + "185.253.162.132", + "185.253.162.134", + "185.253.162.136", + "185.253.162.137", + "185.253.162.138", + "185.253.162.139", + "185.253.162.140", + "185.253.162.142", + "185.253.162.143" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "97-1-cy.cg-dialup.net", + "tcp": true, + "ips": [ + "185.253.162.131", + "185.253.162.132", + "185.253.162.133", + "185.253.162.134", + "185.253.162.135", + "185.253.162.136", + "185.253.162.138", + "185.253.162.139", + "185.253.162.140", + "185.253.162.144" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "87-1-cz.cg-dialup.net", + "udp": true, + "ips": [ + "138.199.56.226", + "138.199.56.228", + "138.199.56.236", + "138.199.56.238", + "138.199.56.241", + "138.199.56.244", + "138.199.56.246", + "195.181.161.4", + "195.181.161.5", + "195.181.161.21" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "97-1-cz.cg-dialup.net", + "tcp": true, + "ips": [ + "138.199.56.239", + "138.199.56.241", + "138.199.56.245", + "138.199.56.250", + "195.181.161.4", + "195.181.161.7", + "195.181.161.15", + "195.181.161.17", + "195.181.161.21", + "195.181.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "87-1-dk.cg-dialup.net", + "udp": true, + "ips": [ + "188.126.94.195", + "188.126.94.202", + "188.126.94.206", + "188.126.94.210", + "188.126.94.217", + "188.126.94.218", + "188.126.94.220", + "188.126.94.228", + "188.126.94.235", + "188.126.94.241" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "97-1-dk.cg-dialup.net", + "tcp": true, + "ips": [ + "188.126.94.202", + "188.126.94.209", + "188.126.94.215", + "188.126.94.218", + "188.126.94.219", + "188.126.94.221", + "188.126.94.232", + "188.126.94.246", + "188.126.94.248", + "188.126.94.249" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "87-1-eg.cg-dialup.net", + "udp": true, + "ips": [ + "188.214.122.35", + "188.214.122.37", + "188.214.122.41", + "188.214.122.43", + "188.214.122.52", + "188.214.122.55", + "188.214.122.59", + "188.214.122.61", + "188.214.122.70", + "188.214.122.71" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "97-1-eg.cg-dialup.net", + "tcp": true, + "ips": [ + "188.214.122.37", + "188.214.122.39", + "188.214.122.40", + "188.214.122.47", + "188.214.122.48", + "188.214.122.55", + "188.214.122.57", + "188.214.122.61", + "188.214.122.70", + "188.214.122.78" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "87-1-ee.cg-dialup.net", + "udp": true, + "ips": [ + "165.231.182.132", + "165.231.182.135", + "165.231.182.136", + "165.231.182.138", + "165.231.182.139", + "165.231.182.144", + "165.231.182.150", + "165.231.182.151", + "165.231.182.153", + "165.231.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "97-1-ee.cg-dialup.net", + "tcp": true, + "ips": [ + "165.231.182.132", + "165.231.182.134", + "165.231.182.136", + "165.231.182.138", + "165.231.182.140", + "165.231.182.141", + "165.231.182.143", + "165.231.182.145", + "165.231.182.150", + "165.231.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "87-1-fi.cg-dialup.net", + "udp": true, + "ips": [ + "188.126.88.4", + "188.126.88.5", + "188.126.88.14", + "188.126.89.100", + "188.126.89.111", + "188.126.89.113", + "188.126.89.116", + "188.126.89.117", + "188.126.89.118", + "188.126.89.121" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "97-1-fi.cg-dialup.net", + "tcp": true, + "ips": [ + "188.126.88.6", + "188.126.88.8", + "188.126.89.100", + "188.126.89.101", + "188.126.89.102", + "188.126.89.104", + "188.126.89.105", + "188.126.89.108", + "188.126.89.110", + "188.126.89.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "87-1-fr.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.43.167", + "84.17.60.51", + "84.17.60.56", + "84.17.60.102", + "84.17.60.107", + "151.106.10.141", + "191.101.31.184", + "191.101.31.196", + "191.101.217.114", + "191.101.217.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "87-19-fr.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.43.39", + "84.17.43.41", + "84.17.43.42", + "84.17.43.44", + "84.17.43.47", + "138.199.27.2", + "138.199.27.6", + "138.199.27.8", + "138.199.27.10", + "138.199.27.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "97-1-fr.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.60.16", + "84.17.60.28", + "84.17.60.55", + "84.17.60.102", + "191.101.31.102", + "191.101.31.216", + "191.101.31.217", + "191.101.217.107", + "191.101.217.121", + "191.101.217.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "97-19-fr.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.43.43", + "84.17.43.46", + "84.17.43.48", + "138.199.27.1", + "138.199.27.4", + "138.199.27.5", + "138.199.27.6", + "138.199.27.8", + "138.199.27.9", + "138.199.27.10" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "87-1-ge.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.236.147", + "95.181.236.148", + "95.181.236.149", + "95.181.236.150", + "95.181.236.152", + "95.181.236.154", + "95.181.236.155", + "95.181.236.156", + "95.181.236.157", + "95.181.236.159" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "97-1-ge.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.236.146", + "95.181.236.147", + "95.181.236.148", + "95.181.236.149", + "95.181.236.151", + "95.181.236.152", + "95.181.236.155", + "95.181.236.157", + "95.181.236.158", + "95.181.236.159" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "87-1-de.cg-dialup.net", + "udp": true, + "ips": [ + "83.136.82.85", + "84.17.48.112", + "84.17.48.129", + "84.17.48.156", + "84.17.49.105", + "138.199.36.197", + "154.28.188.59", + "154.28.188.95", + "154.28.188.120", + "216.24.216.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "87-19-de.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.49.32", + "84.17.49.38", + "84.17.49.40", + "84.17.49.47", + "84.17.49.48", + "84.17.49.50", + "84.17.49.53", + "84.17.49.54", + "84.17.49.57", + "84.17.49.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "97-1-de.cg-dialup.net", + "tcp": true, + "ips": [ + "45.88.97.125", + "45.88.97.188", + "84.17.49.15", + "84.17.49.75", + "87.249.132.138", + "154.28.188.42", + "181.214.173.48", + "216.24.213.89", + "216.24.216.107", + "216.24.216.165" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "97-19-de.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.49.32", + "84.17.49.33", + "84.17.49.34", + "84.17.49.39", + "84.17.49.44", + "84.17.49.46", + "84.17.49.49", + "84.17.49.53", + "84.17.49.56", + "84.17.49.59" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "87-1-gr.cg-dialup.net", + "udp": true, + "ips": [ + "185.51.134.90", + "185.51.134.91", + "185.51.134.94", + "185.51.134.164", + "185.51.134.167", + "185.51.134.169", + "185.51.134.170", + "185.51.134.249", + "185.51.134.253", + "185.51.134.254" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "97-1-gr.cg-dialup.net", + "tcp": true, + "ips": [ + "185.51.134.89", + "185.51.134.93", + "185.51.134.94", + "185.51.134.167", + "185.51.134.168", + "185.51.134.173", + "185.51.134.244", + "185.51.134.246", + "185.51.134.248", + "185.51.134.250" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "hostname": "87-1-gl.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.120.5", + "91.90.120.6", + "91.90.120.7", + "91.90.120.8", + "91.90.120.11", + "91.90.120.12", + "91.90.120.13", + "91.90.120.14", + "91.90.120.15", + "91.90.120.16" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "hostname": "97-1-gl.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.120.3", + "91.90.120.4", + "91.90.120.5", + "91.90.120.8", + "91.90.120.9", + "91.90.120.10", + "91.90.120.12", + "91.90.120.13", + "91.90.120.14", + "91.90.120.16" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "hostname": "87-1-hk.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.56.131", + "84.17.56.134", + "84.17.56.136", + "84.17.56.146", + "84.17.56.147", + "84.17.56.149", + "84.17.56.165", + "84.17.56.168", + "84.17.56.172", + "84.17.56.174" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "hostname": "97-1-hk.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.56.133", + "84.17.56.137", + "84.17.56.140", + "84.17.56.142", + "84.17.56.143", + "84.17.56.152", + "84.17.56.162", + "84.17.56.163", + "84.17.56.172", + "84.17.56.183" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "87-1-hu.cg-dialup.net", + "udp": true, + "ips": [ + "86.106.74.243", + "86.106.74.248", + "86.106.74.251", + "185.189.114.115", + "185.189.114.117", + "185.189.114.118", + "185.189.114.120", + "185.189.114.121", + "185.189.114.122", + "185.189.114.125" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "97-1-hu.cg-dialup.net", + "tcp": true, + "ips": [ + "86.106.74.243", + "86.106.74.247", + "86.106.74.248", + "86.106.74.249", + "86.106.74.250", + "86.106.74.254", + "185.189.114.115", + "185.189.114.117", + "185.189.114.119", + "185.189.114.122" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "87-1-in.cg-dialup.net", + "udp": true, + "ips": [ + "166.0.218.31", + "166.0.218.32", + "166.0.218.34", + "166.0.218.39", + "166.0.218.42", + "166.0.218.43", + "166.0.218.48", + "166.0.218.49", + "166.0.218.53", + "166.0.218.58" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "97-1-in.cg-dialup.net", + "tcp": true, + "ips": [ + "166.0.218.34", + "166.0.218.36", + "166.0.218.40", + "166.0.218.42", + "166.0.218.51", + "166.0.218.52", + "166.0.218.54", + "166.0.218.55", + "166.0.218.57", + "166.0.218.58" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "87-1-id.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.226.131", + "192.142.226.133", + "192.142.226.134", + "192.142.226.135", + "192.142.226.136", + "192.142.226.137", + "192.142.226.138", + "192.142.226.139", + "192.142.226.140", + "192.142.226.141" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "97-1-id.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.226.131", + "192.142.226.132", + "192.142.226.133", + "192.142.226.135", + "192.142.226.136", + "192.142.226.137", + "192.142.226.138", + "192.142.226.139", + "192.142.226.140", + "192.142.226.141" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "hostname": "87-1-ir.cg-dialup.net", + "udp": true, + "ips": [ + "62.133.46.131", + "62.133.46.132", + "62.133.46.133", + "62.133.46.134", + "62.133.46.135", + "62.133.46.136", + "62.133.46.137", + "62.133.46.138", + "62.133.46.139", + "62.133.46.140" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "hostname": "97-1-ir.cg-dialup.net", + "tcp": true, + "ips": [ + "62.133.46.131", + "62.133.46.132", + "62.133.46.133", + "62.133.46.135", + "62.133.46.137", + "62.133.46.138", + "62.133.46.139", + "62.133.46.140", + "62.133.46.141", + "62.133.46.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "87-1-ie.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.235.168", + "77.81.139.37", + "77.81.139.38", + "84.247.48.13", + "84.247.48.19", + "149.34.242.225", + "149.34.242.226", + "149.34.242.230", + "149.34.242.233", + "149.34.242.248" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "97-1-ie.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.235.166", + "37.120.235.171", + "37.120.235.173", + "77.81.139.37", + "77.81.139.43", + "84.247.48.7", + "84.247.48.8", + "84.247.48.27", + "149.34.242.234", + "149.34.242.236" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "87-1-im.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.124.147", + "91.90.124.148", + "91.90.124.150", + "91.90.124.151", + "91.90.124.153", + "91.90.124.154", + "91.90.124.155", + "91.90.124.157", + "91.90.124.158", + "91.90.124.159" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "97-1-im.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.124.147", + "91.90.124.148", + "91.90.124.150", + "91.90.124.151", + "91.90.124.152", + "91.90.124.154", + "91.90.124.155", + "91.90.124.156", + "91.90.124.157", + "91.90.124.159" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "87-1-il.cg-dialup.net", + "udp": true, + "ips": [ + "169.150.248.132", + "169.150.248.142", + "169.150.248.150", + "169.150.248.152", + "169.150.248.165", + "169.150.248.167", + "169.150.248.172", + "169.150.248.173", + "169.150.248.174", + "169.150.248.178" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "97-1-il.cg-dialup.net", + "tcp": true, + "ips": [ + "169.150.248.130", + "169.150.248.132", + "169.150.248.134", + "169.150.248.144", + "169.150.248.146", + "169.150.248.159", + "169.150.248.173", + "169.150.248.177", + "169.150.248.181", + "169.150.248.182" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "87-1-it.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.58.23", + "87.101.94.74", + "185.217.71.26", + "185.217.71.27", + "185.217.71.133", + "185.217.71.135", + "185.217.71.150", + "185.217.71.156", + "185.217.71.186", + "212.102.55.114" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "97-1-it.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.58.9", + "84.17.58.118", + "87.101.94.70", + "185.217.71.24", + "185.217.71.136", + "185.217.71.186", + "212.102.55.100", + "212.102.55.101", + "212.102.55.104", + "212.102.55.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "87-1-jp.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.20.211", + "154.47.20.223", + "154.47.20.228", + "154.47.20.233", + "154.47.20.234", + "156.146.35.17", + "156.146.35.20", + "156.146.35.34", + "156.146.35.37", + "156.146.35.49" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "97-1-jp.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.20.211", + "154.47.20.228", + "154.47.20.229", + "156.146.35.2", + "156.146.35.14", + "156.146.35.15", + "156.146.35.16", + "156.146.35.28", + "156.146.35.30", + "156.146.35.31" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "87-1-kz.cg-dialup.net", + "udp": true, + "ips": [ + "62.133.47.146", + "62.133.47.147", + "62.133.47.150", + "62.133.47.152", + "62.133.47.153", + "62.133.47.154", + "62.133.47.156", + "62.133.47.158", + "62.133.47.159", + "62.133.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "97-1-kz.cg-dialup.net", + "tcp": true, + "ips": [ + "62.133.47.146", + "62.133.47.147", + "62.133.47.149", + "62.133.47.150", + "62.133.47.151", + "62.133.47.152", + "62.133.47.153", + "62.133.47.155", + "62.133.47.157", + "62.133.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "87-1-ke.cg-dialup.net", + "udp": true, + "ips": [ + "62.12.118.195", + "62.12.118.196", + "62.12.118.197", + "62.12.118.198", + "62.12.118.199", + "62.12.118.200", + "62.12.118.201", + "62.12.118.202", + "62.12.118.203", + "62.12.118.204" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "97-1-ke.cg-dialup.net", + "tcp": true, + "ips": [ + "62.12.118.195", + "62.12.118.196", + "62.12.118.197", + "62.12.118.198", + "62.12.118.199", + "62.12.118.200", + "62.12.118.201", + "62.12.118.202", + "62.12.118.203", + "62.12.118.204" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "87-1-kr.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.227.130", + "192.142.227.131", + "192.142.227.138", + "192.142.227.140", + "192.142.227.143", + "192.142.227.146", + "192.142.227.148", + "192.142.227.150", + "192.142.227.152", + "192.142.227.153" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "97-1-kr.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.227.130", + "192.142.227.131", + "192.142.227.133", + "192.142.227.134", + "192.142.227.135", + "192.142.227.144", + "192.142.227.147", + "192.142.227.150", + "192.142.227.152", + "192.142.227.153" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "87-1-lv.cg-dialup.net", + "udp": true, + "ips": [ + "196.196.53.20", + "196.196.53.24", + "196.196.53.27", + "196.196.53.29", + "196.196.53.30", + "196.196.53.36", + "196.196.53.38", + "196.196.53.40", + "196.196.53.42", + "196.196.53.126" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "97-1-lv.cg-dialup.net", + "tcp": true, + "ips": [ + "196.196.53.19", + "196.196.53.25", + "196.196.53.27", + "196.196.53.35", + "196.196.53.41", + "196.196.53.43", + "196.196.53.44", + "196.196.53.118", + "196.196.53.125", + "196.196.53.126" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "87-1-li.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.122.147", + "91.90.122.148", + "91.90.122.149", + "91.90.122.152", + "91.90.122.153", + "91.90.122.154", + "91.90.122.155", + "91.90.122.156", + "91.90.122.158", + "91.90.122.159" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "97-1-li.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.122.147", + "91.90.122.148", + "91.90.122.149", + "91.90.122.150", + "91.90.122.153", + "91.90.122.154", + "91.90.122.156", + "91.90.122.157", + "91.90.122.158", + "91.90.122.159" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "87-1-lt.cg-dialup.net", + "udp": true, + "ips": [ + "194.32.122.6", + "194.32.122.9", + "194.32.122.15", + "194.32.122.18", + "194.32.122.19", + "194.32.122.24", + "194.32.122.25", + "194.32.122.26", + "194.32.122.27", + "194.32.122.29" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "97-1-lt.cg-dialup.net", + "tcp": true, + "ips": [ + "194.32.122.5", + "194.32.122.6", + "194.32.122.10", + "194.32.122.11", + "194.32.122.12", + "194.32.122.13", + "194.32.122.14", + "194.32.122.15", + "194.32.122.19", + "194.32.122.21" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "87-1-lu.cg-dialup.net", + "udp": true, + "ips": [ + "37.46.113.228", + "37.46.113.229", + "37.46.113.230", + "37.46.113.242", + "37.46.113.243", + "37.46.113.244", + "37.46.113.249", + "37.46.113.252", + "37.46.113.253", + "37.46.113.254" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "97-1-lu.cg-dialup.net", + "tcp": true, + "ips": [ + "37.46.113.224", + "37.46.113.225", + "37.46.113.227", + "37.46.113.232", + "37.46.113.234", + "37.46.113.235", + "37.46.113.244", + "37.46.113.245", + "37.46.113.246", + "37.46.113.249" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "hostname": "87-1-mo.cg-dialup.net", + "udp": true, + "ips": [ + "84.252.92.131", + "84.252.92.134", + "84.252.92.135", + "84.252.92.137", + "84.252.92.138", + "84.252.92.139", + "84.252.92.141", + "84.252.92.142", + "84.252.92.143", + "84.252.92.144" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "hostname": "97-1-mo.cg-dialup.net", + "tcp": true, + "ips": [ + "84.252.92.131", + "84.252.92.132", + "84.252.92.133", + "84.252.92.137", + "84.252.92.138", + "84.252.92.140", + "84.252.92.141", + "84.252.92.143", + "84.252.92.144", + "84.252.92.145" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "hostname": "87-1-mk.cg-dialup.net", + "udp": true, + "ips": [ + "185.225.28.3", + "185.225.28.4", + "185.225.28.5", + "185.225.28.7", + "185.225.28.8", + "185.225.28.9", + "185.225.28.10", + "185.225.28.11", + "185.225.28.12" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "hostname": "97-1-mk.cg-dialup.net", + "tcp": true, + "ips": [ + "185.225.28.3", + "185.225.28.4", + "185.225.28.5", + "185.225.28.7", + "185.225.28.8", + "185.225.28.9", + "185.225.28.10", + "185.225.28.11", + "185.225.28.12" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "87-1-my.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.16.130", + "192.142.16.133", + "192.142.16.137", + "192.142.16.138", + "192.142.16.141", + "192.142.16.142", + "192.142.16.144", + "192.142.16.148", + "192.142.16.149", + "192.142.16.150" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "97-1-my.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.16.132", + "192.142.16.133", + "192.142.16.134", + "192.142.16.136", + "192.142.16.137", + "192.142.16.144", + "192.142.16.148", + "192.142.16.150", + "192.142.16.151", + "192.142.16.152" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "87-1-mt.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.230.133", + "176.125.230.134", + "176.125.230.135", + "176.125.230.136", + "176.125.230.137", + "176.125.230.138", + "176.125.230.139", + "176.125.230.143", + "176.125.230.144", + "176.125.230.145" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "97-1-mt.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.230.132", + "176.125.230.135", + "176.125.230.136", + "176.125.230.137", + "176.125.230.139", + "176.125.230.140", + "176.125.230.141", + "176.125.230.142", + "176.125.230.143", + "176.125.230.144" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "87-1-mx.cg-dialup.net", + "udp": true, + "ips": [ + "77.81.142.137", + "77.81.142.144", + "77.81.142.147", + "77.81.142.149", + "77.81.142.150", + "77.81.142.151", + "77.81.142.210", + "77.81.142.213", + "77.81.142.217", + "77.81.142.224" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "97-1-mx.cg-dialup.net", + "tcp": true, + "ips": [ + "77.81.142.139", + "77.81.142.141", + "77.81.142.150", + "77.81.142.155", + "77.81.142.208", + "77.81.142.209", + "77.81.142.210", + "77.81.142.213", + "77.81.142.226", + "77.81.142.227" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "87-1-md.cg-dialup.net", + "udp": true, + "ips": [ + "178.175.130.246", + "178.175.130.250", + "178.175.130.251", + "178.175.130.252", + "178.175.130.254", + "178.175.132.162", + "178.175.132.164", + "178.175.132.166", + "178.175.142.131", + "178.175.142.132" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "97-1-md.cg-dialup.net", + "tcp": true, + "ips": [ + "178.175.130.243", + "178.175.130.244", + "178.175.130.245", + "178.175.130.246", + "178.175.130.251", + "178.175.130.253", + "178.175.130.254", + "178.175.132.163", + "178.175.132.166", + "178.175.142.131" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "87-1-mc.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.233.147", + "95.181.233.148", + "95.181.233.149", + "95.181.233.150", + "95.181.233.151", + "95.181.233.152", + "95.181.233.153", + "95.181.233.155", + "95.181.233.156", + "95.181.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "97-1-mc.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.233.146", + "95.181.233.147", + "95.181.233.148", + "95.181.233.149", + "95.181.233.150", + "95.181.233.151", + "95.181.233.153", + "95.181.233.155", + "95.181.233.156", + "95.181.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "87-1-mn.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.227.3", + "192.142.227.4", + "192.142.227.5", + "192.142.227.6", + "192.142.227.7", + "192.142.227.8", + "192.142.227.9", + "192.142.227.10", + "192.142.227.11", + "192.142.227.12" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "97-1-mn.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.227.2", + "192.142.227.3", + "192.142.227.4", + "192.142.227.6", + "192.142.227.7", + "192.142.227.8", + "192.142.227.9", + "192.142.227.10", + "192.142.227.11", + "192.142.227.12" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "87-1-me.cg-dialup.net", + "udp": true, + "ips": [ + "176.125.229.131", + "176.125.229.133", + "176.125.229.137", + "176.125.229.138", + "176.125.229.139", + "176.125.229.140", + "176.125.229.141", + "176.125.229.142", + "176.125.229.143", + "176.125.229.145" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "97-1-me.cg-dialup.net", + "tcp": true, + "ips": [ + "176.125.229.131", + "176.125.229.133", + "176.125.229.135", + "176.125.229.137", + "176.125.229.139", + "176.125.229.140", + "176.125.229.141", + "176.125.229.143", + "176.125.229.144", + "176.125.229.145" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "hostname": "87-1-ma.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.232.17", + "95.181.232.19", + "95.181.232.20", + "95.181.232.132", + "95.181.232.133", + "95.181.232.136", + "95.181.232.137", + "95.181.232.138", + "95.181.232.142", + "95.181.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "hostname": "97-1-ma.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.232.15", + "95.181.232.18", + "95.181.232.21", + "95.181.232.22", + "95.181.232.23", + "95.181.232.25", + "95.181.232.26", + "95.181.232.132", + "95.181.232.133", + "95.181.232.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "87-1-nl.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.47.4", + "84.17.47.15", + "84.17.47.108", + "84.17.47.112", + "181.214.206.14", + "181.214.206.37", + "191.96.168.15", + "191.96.168.56", + "195.78.54.31", + "195.78.54.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "97-1-nl.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.47.10", + "181.214.206.25", + "191.96.168.13", + "191.96.168.126", + "191.96.168.134", + "191.96.168.144", + "191.96.168.148", + "195.78.54.23", + "195.78.54.24", + "195.78.54.56" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "87-1-nz.cg-dialup.net", + "udp": true, + "ips": [ + "43.250.207.98", + "43.250.207.99", + "43.250.207.100", + "43.250.207.102", + "43.250.207.103", + "43.250.207.104", + "43.250.207.107", + "43.250.207.108", + "43.250.207.109", + "43.250.207.110" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "97-1-nz.cg-dialup.net", + "tcp": true, + "ips": [ + "43.250.207.98", + "43.250.207.100", + "43.250.207.101", + "43.250.207.102", + "43.250.207.104", + "43.250.207.106", + "43.250.207.107", + "43.250.207.108", + "43.250.207.109", + "43.250.207.110" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "hostname": "87-1-ng.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.65.3", + "146.70.65.5", + "146.70.65.6", + "146.70.65.8", + "146.70.65.10", + "146.70.65.11", + "146.70.65.12", + "146.70.65.13", + "146.70.65.14", + "146.70.65.15" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "hostname": "97-1-ng.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.65.3", + "146.70.65.5", + "146.70.65.6", + "146.70.65.7", + "146.70.65.8", + "146.70.65.10", + "146.70.65.11", + "146.70.65.13", + "146.70.65.14", + "146.70.65.15" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "87-1-no.cg-dialup.net", + "udp": true, + "ips": [ + "82.102.27.93", + "185.206.225.230", + "185.206.225.233", + "185.206.225.234", + "185.253.97.234", + "185.253.97.243", + "185.253.97.244", + "185.253.97.246", + "185.253.97.248", + "185.253.97.250" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "97-1-no.cg-dialup.net", + "tcp": true, + "ips": [ + "82.102.27.91", + "82.102.27.92", + "185.206.225.27", + "185.206.225.229", + "185.206.225.233", + "185.206.225.236", + "185.253.97.238", + "185.253.97.243", + "185.253.97.252", + "185.253.97.253" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "87-1-pk.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.12.5", + "146.70.12.6", + "146.70.12.7", + "146.70.12.8", + "146.70.12.9", + "146.70.12.10", + "146.70.12.11", + "146.70.12.12", + "146.70.12.13", + "146.70.12.14" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "97-1-pk.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.12.4", + "146.70.12.5", + "146.70.12.6", + "146.70.12.8", + "146.70.12.9", + "146.70.12.10", + "146.70.12.11", + "146.70.12.12", + "146.70.12.13", + "146.70.12.14" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "87-1-pa.cg-dialup.net", + "udp": true, + "ips": [ + "91.90.126.131", + "91.90.126.132", + "91.90.126.133", + "91.90.126.136", + "91.90.126.137", + "91.90.126.138", + "91.90.126.141", + "91.90.126.142", + "91.90.126.143", + "91.90.126.144" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "97-1-pa.cg-dialup.net", + "tcp": true, + "ips": [ + "91.90.126.131", + "91.90.126.132", + "91.90.126.133", + "91.90.126.134", + "91.90.126.135", + "91.90.126.137", + "91.90.126.139", + "91.90.126.142", + "91.90.126.143", + "91.90.126.144" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "hostname": "87-1-ph.cg-dialup.net", + "udp": true, + "ips": [ + "188.214.125.42", + "188.214.125.43", + "188.214.125.49", + "188.214.125.56", + "188.214.125.60", + "192.142.18.9", + "192.142.18.10", + "192.142.18.17", + "192.142.18.27", + "192.142.18.30" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "hostname": "97-1-ph.cg-dialup.net", + "tcp": true, + "ips": [ + "188.214.125.38", + "188.214.125.42", + "188.214.125.46", + "188.214.125.54", + "192.142.18.2", + "192.142.18.7", + "192.142.18.18", + "192.142.18.22", + "192.142.18.24", + "192.142.18.25" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "87-1-pl.cg-dialup.net", + "udp": true, + "ips": [ + "45.134.212.201", + "45.134.212.205", + "138.199.59.135", + "138.199.59.137", + "138.199.59.138", + "138.199.59.161", + "138.199.59.163", + "138.199.59.172", + "138.199.59.177", + "138.199.59.185" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "97-1-pl.cg-dialup.net", + "tcp": true, + "ips": [ + "45.134.212.197", + "45.134.212.200", + "138.199.59.130", + "138.199.59.134", + "138.199.59.137", + "138.199.59.148", + "138.199.59.152", + "138.199.59.157", + "138.199.59.169", + "138.199.59.170" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "87-1-pt.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.59.133", + "146.70.59.134", + "146.70.59.137", + "146.70.59.144", + "146.70.59.145", + "146.70.59.153", + "146.70.59.160", + "146.70.59.162", + "146.70.59.163", + "146.70.59.177" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "97-1-pt.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.59.138", + "146.70.59.143", + "146.70.59.144", + "146.70.59.148", + "146.70.59.153", + "146.70.59.160", + "146.70.59.163", + "146.70.59.164", + "146.70.59.170", + "146.70.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "hostname": "87-1-qa.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.234.134", + "95.181.234.135", + "95.181.234.136", + "95.181.234.137", + "95.181.234.138", + "95.181.234.139", + "95.181.234.140", + "95.181.234.141", + "95.181.234.143", + "95.181.234.144" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "hostname": "97-1-qa.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.234.131", + "95.181.234.133", + "95.181.234.135", + "95.181.234.137", + "95.181.234.138", + "95.181.234.139", + "95.181.234.140", + "95.181.234.141", + "95.181.234.142", + "95.181.234.143" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "87-1-ro.cg-dialup.net", + "udp": true, + "ips": [ + "84.239.14.178", + "84.239.40.198", + "84.239.40.211", + "84.239.40.217", + "84.239.40.235", + "84.239.40.237", + "84.239.40.244", + "84.239.49.11", + "84.239.49.21", + "84.239.49.27" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "87-8-ro.cg-dialup.net", + "udp": true, + "ips": [ + "85.9.20.131", + "85.9.20.134", + "85.9.20.135", + "85.9.20.138", + "85.9.20.144", + "85.9.20.146", + "85.9.20.148", + "85.9.20.151", + "85.9.20.154", + "85.9.20.248" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "97-1-ro.cg-dialup.net", + "tcp": true, + "ips": [ + "84.239.40.208", + "84.239.40.209", + "84.239.40.214", + "84.239.40.225", + "84.239.40.228", + "84.239.40.229", + "84.239.40.236", + "84.239.40.239", + "84.239.49.12", + "193.176.85.114" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "97-8-ro.cg-dialup.net", + "tcp": true, + "ips": [ + "85.9.20.132", + "85.9.20.135", + "85.9.20.136", + "85.9.20.145", + "85.9.20.148", + "85.9.20.149", + "85.9.20.150", + "85.9.20.152", + "85.9.20.154", + "85.9.20.249" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "hostname": "87-1-ru.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.52.100", + "146.70.52.103", + "146.70.52.198", + "146.70.52.199", + "146.70.52.202", + "146.70.52.206", + "146.70.52.222", + "146.70.52.229", + "146.70.52.244", + "146.70.52.248" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "hostname": "97-1-ru.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.52.29", + "146.70.52.116", + "146.70.52.117", + "146.70.52.197", + "146.70.52.219", + "146.70.52.220", + "146.70.52.227", + "146.70.52.233", + "146.70.52.234", + "146.70.52.244" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "hostname": "87-1-sa.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.235.132", + "95.181.235.133", + "95.181.235.135", + "95.181.235.136", + "95.181.235.137", + "95.181.235.138", + "95.181.235.139", + "95.181.235.140", + "95.181.235.143", + "95.181.235.144" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "hostname": "97-1-sa.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.235.131", + "95.181.235.133", + "95.181.235.134", + "95.181.235.135", + "95.181.235.136", + "95.181.235.137", + "95.181.235.138", + "95.181.235.141", + "95.181.235.142", + "95.181.235.143" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "87-1-rs.cg-dialup.net", + "udp": true, + "ips": [ + "37.46.115.44", + "37.46.115.45", + "37.46.115.46", + "37.46.115.47", + "37.46.115.48", + "37.46.115.49", + "37.46.115.51", + "37.46.115.53", + "37.46.115.54", + "37.46.115.56" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "97-1-rs.cg-dialup.net", + "tcp": true, + "ips": [ + "37.46.115.42", + "37.46.115.43", + "37.46.115.44", + "37.46.115.45", + "37.46.115.46", + "37.46.115.50", + "37.46.115.52", + "37.46.115.53", + "37.46.115.54", + "37.46.115.56" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "87-1-sg.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.39.162", + "84.17.39.164", + "84.17.39.165", + "84.17.39.167", + "84.17.39.168", + "84.17.39.170", + "84.17.39.173", + "84.17.39.177", + "84.17.39.180", + "84.17.39.181" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "97-1-sg.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.39.162", + "84.17.39.164", + "84.17.39.169", + "84.17.39.170", + "84.17.39.171", + "84.17.39.173", + "84.17.39.174", + "84.17.39.176", + "84.17.39.178", + "84.17.39.185" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "87-1-sk.cg-dialup.net", + "udp": true, + "ips": [ + "146.70.114.19", + "146.70.114.20", + "146.70.114.21", + "146.70.114.22", + "146.70.114.23", + "146.70.114.26", + "146.70.114.28", + "185.245.85.228", + "185.245.85.230", + "185.245.85.234" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "97-1-sk.cg-dialup.net", + "tcp": true, + "ips": [ + "146.70.114.22", + "146.70.114.25", + "146.70.114.27", + "146.70.114.28", + "146.70.114.30", + "185.245.85.228", + "185.245.85.229", + "185.245.85.230", + "185.245.85.234", + "185.245.85.235" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "87-1-si.cg-dialup.net", + "udp": true, + "ips": [ + "195.80.150.211", + "195.80.150.212", + "195.80.150.213", + "195.80.150.214", + "195.80.150.217", + "195.80.150.218", + "195.80.150.219", + "195.80.150.220", + "195.80.150.221", + "195.80.150.222" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "97-1-si.cg-dialup.net", + "tcp": true, + "ips": [ + "195.80.150.211", + "195.80.150.212", + "195.80.150.213", + "195.80.150.215", + "195.80.150.216", + "195.80.150.217", + "195.80.150.218", + "195.80.150.220", + "195.80.150.221", + "195.80.150.222" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "87-1-za.cg-dialup.net", + "udp": true, + "ips": [ + "154.47.30.2", + "154.47.30.3", + "154.47.30.7", + "154.47.30.10", + "154.47.30.15", + "154.47.30.17", + "154.47.30.23", + "154.47.30.24", + "154.47.30.26", + "154.47.30.30" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "97-1-za.cg-dialup.net", + "tcp": true, + "ips": [ + "154.47.30.5", + "154.47.30.9", + "154.47.30.10", + "154.47.30.16", + "154.47.30.17", + "154.47.30.19", + "154.47.30.21", + "154.47.30.25", + "154.47.30.28", + "154.47.30.30" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "87-1-es.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.142.172", + "45.134.213.186", + "45.134.213.187", + "82.102.26.195", + "84.17.62.136", + "84.17.62.139", + "84.17.62.145", + "185.253.99.204", + "196.245.54.8", + "196.245.54.22" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "97-1-es.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.142.39", + "37.120.142.44", + "45.134.213.164", + "45.134.213.183", + "45.134.213.184", + "45.134.213.187", + "84.17.62.148", + "146.70.22.70", + "196.245.54.10", + "196.245.54.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "hostname": "87-1-lk.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.17.7", + "192.142.17.9", + "192.142.17.15", + "192.142.17.16", + "192.142.17.19", + "192.142.17.22", + "192.142.17.23", + "192.142.17.24", + "192.142.17.26", + "192.142.17.28" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "hostname": "97-1-lk.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.17.4", + "192.142.17.6", + "192.142.17.9", + "192.142.17.10", + "192.142.17.11", + "192.142.17.15", + "192.142.17.16", + "192.142.17.17", + "192.142.17.23", + "192.142.17.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "87-1-se.cg-dialup.net", + "udp": true, + "ips": [ + "46.246.41.150", + "188.126.79.5", + "188.126.79.10", + "188.126.79.14", + "188.126.79.29", + "188.126.79.30", + "195.246.120.142", + "195.246.120.152", + "195.246.120.153", + "195.246.120.165" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "97-1-se.cg-dialup.net", + "tcp": true, + "ips": [ + "46.246.41.150", + "46.246.41.152", + "46.246.41.153", + "188.126.79.23", + "195.246.120.144", + "195.246.120.145", + "195.246.120.146", + "195.246.120.161", + "195.246.120.164", + "195.246.120.165" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "87-1-ch.cg-dialup.net", + "udp": true, + "ips": [ + "84.17.52.7", + "84.17.52.37", + "84.17.52.39", + "84.17.52.44", + "102.129.143.4", + "102.129.143.13", + "102.129.143.18", + "102.129.143.23", + "102.129.143.34", + "102.129.143.39" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "97-1-ch.cg-dialup.net", + "tcp": true, + "ips": [ + "84.17.52.8", + "84.17.52.37", + "102.129.143.4", + "102.129.143.12", + "102.129.143.16", + "102.129.143.26", + "102.129.143.31", + "102.129.143.35", + "102.129.143.41", + "102.129.143.48" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "87-1-tw.cg-dialup.net", + "udp": true, + "ips": [ + "173.244.49.3", + "173.244.49.5", + "173.244.49.9", + "173.244.49.20", + "173.244.49.27", + "173.244.49.30", + "173.244.49.31", + "173.244.49.43", + "173.244.49.47", + "173.244.49.49" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "97-1-tw.cg-dialup.net", + "tcp": true, + "ips": [ + "173.244.49.5", + "173.244.49.7", + "173.244.49.9", + "173.244.49.17", + "173.244.49.20", + "173.244.49.31", + "173.244.49.32", + "173.244.49.37", + "173.244.49.46", + "173.244.49.48" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "87-1-th.cg-dialup.net", + "udp": true, + "ips": [ + "192.142.226.5", + "192.142.226.11", + "192.142.226.13", + "192.142.226.14", + "192.142.226.16", + "192.142.226.18", + "192.142.226.19", + "192.142.226.21", + "192.142.226.24", + "192.142.226.25" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "97-1-th.cg-dialup.net", + "tcp": true, + "ips": [ + "192.142.226.4", + "192.142.226.6", + "192.142.226.9", + "192.142.226.10", + "192.142.226.11", + "192.142.226.12", + "192.142.226.15", + "192.142.226.18", + "192.142.226.20", + "192.142.226.23" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "87-1-tr.cg-dialup.net", + "udp": true, + "ips": [ + "188.213.34.3", + "188.213.34.5", + "188.213.34.7", + "188.213.34.8", + "188.213.34.9", + "188.213.34.11", + "188.213.34.16", + "188.213.34.39", + "188.213.34.44", + "188.213.34.45" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "97-1-tr.cg-dialup.net", + "tcp": true, + "ips": [ + "188.213.34.4", + "188.213.34.5", + "188.213.34.11", + "188.213.34.12", + "188.213.34.16", + "188.213.34.17", + "188.213.34.35", + "188.213.34.36", + "188.213.34.41", + "188.213.34.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "87-1-ua.cg-dialup.net", + "udp": true, + "ips": [ + "154.6.130.2", + "154.6.130.3", + "154.6.130.11", + "154.6.130.13", + "154.6.130.15", + "154.6.130.16", + "154.6.130.17", + "154.6.130.18", + "154.6.130.19", + "154.6.130.21" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "97-1-ua.cg-dialup.net", + "tcp": true, + "ips": [ + "154.6.130.3", + "154.6.130.4", + "154.6.130.6", + "154.6.130.7", + "154.6.130.11", + "154.6.130.13", + "154.6.130.15", + "154.6.130.17", + "154.6.130.23", + "154.6.130.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "87-1-ae.cg-dialup.net", + "udp": true, + "ips": [ + "217.138.193.179", + "217.138.193.180", + "217.138.193.181", + "217.138.193.182", + "217.138.193.183", + "217.138.193.185", + "217.138.193.186", + "217.138.193.187", + "217.138.193.188", + "217.138.193.189" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "97-1-ae.cg-dialup.net", + "tcp": true, + "ips": [ + "217.138.193.179", + "217.138.193.181", + "217.138.193.182", + "217.138.193.183", + "217.138.193.184", + "217.138.193.185", + "217.138.193.186", + "217.138.193.187", + "217.138.193.189", + "217.138.193.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "87-1-gb.cg-dialup.net", + "udp": true, + "ips": [ + "45.133.173.40", + "45.133.173.51", + "45.133.173.72", + "138.199.30.30", + "138.199.31.96", + "138.199.31.97", + "138.199.63.106", + "138.199.63.110", + "181.215.176.240", + "194.110.13.105" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "87-19-gb.cg-dialup.net", + "udp": true, + "ips": [ + "37.120.133.157", + "37.120.133.158", + "37.120.133.159", + "37.120.133.160", + "37.120.133.161", + "37.120.133.162", + "37.120.133.164", + "37.120.133.166", + "37.120.133.167", + "37.120.133.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "97-1-gb.cg-dialup.net", + "tcp": true, + "ips": [ + "45.133.172.129", + "45.133.172.148", + "84.17.51.21", + "138.199.63.46", + "138.199.63.85", + "138.199.63.97", + "181.215.176.100", + "181.215.176.228", + "191.101.209.72", + "194.110.13.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "97-19-gb.cg-dialup.net", + "tcp": true, + "ips": [ + "37.120.133.157", + "37.120.133.158", + "37.120.133.159", + "37.120.133.161", + "37.120.133.163", + "37.120.133.164", + "37.120.133.165", + "37.120.133.166", + "37.120.133.167", + "37.120.133.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "87-1-us.cg-dialup.net", + "udp": true, + "ips": [ + "89.187.171.172", + "89.187.182.8", + "89.187.182.11", + "149.18.24.81", + "154.16.192.161", + "154.16.192.193", + "154.16.192.211", + "154.16.192.218", + "184.170.240.241", + "191.96.150.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "87-19-us.cg-dialup.net", + "udp": true, + "ips": [ + "156.146.59.164", + "156.146.59.165", + "156.146.59.166", + "156.146.59.167", + "156.146.59.168", + "156.146.59.169", + "156.146.59.170", + "156.146.59.172", + "156.146.59.177", + "156.146.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "97-1-us.cg-dialup.net", + "tcp": true, + "ips": [ + "102.129.152.213", + "149.18.24.105", + "154.16.49.23", + "154.16.49.25", + "184.170.240.227", + "191.96.150.196", + "191.96.150.222", + "191.96.150.242", + "191.96.150.247", + "191.96.150.252" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "97-19-us.cg-dialup.net", + "tcp": true, + "ips": [ + "156.146.59.163", + "156.146.59.164", + "156.146.59.165", + "156.146.59.170", + "156.146.59.171", + "156.146.59.172", + "156.146.59.173", + "156.146.59.174", + "156.146.59.176", + "156.146.59.178" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "87-1-ve.cg-dialup.net", + "udp": true, + "ips": [ + "95.181.237.131", + "95.181.237.132", + "95.181.237.133", + "95.181.237.134", + "95.181.237.135", + "95.181.237.136", + "95.181.237.139", + "95.181.237.140", + "95.181.237.141", + "95.181.237.142" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "97-1-ve.cg-dialup.net", + "tcp": true, + "ips": [ + "95.181.237.131", + "95.181.237.132", + "95.181.237.134", + "95.181.237.136", + "95.181.237.138", + "95.181.237.140", + "95.181.237.141", + "95.181.237.142", + "95.181.237.143", + "95.181.237.144" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "87-1-vn.cg-dialup.net", + "udp": true, + "ips": [ + "149.18.84.5", + "149.18.84.8", + "149.18.84.10", + "149.18.84.12", + "149.18.84.23", + "149.18.84.139", + "149.18.84.144", + "149.18.84.146", + "149.18.84.149", + "149.18.84.151" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "97-1-vn.cg-dialup.net", + "tcp": true, + "ips": [ + "149.18.84.5", + "149.18.84.12", + "149.18.84.18", + "149.18.84.21", + "149.18.84.25", + "149.18.84.130", + "149.18.84.134", + "149.18.84.138", + "149.18.84.143", + "149.18.84.146" + ] + } + ] + }, + "expressvpn": { + "version": 2, + "timestamp": 1658167237, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "hostname": "albania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "31.171.152.38" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "hostname": "algeria-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.33", + "85.203.22.39" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "hostname": "andorra-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.21" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "hostname": "argentina-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.18", + "45.91.48.28" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "hostname": "armenia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.56" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "australia-brisbane-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.224.79", + "45.132.224.84" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "australia-melbourne-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.225.3", + "45.132.225.8" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "australia-perth-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.6.4", + "45.133.6.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "australia-sydney-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "181.214.175.87", + "181.214.175.134" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "australia-sydney-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.5.163", + "45.133.5.227" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "austria-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.95.243.205" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "hostname": "bahamas-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "154.6.23.21" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "hostname": "bangladesh-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.218" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "hostname": "belarus-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.64", + "85.203.22.68" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "belgium-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.110.115.116" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "hostname": "bhutan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.32.107" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Bosnia And Herzegovina", + "hostname": "bosniaandherzegovina-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.98", + "85.203.22.105" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "brazil-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.252.94", + "191.101.252.116" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "brazil-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.43", + "45.91.48.48", + "45.91.48.53", + "45.91.48.58", + "45.91.48.63" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "hostname": "brunei-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.58" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "hostname": "cambodia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "canada-montreal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "107.152.206.69", + "144.168.163.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "canada-montreal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "107.152.206.69", + "144.168.163.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "canada-toronto-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "198.144.145.4", + "198.144.145.10" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "canada-toronto-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "50.118.143.41", + "50.118.143.131" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "chile-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.48.78" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "hostname": "colombia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.20", + "45.91.49.25" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "Costa Rica", + "hostname": "costarica-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "179.48.251.106" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "croatia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.10.56.237", + "85.10.56.244" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "cyprus-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.205.186.3", + "213.169.148.152" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Czech Republic", + "hostname": "czechrepublic-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "82.118.30.150" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "denmark-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.29.107.11", + "193.29.107.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "hostname": "ecuador-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.40" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "hostname": "egypt-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.113" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "estonia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.195.237.147", + "185.195.237.154" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "finland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "196.244.192.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "france-paris-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.22.2", + "45.91.22.7", + "45.91.22.24", + "45.91.22.29", + "45.91.22.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "france-paris-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.91.77", + "193.68.91.173" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Strasbourg", + "hostname": "france-strasbourg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.180.110", + "191.96.180.194", + "191.96.180.204", + "191.96.180.222" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "hostname": "georgia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.239.206.88" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "germany-darmstadt-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.247.59.250" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "germany-frankfurt-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.92.193", + "193.68.92.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Nuremberg", + "hostname": "germany-nuremberg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.36.109", + "212.30.36.131" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "greece-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.51.134.218", + "185.51.134.226" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "hostname": "guatemala-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.50" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hongkong-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.176.211.87", + "193.176.211.117" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hungary-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.219.236.214", + "91.219.237.148", + "91.219.238.100", + "91.219.239.222" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "iceland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.193.142", + "45.133.193.147", + "45.133.193.152", + "45.133.193.155" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "hostname": "indonesia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "64.64.121.6" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "ireland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "37.120.235.19", + "37.120.235.36", + "77.81.139.115", + "185.192.16.190", + "188.241.178.132", + "188.241.178.140", + "188.241.178.156", + "188.241.178.172" + ] + }, + { + "vpn": "openvpn", + "country": "Isle Of Man", + "city": "Isle Of Man", + "hostname": "isleofman-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.129" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "israel-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "31.168.162.18", + "82.81.85.236", + "185.191.204.147" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Cosenza", + "hostname": "italy-cosenza-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "213.21.226.22", + "213.21.226.42", + "213.21.226.90", + "213.21.226.94", + "213.21.226.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "italy-milan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.20.143" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Kawasaki", + "hostname": "japan-kawasaki-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.48.19", + "194.5.48.47", + "194.5.48.84", + "194.5.48.108", + "194.5.48.130" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "japan-tokyo-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.208.11.10", + "185.208.11.151" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "japan-tokyo-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.8.68.16", + "45.8.68.27" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "hostname": "jersey-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.166" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "hostname": "kazakhstan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.17.39.5" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "hostname": "kenya-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "62.12.114.54" + ] + }, + { + "vpn": "openvpn", + "country": "Kyrgyzstan", + "hostname": "kyrgyzstan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "91.213.233.57" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "hostname": "laos-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "hostname": "latvia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "196.196.52.3" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "hostname": "liechtenstein-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.180" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "lithuania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.206.166.86" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "luxembourg-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.221.132.212", + "185.221.132.220" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "hostname": "macau-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.134" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "malaysia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "5.182.16.237" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "hostname": "malta-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.9" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mexico-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "179.61.245.10" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "moldova-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "178.17.168.130" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "hostname": "monaco-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.210" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "hostname": "mongolia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.61" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "hostname": "montenegro-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.233" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "hostname": "myanmar-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.199" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "hostname": "nepal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.32.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "netherlands-amsterdam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.128.199.193", + "45.128.199.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Rotterdam", + "hostname": "netherlands-rotterdam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.37.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "The Hague", + "hostname": "netherlands-thehague-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.68.95.206", + "193.68.95.212" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "New Zealand", + "hostname": "newzealand-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.133.7.21", + "45.133.7.38" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "city": "North Macedonia", + "hostname": "macedonia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.193" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "norway-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.92.228.159", + "45.92.228.249" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "hostname": "pakistan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.225" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "hostname": "panama-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.55" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "hostname": "peru-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.70" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines Via Singapore", + "city": "Philippines Via Singapore", + "hostname": "ph-via-sing-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "84.17.38.71", + "84.17.38.232", + "84.17.39.103", + "138.199.25.144", + "138.199.25.214" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "poland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "188.212.135.78", + "188.212.135.239" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "portugal-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "94.46.13.79", + "94.46.167.4", + "94.46.167.74", + "94.46.167.214" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "romania-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.195.19.197", + "185.195.19.203" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "hostname": "serbia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "89.38.224.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "CBD", + "hostname": "singapore-cbd-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.82.112" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Jurong", + "hostname": "singapore-jurong-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.233.133.54", + "185.233.133.211" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Marina Bay", + "hostname": "singapore-marinabay-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.156.183", + "45.85.107.86" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "slovakia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "193.37.255.220" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "slovenia-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.133" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "South Africa", + "hostname": "southafrica-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "154.16.95.10", + "154.16.95.27", + "154.16.95.39" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "South Korea", + "hostname": "southkorea2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.92.24.40", + "185.92.24.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "hostname": "spain-barcelona-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.130.136.18", + "45.130.136.39", + "45.130.136.54", + "45.130.136.133", + "45.130.136.153" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "spain-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "212.30.33.143", + "212.30.33.213" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Sri Lanka", + "hostname": "srilanka-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "sweden-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.135.187.121", + "45.135.187.205", + "45.135.187.215" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "switzerland-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.45.2", + "85.203.45.8" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "switzerland-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.132.226.145" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "taiwan-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.52.84" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "thailand-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "194.5.49.72" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "turkey-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.8.24.214" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Docklands", + "hostname": "uk-berkshire-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.208.9.191", + "185.208.9.244" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-east-london-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.84.216.74", + "45.84.216.183" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-london-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "5.157.128.8", + "5.157.128.24" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "usa-atlanta-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.157.75", + "45.80.157.170" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "usa-chicago-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "149.19.196.116", + "149.19.196.239" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "usa-dallas-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "23.230.233.137" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "usa-dallas-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.80.159.87", + "45.80.159.232" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver", + "hostname": "usa-denver-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "185.238.231.95", + "185.238.231.100" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "23.230.125.38" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-3-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.84.212.22", + "45.84.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.57.63", + "45.38.57.134" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "usa-losangeles5-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.81.75.153", + "45.85.89.167" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "usa-miami-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.177.213", + "191.101.177.225" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.140.13" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey-3-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.85.91.41", + "45.85.91.71" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "usa-newjersey2-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.101.174.183", + "191.101.174.209" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "usa-newyork-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "173.239.207.44", + "173.239.207.130", + "173.239.207.161", + "173.239.207.174" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City", + "hostname": "usa-saltlakecity-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.206.244", + "191.96.206.248" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Francisco", + "hostname": "usa-sanfrancisco-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.38.178.25", + "173.239.198.33" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "usa-seattle-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "50.118.162.1" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Tampa", + "hostname": "usa-tampa-1-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "191.96.170.163", + "191.96.170.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Washington DC", + "hostname": "usa-washingtondc-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.39.207.159", + "45.39.207.201", + "45.39.207.250" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "hostname": "ukraine-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.130.81.55", + "45.130.81.63" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "hostname": "uruguay-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.75" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "hostname": "uzbekistan-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.22.80", + "85.203.22.89" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "hostname": "venezuela-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "45.91.49.85" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "vietnam-ca-version-2.expressnetw.com", + "udp": true, + "ips": [ + "85.203.21.39" + ] + } + ] + }, + "fastestvpn": { + "version": 2, + "timestamp": 1722367358, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.60" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.60" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.141.62" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "hostname": "au-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.141.62" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "at-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "hostname": "at-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Wien", + "hostname": "at-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Wien", + "hostname": "at-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.146.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussel", + "hostname": "bel-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussel", + "hostname": "bel-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bel-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "hostname": "bel-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.9.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.192.124.75", + "185.192.124.77", + "185.192.124.104", + "185.192.124.131" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "hostname": "br-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.192.124.75", + "185.192.124.77", + "185.192.124.104", + "185.192.124.131" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.221.130" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "217.138.221.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.181.233.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.123" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.181.233.123" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "hk-dbl.jumptoserver.com", + "udp": true, + "ips": [ + "193.239.86.4" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "hostname": "hk-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.239.86.4" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "clmb.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.136.11" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "hostname": "clmb.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.136.11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.122.154" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.84.122.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dk-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.92.82" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "hostname": "dk-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.92.82" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi-p2p.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi-p2p.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi2.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi2.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.143.129.237" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "fr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.40.99" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "hostname": "fr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.40.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "uk-dbl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.69" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "hostname": "uk-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.69" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "89.163.157.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "89.163.157.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus2.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "213.202.218.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "hostname": "de-dus2.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "213.202.218.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "de-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.139.154" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "hostname": "de-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.139.154" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athina", + "hostname": "grc.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.92.33.82" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athina", + "hostname": "grc.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.92.33.82" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "HK", + "hostname": "hk.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "193.239.86.3" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "HK", + "hostname": "hk.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "193.239.86.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hng.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.165" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "hostname": "hng.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.144.165" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Mumbai", + "hostname": "in-vr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.241.2" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "Mumbai", + "hostname": "in-vr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.84.241.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ir.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "hostname": "ir.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.130.218" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Assago", + "hostname": "it-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.123" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Assago", + "hostname": "it-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "95.174.64.123" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "milan", + "hostname": "it-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.122" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "milan", + "hostname": "it-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "95.174.64.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.110" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lux1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.204.43" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "hostname": "lux1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "5.253.204.43" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "hostname": "my-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "103.75.116.27", + "103.75.116.141", + "103.75.116.180" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "hostname": "my-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "103.75.116.27", + "103.75.116.141", + "103.75.116.180" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx-cf.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "147.78.1.112" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "hostname": "mx-cf.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "147.78.1.112" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.74" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "hostname": "nl-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.75" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "hostname": "nl-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.75" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "nr-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.219.215.34" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "hostname": "nr-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.219.215.34" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Gdansk", + "hostname": "pl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.234" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Gdansk", + "hostname": "pl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.211.234" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.90.57.146" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.90.57.146" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.66.130" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.66.130" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "sg-dvpn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.173.101" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "hostname": "sg-dvpn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.207.173.101" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "city": "Moscow", + "hostname": "ru-vr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.226.58.5" + ] + }, + { + "vpn": "wireguard", + "country": "Russia", + "city": "Moscow", + "hostname": "ru-vr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.226.58.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "jp-dvpn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.138.108" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "hostname": "jp-dvpn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.138.108" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.193.138" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.193.138" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sg-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.173.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "hostname": "sg-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "91.207.173.99" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "svk.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.114.74" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "svk.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.114.74" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "sa-jn.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "129.232.176.170" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "sa-jn.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "129.232.176.170" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "103.249.31.36" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "103.249.31.36" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "hostname": "es-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.71.242" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "hostname": "es-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.71.242" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.16.234" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "146.70.16.234" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.10" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.213.10" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Izmir", + "hostname": "tr.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.123.101.43" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Izmir", + "hostname": "tr.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "185.123.101.43" + ] + }, + { + "vpn": "openvpn", + "country": "UAE", + "city": "Dubai", + "hostname": "uae.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.110" + ] + }, + { + "vpn": "wireguard", + "country": "UAE", + "city": "Dubai", + "hostname": "uae.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "45.9.249.110" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-01.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.67" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "hostname": "uk-01.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.67" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk-02.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.68" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "hostname": "uk-02.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.68" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "hostname": "us-wt1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "23.105.160.221" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "hostname": "us-wt1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "23.105.160.221" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Anchorage", + "hostname": "nl-dbl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.123.76" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Anchorage", + "hostname": "nl-dbl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.123.76" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn", + "hostname": "us-ash.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.56.98" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn", + "hostname": "us-ash.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.56.98" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "us-at.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "167.160.88.250" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta", + "hostname": "us-at.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "167.160.88.250" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "us-ch.jumptoserver.com", + "udp": true, + "ips": [ + "88.216.97.2" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago", + "hostname": "us-ch.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "88.216.97.2" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "us-dl.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.92.50" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas", + "hostname": "us-dl.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.92.50" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver", + "hostname": "us-dv1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.179.82" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver", + "hostname": "us-dv1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "139.28.179.82" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Fargo", + "hostname": "us-ash-stream.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.56.100" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Fargo", + "hostname": "us-ash-stream.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "108.181.56.100" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "us-mia.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.250" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami", + "hostname": "us-mia.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "37.120.157.250" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "us-ny.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "173.208.96.145" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York", + "hostname": "us-ny.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "173.208.96.145" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "us-se.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.176.74" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle", + "hostname": "us-se.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "64.42.176.74" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyyiv", + "hostname": "ur-kv.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "176.103.54.79" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyyiv", + "hostname": "ur-kv.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "176.103.54.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-streaming.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "195.191.219.70" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-streaming.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "195.191.219.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "us-dbl1.jumptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.179.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "hostname": "us-dbl1.jumptoserver.com", + "wgpubkey": "658QxufMbjOTmB61Z7f+c7Rjg7oqWLnepTalqBERjF0=", + "ips": [ + "139.28.179.83" + ] + } + ] + }, + "giganews": { + "version": 1, + "timestamp": 1726044812, + "servers": [ + { + "vpn": "openvpn", + "region": "Algeria", + "hostname": "dz1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.104.253" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "hostname": "ar1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.35" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Melbourne", + "hostname": "au2.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.29" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Perth", + "hostname": "au3.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.27" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Sydney", + "hostname": "au1.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.21" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "hostname": "at1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.148.253" + ] + }, + { + "vpn": "openvpn", + "region": "Bahrain", + "hostname": "bh1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.63.253" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "hostname": "be1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.145.253" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "hostname": "br1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.33" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "hostname": "bg1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.167.253" + ] + }, + { + "vpn": "openvpn", + "region": "Canada", + "hostname": "ca1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.34" + ] + }, + { + "vpn": "openvpn", + "region": "Columbia", + "hostname": "co1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.37" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "hostname": "cr1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.39" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "hostname": "cz1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.164.253" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "hostname": "dk1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.154.253" + ] + }, + { + "vpn": "openvpn", + "region": "Dubai", + "hostname": "ae1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.101.253" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "hostname": "eg1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.10.253" + ] + }, + { + "vpn": "openvpn", + "region": "El Salvador", + "hostname": "sv1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.36" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "hostname": "fi1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.166.253" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "hostname": "fr1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.141.253" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "hostname": "de1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.128.253" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "hostname": "gr1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.11.253" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "hostname": "hk1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.37" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "hostname": "is1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.17.253" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "hostname": "in1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.60.253" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "hostname": "id1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.28" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "hostname": "ie1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.19.253" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "hostname": "il1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.59.253" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "hostname": "it1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.161.253" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "hostname": "jp1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.20.20" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "hostname": "lv1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.174.253" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "hostname": "li1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.177.253" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "hostname": "lt1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.173.253" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "hostname": "lu1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.165.253" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "hostname": "mo1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.31.253" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "hostname": "my1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.29" + ] + }, + { + "vpn": "openvpn", + "region": "Maldives", + "hostname": "mv1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.35" + ] + }, + { + "vpn": "openvpn", + "region": "Marshall Islands", + "hostname": "mh1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.34" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "hostname": "mx1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.24" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "hostname": "eu1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.135.253" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "hostname": "nz1.vpn.giganews.com", + "udp": true, + "ips": [ + "64.253.88.29" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "hostname": "no1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.163.253" + ] + }, + { + "vpn": "openvpn", + "region": "Pakistan", + "hostname": "pk1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.58.253" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "hostname": "pa1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.41" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "hostname": "ph1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.30" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "hostname": "pl1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.170.253" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "hostname": "pt1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.168.253" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "hostname": "qa1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.62.253" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "hostname": "ro1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.171.253" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "hostname": "ru1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.151.253" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "hostname": "sa1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.61.253" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "hostname": "sg1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.31" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "hostname": "sk1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.176.253" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "hostname": "si1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.175.253" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "hostname": "kr1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.20.21" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "hostname": "es1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.157.253" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "hostname": "se1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.159.253" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "hostname": "ch1.vpn.giganews.com", + "udp": true, + "ips": [ + "31.6.41.253" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "hostname": "tw1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.32.253" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "hostname": "th1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.32" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "hostname": "tr1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.169.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Austin", + "hostname": "us3.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.28" + ] + }, + { + "vpn": "openvpn", + "region": "USA Chicago", + "hostname": "us6.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.22" + ] + }, + { + "vpn": "openvpn", + "region": "USA Los Angeles", + "hostname": "us1.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.28.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Miami", + "hostname": "us4.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.16.31" + ] + }, + { + "vpn": "openvpn", + "region": "USA New York", + "hostname": "us5.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.32" + ] + }, + { + "vpn": "openvpn", + "region": "USA San Francisco", + "hostname": "us7.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.29.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Seattle", + "hostname": "us8.vpn.giganews.com", + "udp": true, + "ips": [ + "69.167.30.253" + ] + }, + { + "vpn": "openvpn", + "region": "USA Washington DC", + "hostname": "us2.vpn.giganews.com", + "udp": true, + "ips": [ + "209.160.115.253" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "hostname": "ua1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.172.253" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "hostname": "uk1.vpn.giganews.com", + "udp": true, + "ips": [ + "178.208.168.253" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "hostname": "uy1.vpn.giganews.com", + "udp": true, + "ips": [ + "128.90.34.26" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "hostname": "vn1.vpn.giganews.com", + "udp": true, + "ips": [ + "216.168.18.33" + ] + } + ] + }, + "hidemyass": { + "version": 2, + "timestamp": 1632268040, + "servers": [ + { + "vpn": "openvpn", + "country": "Afghanistan", + "city": "Kabul", + "hostname": "af.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.236", + "5.62.63.232" + ] + }, + { + "vpn": "openvpn", + "country": "Aland Islands", + "city": "Mariehamn", + "hostname": "ax.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.248", + "5.62.63.244" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "al.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.240", + "5.62.63.236" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Annaba", + "hostname": "dz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.244", + "5.62.63.240" + ] + }, + { + "vpn": "openvpn", + "country": "American Samoa", + "city": "Pago Pago", + "hostname": "as.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.4", + "5.62.58.4" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorrala Vella", + "hostname": "ad.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.4", + "5.62.62.4" + ] + }, + { + "vpn": "openvpn", + "country": "Angola", + "city": "Luanda", + "hostname": "ao.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.8", + "5.62.62.8" + ] + }, + { + "vpn": "openvpn", + "country": "Anguilla", + "city": "The Valley", + "hostname": "ai.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.8", + "5.62.58.8" + ] + }, + { + "vpn": "openvpn", + "country": "Antiguaand Barbuda", + "city": "Saint John's", + "hostname": "ag.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.12", + "5.62.58.12" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "ar.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.16", + "5.62.58.16" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Tsaghkadzor", + "hostname": "am.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.12", + "5.62.62.12" + ] + }, + { + "vpn": "openvpn", + "country": "Aruba", + "city": "Palm Beach", + "hostname": "aw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.20", + "5.62.58.20" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.23.3", + "5.62.23.18" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Carinthia", + "city": "Klagenfurt", + "hostname": "at.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.3", + "91.132.139.115", + "94.198.41.94", + "94.198.41.110", + "94.198.41.142", + "185.183.107.163", + "185.210.219.99", + "185.244.212.30", + "185.244.212.35", + "185.244.212.190" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Qusar", + "hostname": "az.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.16", + "5.62.62.16" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Freeport", + "hostname": "bs.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.24", + "5.62.58.24" + ] + }, + { + "vpn": "openvpn", + "country": "Bahrain", + "city": "Manama", + "hostname": "bh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.20", + "5.62.62.20" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka", + "hostname": "bd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.24", + "5.62.62.24" + ] + }, + { + "vpn": "openvpn", + "country": "Barbados", + "city": "Worthing", + "hostname": "bb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.28", + "5.62.58.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "hostname": "by.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.28", + "5.62.62.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "be.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.20.24", + "5.62.20.33", + "5.62.20.34", + "5.62.20.44" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City", + "hostname": "bz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.32", + "5.62.58.32" + ] + }, + { + "vpn": "openvpn", + "country": "Benin", + "city": "Cotonou", + "hostname": "bj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.32", + "5.62.62.32" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "city": "Hamilton", + "hostname": "bm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.36", + "5.62.58.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu", + "hostname": "bt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.36", + "5.62.62.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz", + "hostname": "bo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.40", + "5.62.58.40" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia", + "city": "Sarajevo", + "hostname": "ba.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.40", + "5.62.62.40" + ] + }, + { + "vpn": "openvpn", + "country": "Botswana", + "city": "Gaborone", + "hostname": "bw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.44", + "5.62.62.44" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Joao Pessoa", + "hostname": "br.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "181.215.238.207", + "185.54.230.50", + "185.54.230.130", + "185.54.230.170" + ] + }, + { + "vpn": "openvpn", + "country": "British Virgin Islands", + "city": "Tortola", + "hostname": "vg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.44", + "5.62.58.44" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "city": "Jerudong", + "hostname": "bn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.48", + "5.62.62.48" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.52", + "5.62.62.52" + ] + }, + { + "vpn": "openvpn", + "country": "Burkina Faso", + "city": "Ouagadougou", + "hostname": "bf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.56", + "5.62.62.56" + ] + }, + { + "vpn": "openvpn", + "country": "Burundi", + "city": "Bujumbura", + "hostname": "bi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.60", + "5.62.62.60" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.64", + "5.62.62.64" + ] + }, + { + "vpn": "openvpn", + "country": "Cameroon", + "city": "Yaounde", + "hostname": "cm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.68", + "5.62.62.68" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "51.161.54.15", + "51.161.66.111", + "54.39.219.127", + "158.69.234.207", + "192.99.89.207", + "192.99.110.159", + "198.27.103.191" + ] + }, + { + "vpn": "openvpn", + "country": "Cape Verde", + "city": "Cidade Velha", + "hostname": "cv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.72", + "5.62.62.72" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Spot Bay", + "hostname": "ky.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.48", + "5.62.58.48" + ] + }, + { + "vpn": "openvpn", + "country": "Central African Republic", + "city": "Bangassou", + "hostname": "cf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.76", + "5.62.62.76" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "hostname": "td.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.80", + "5.62.62.80" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "cl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.52", + "5.62.58.52" + ] + }, + { + "vpn": "openvpn", + "country": "China", + "region": "Sichuan Sheng", + "city": "Chengdu", + "hostname": "cn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.133", + "5.62.41.169", + "5.62.41.181", + "84.17.46.134", + "185.246.210.130", + "185.246.210.162", + "212.102.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "Christmas Island", + "city": "Flying Fish Cove", + "hostname": "cx.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.88", + "5.62.62.84" + ] + }, + { + "vpn": "openvpn", + "country": "Cocos Islands", + "city": "West Island", + "hostname": "cc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.92", + "5.62.62.88" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "San Andres", + "hostname": "co.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.60", + "5.62.58.56" + ] + }, + { + "vpn": "openvpn", + "country": "Comoros", + "city": "Ouani", + "hostname": "km.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.96", + "5.62.62.92" + ] + }, + { + "vpn": "openvpn", + "country": "Congo", + "city": "Kinshasa", + "hostname": "cd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.100", + "5.62.62.96" + ] + }, + { + "vpn": "openvpn", + "country": "Cook Islands", + "city": "Avarua", + "hostname": "ck.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.64", + "5.62.58.60" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "cr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.68", + "5.62.58.64" + ] + }, + { + "vpn": "openvpn", + "country": "Coted`Ivoire", + "city": "Yamoussoukro", + "hostname": "ci.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.104", + "5.62.62.100" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "hr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.228", + "5.62.63.224" + ] + }, + { + "vpn": "openvpn", + "country": "Cuba", + "city": "Havana", + "hostname": "cu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.72", + "5.62.58.68" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Limassol", + "hostname": "cy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.108", + "5.62.62.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.246.210.130", + "185.246.210.146", + "185.246.210.162", + "212.102.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "dk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.195", + "37.120.232.78", + "37.120.232.110", + "37.120.232.126", + "37.120.232.142", + "95.174.65.142", + "95.174.65.158", + "185.212.169.174", + "185.212.169.190", + "185.212.169.206" + ] + }, + { + "vpn": "openvpn", + "country": "Dominica", + "city": "Marigot", + "hostname": "dm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.76", + "5.62.58.72" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Punta Cana", + "hostname": "do.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.80", + "5.62.58.76" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito", + "hostname": "ec.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.84", + "5.62.58.80" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "hostname": "eg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.112", + "5.62.62.108" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "city": "San Miguel", + "hostname": "sv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.88", + "5.62.58.84" + ] + }, + { + "vpn": "openvpn", + "country": "Equatorial Guinea", + "city": "Malabo", + "hostname": "gq.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.116", + "5.62.62.112" + ] + }, + { + "vpn": "openvpn", + "country": "Eritrea", + "city": "Asmara", + "hostname": "er.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.120", + "5.62.62.116" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "ee.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.124", + "5.62.62.120" + ] + }, + { + "vpn": "openvpn", + "country": "Ethiopia", + "city": "Gondar", + "hostname": "et.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.128", + "5.62.62.124" + ] + }, + { + "vpn": "openvpn", + "country": "Falkland Islands", + "city": "Stanley", + "hostname": "fk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.92", + "5.62.58.88" + ] + }, + { + "vpn": "openvpn", + "country": "Faroe Islands", + "city": "Torshavn", + "hostname": "fo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.132", + "5.62.62.128" + ] + }, + { + "vpn": "openvpn", + "country": "Fiji", + "city": "Nadi", + "hostname": "fj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.96", + "5.62.58.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "fi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.77.217.16", + "185.77.217.31", + "185.77.217.61", + "185.77.217.76", + "185.77.217.91", + "185.77.217.106" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "fr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.90", + "84.17.43.103", + "84.17.43.116", + "185.93.2.114", + "212.83.174.92", + "212.83.190.239" + ] + }, + { + "vpn": "openvpn", + "country": "Gabon", + "city": "Libreville", + "hostname": "ga.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.136", + "5.62.62.132" + ] + }, + { + "vpn": "openvpn", + "country": "Gambia", + "city": "Serekunda", + "hostname": "gm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.140", + "5.62.62.136" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi", + "hostname": "ge.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.144", + "5.62.62.140" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt", + "hostname": "de.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "5.62.41.181" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "city": "Accra", + "hostname": "gh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.148", + "5.62.62.144" + ] + }, + { + "vpn": "openvpn", + "country": "Gibraltar", + "city": "Catalan", + "hostname": "gi.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.152", + "5.62.62.148" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Patras", + "hostname": "gr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.156", + "5.62.62.152" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "city": "Ilulissat", + "hostname": "gl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.160", + "5.62.62.156" + ] + }, + { + "vpn": "openvpn", + "country": "Grenada", + "city": "Saint George", + "hostname": "gd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.100", + "5.62.58.96" + ] + }, + { + "vpn": "openvpn", + "country": "Guadeloupe", + "city": "Le Gosier", + "hostname": "gp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.104", + "5.62.58.100" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "city": "Tamuning", + "hostname": "gu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.108", + "5.62.60.164" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City", + "hostname": "gt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.112", + "5.62.58.104" + ] + }, + { + "vpn": "openvpn", + "country": "Guinea", + "city": "Conakry", + "hostname": "gn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.172", + "5.62.62.164" + ] + }, + { + "vpn": "openvpn", + "country": "Guinea-Bissau", + "city": "Bissau", + "hostname": "gw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.168", + "5.62.62.160" + ] + }, + { + "vpn": "openvpn", + "country": "Guyana", + "city": "Barima-Waini", + "hostname": "gy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.116", + "5.62.58.108" + ] + }, + { + "vpn": "openvpn", + "country": "Haiti", + "city": "Cap-Haitien", + "hostname": "ht.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.120", + "5.62.58.112" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa", + "hostname": "hn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.124", + "5.62.58.116" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.78", + "185.189.114.62", + "185.252.223.62" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "is.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "82.221.112.243", + "82.221.112.244" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Maharashtra", + "city": "Mumbai", + "hostname": "in.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.133", + "5.62.41.145", + "84.17.46.158", + "84.17.46.206", + "84.17.46.251", + "185.246.210.178", + "212.102.38.173" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "hostname": "id.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.133", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "84.17.46.134", + "84.17.46.158", + "84.17.46.182", + "84.17.46.251", + "185.246.210.130", + "185.246.210.146", + "185.246.210.178", + "185.246.210.194" + ] + }, + { + "vpn": "openvpn", + "country": "Iran", + "city": "Isfahan", + "hostname": "ir.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.176", + "5.62.62.168" + ] + }, + { + "vpn": "openvpn", + "country": "Iraq", + "city": "Baghdad", + "hostname": "iq.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.180", + "5.62.62.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "78.153.199.5", + "78.153.199.29", + "78.153.199.243", + "81.17.242.165", + "146.70.48.78", + "146.70.48.94" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Petah Tikva", + "hostname": "il.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.185.132.62", + "185.185.132.110", + "185.185.133.78", + "185.185.133.190" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Pordenone", + "city": "Porcia", + "hostname": "it.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "45.87.184.15", + "45.87.184.31", + "45.87.184.79", + "45.87.184.95", + "84.17.58.168", + "84.17.58.213", + "84.17.59.45", + "84.17.59.59" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Montego Bay", + "hostname": "jm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.128", + "5.62.58.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "jp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.162", + "156.146.35.184", + "156.146.35.185", + "212.102.51.235" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman", + "hostname": "jo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.188", + "5.62.62.180" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Shymkent", + "hostname": "kz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.192", + "5.62.62.184" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi", + "hostname": "ke.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.196", + "5.62.62.188" + ] + }, + { + "vpn": "openvpn", + "country": "Kiribati", + "city": "Umwa Village", + "hostname": "ki.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.132", + "5.62.58.124" + ] + }, + { + "vpn": "openvpn", + "country": "Kuwait", + "city": "Kuwait City", + "hostname": "kw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.200", + "5.62.62.192" + ] + }, + { + "vpn": "openvpn", + "country": "Kyrgyzstan", + "city": "Bishkek", + "hostname": "kg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.204", + "5.62.62.196" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "city": "Thakhek", + "hostname": "la.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.208", + "5.62.62.200" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "lv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.212", + "5.62.62.204" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut", + "hostname": "lb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.216", + "5.62.62.208" + ] + }, + { + "vpn": "openvpn", + "country": "Lesotho", + "city": "Peka", + "hostname": "ls.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.220", + "5.62.62.212" + ] + }, + { + "vpn": "openvpn", + "country": "Liberia", + "city": "Monrovia", + "hostname": "lr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.224", + "5.62.62.216" + ] + }, + { + "vpn": "openvpn", + "country": "Libya", + "city": "Ghadames", + "hostname": "ly.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.228", + "5.62.62.220" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz", + "hostname": "li.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.232", + "5.62.62.224" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "hostname": "lt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.236", + "5.62.62.228" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.38.162.123", + "92.38.162.148", + "92.38.162.151", + "92.38.172.25" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "city": "Macau", + "hostname": "mo.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.240", + "5.62.62.232" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje", + "hostname": "mk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.244", + "5.62.62.236" + ] + }, + { + "vpn": "openvpn", + "country": "Madagascar", + "city": "Antsiranana", + "hostname": "mg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.248", + "5.62.62.240" + ] + }, + { + "vpn": "openvpn", + "country": "Malawi", + "city": "Lilongwe", + "hostname": "mw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.60.252", + "5.62.62.244" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.157", + "84.17.46.134", + "84.17.46.206", + "84.17.46.251", + "185.246.210.178" + ] + }, + { + "vpn": "openvpn", + "country": "Maldives", + "city": "Male", + "hostname": "mv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.0", + "5.62.62.248" + ] + }, + { + "vpn": "openvpn", + "country": "Mali", + "city": "Bamako", + "hostname": "ml.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.4", + "5.62.62.252" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "city": "Cospicua", + "hostname": "mt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.8", + "5.62.63.0" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritius", + "city": "Port Louis", + "hostname": "mu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.16", + "5.62.63.8" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Sinaloa", + "city": "Mazatlan", + "hostname": "mx.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "31.14.72.16", + "31.14.72.23", + "31.14.72.30", + "31.14.72.44", + "31.14.72.51" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "md.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.20", + "5.62.63.12" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco", + "hostname": "mc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.24", + "5.62.63.16" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Suhbaatar", + "hostname": "mn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.28", + "5.62.63.20" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Becici", + "hostname": "me.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.32", + "5.62.63.24" + ] + }, + { + "vpn": "openvpn", + "country": "Montserrat", + "city": "Plymouth", + "hostname": "ms.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.136", + "5.62.58.128" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Fes", + "hostname": "ma.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.36", + "5.62.63.28" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Pemba", + "hostname": "mz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.40", + "5.62.63.32" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon", + "hostname": "mm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.44", + "5.62.63.36" + ] + }, + { + "vpn": "openvpn", + "country": "Namibia", + "city": "Windhoek", + "hostname": "na.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.48", + "5.62.63.40" + ] + }, + { + "vpn": "openvpn", + "country": "Nauru", + "city": "Anabar", + "hostname": "nr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.140", + "5.62.58.132" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Janakpur", + "hostname": "np.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.52", + "5.62.63.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "nl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.46.134", + "84.17.46.158", + "84.17.46.182", + "84.17.46.206" + ] + }, + { + "vpn": "openvpn", + "country": "New Caledonia", + "city": "Noumea", + "hostname": "nc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.144", + "5.62.58.136" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "nz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "103.76.164.3", + "103.76.164.19", + "103.108.94.243", + "103.231.91.131" + ] + }, + { + "vpn": "openvpn", + "country": "Nicaragua", + "city": "Managua", + "hostname": "ni.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.148", + "5.62.58.140" + ] + }, + { + "vpn": "openvpn", + "country": "Niger", + "city": "Niamey", + "hostname": "ne.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.56", + "5.62.63.48" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "city": "Lagos", + "hostname": "ng.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.60", + "5.62.63.52" + ] + }, + { + "vpn": "openvpn", + "country": "Niue", + "city": "Alofi", + "hostname": "nu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.152", + "5.62.58.144" + ] + }, + { + "vpn": "openvpn", + "country": "Norfolk Island", + "city": "Kingston", + "hostname": "nf.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.156", + "5.62.58.148" + ] + }, + { + "vpn": "openvpn", + "country": "North Korea", + "city": "Manpo", + "hostname": "kp.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.160", + "5.62.61.64" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "no.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.101.32.48", + "217.170.201.254", + "217.170.203.128", + "217.170.204.160", + "217.170.204.223", + "217.170.206.31" + ] + }, + { + "vpn": "openvpn", + "country": "Oman", + "city": "Salalah", + "hostname": "om.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.68", + "5.62.63.56" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Karachi", + "hostname": "pk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.72", + "5.62.63.60" + ] + }, + { + "vpn": "openvpn", + "country": "Palau", + "city": "Melekeok", + "hostname": "pw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.164", + "5.62.61.76" + ] + }, + { + "vpn": "openvpn", + "country": "Palestine", + "city": "Bethlehem", + "hostname": "ps.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.80", + "5.62.63.64" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City", + "hostname": "pa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.168", + "5.62.58.152" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "city": "Alotau", + "hostname": "pg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.172", + "5.62.61.84" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Boqueron", + "hostname": "py.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.176", + "5.62.58.156" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Cusco", + "hostname": "pe.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.180", + "5.62.58.160" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Baguio", + "hostname": "ph.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.184", + "5.62.61.88" + ] + }, + { + "vpn": "openvpn", + "country": "Pitcairn Islands", + "city": "Adamstown", + "hostname": "pn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.188", + "5.62.58.164" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "pl.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.55.26", + "185.246.208.34", + "185.246.208.130", + "185.246.208.157" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Leiria", + "hostname": "pt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.113", + "91.250.240.193", + "194.39.126.135" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "city": "San Juan", + "hostname": "pr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.192", + "5.62.58.168" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "hostname": "qa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.92", + "5.62.63.68" + ] + }, + { + "vpn": "openvpn", + "country": "Republicof Djibouti", + "city": "Djibouti", + "hostname": "dj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.96", + "5.62.63.72" + ] + }, + { + "vpn": "openvpn", + "country": "Republicof Singapore", + "city": "Singapore", + "hostname": "sg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.223.85.20", + "92.223.85.75", + "92.223.85.77", + "92.223.85.106", + "92.223.85.113", + "92.223.86.8", + "92.223.86.46" + ] + }, + { + "vpn": "openvpn", + "country": "Republicofthe Congo", + "city": "Brazzaville", + "hostname": "cg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.100", + "5.62.63.76" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "ro.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.104", + "5.62.63.80" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "city": "Moscow", + "hostname": "ru.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.19.47", + "5.62.19.55", + "5.62.19.63" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "hostname": "rw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.108", + "5.62.63.84" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Helena", + "city": "Tristan Da Cunha", + "hostname": "sh.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.112", + "5.62.63.88" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Kittsand Nevis", + "city": "Basseterre", + "hostname": "kn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.196", + "5.62.58.172" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Lucia", + "city": "Gros Islet", + "hostname": "lc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.200", + "5.62.58.176" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Pierreand Miquelon", + "city": "Saint-Pierre", + "hostname": "pm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.58.180", + "5.62.63.92" + ] + }, + { + "vpn": "openvpn", + "country": "Saint Vincentandthe Grenadines", + "city": "Kingstown", + "hostname": "vc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.204", + "5.62.58.184" + ] + }, + { + "vpn": "openvpn", + "country": "Samoa", + "city": "Matatufu", + "hostname": "ws.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.208", + "5.62.58.188" + ] + }, + { + "vpn": "openvpn", + "country": "San Marino", + "city": "San Marino", + "hostname": "sm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.116", + "5.62.63.96" + ] + }, + { + "vpn": "openvpn", + "country": "Sao Tomeand Principe", + "city": "Sao Tome", + "hostname": "st.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.120", + "5.62.63.100" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "city": "Riyadh", + "hostname": "sa.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.124", + "5.62.63.104" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "hostname": "sn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.128", + "5.62.63.108" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.132", + "5.62.63.112" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.140", + "5.62.63.120" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Vrhnika", + "hostname": "si.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.144", + "5.62.63.124" + ] + }, + { + "vpn": "openvpn", + "country": "Solomon Islands", + "city": "Honiara", + "hostname": "sb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.212", + "5.62.58.192" + ] + }, + { + "vpn": "openvpn", + "country": "Somalia", + "city": "Afgooye", + "hostname": "so.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.148", + "5.62.63.128" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "za.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "102.165.47.160", + "102.165.47.176", + "154.70.155.144" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "city": "Seoul", + "hostname": "kr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "185.54.229.41", + "185.54.229.57", + "185.54.229.73" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Alicante", + "hostname": "es.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "82.102.17.126", + "89.38.226.238", + "217.138.218.126" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Moratuwa", + "hostname": "lk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.152", + "5.62.63.132" + ] + }, + { + "vpn": "openvpn", + "country": "Sudan", + "city": "Khartoum", + "hostname": "sd.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.156", + "5.62.63.136" + ] + }, + { + "vpn": "openvpn", + "country": "Suriname", + "city": "Paramaribo", + "hostname": "sr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.216", + "5.62.58.196" + ] + }, + { + "vpn": "openvpn", + "country": "Svalbardand Jan Mayen", + "city": "Longyearbyen", + "hostname": "sj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.160", + "5.62.63.140" + ] + }, + { + "vpn": "openvpn", + "country": "Swaziland", + "city": "Manzini", + "hostname": "sz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.220", + "5.62.58.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Nacka", + "hostname": "se.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "31.3.152.118", + "31.3.152.170", + "31.3.153.140", + "37.46.121.240", + "128.127.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "ch.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "84.17.52.141", + "84.17.52.154", + "84.17.52.167", + "84.17.52.180", + "84.17.52.240", + "89.187.165.179" + ] + }, + { + "vpn": "openvpn", + "country": "Syria", + "city": "Ad Darah", + "hostname": "sy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.164", + "5.62.63.144" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.41.121", + "5.62.41.133", + "5.62.41.145", + "5.62.41.157", + "5.62.41.169", + "5.62.41.181", + "84.17.46.182", + "185.246.210.130", + "185.246.210.146", + "185.246.210.178", + "185.246.210.194" + ] + }, + { + "vpn": "openvpn", + "country": "Tajikistan", + "city": "Dushanbe", + "hostname": "tj.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.168", + "5.62.63.148" + ] + }, + { + "vpn": "openvpn", + "country": "Tanzania", + "city": "Arusha", + "hostname": "tz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.172", + "5.62.63.152" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "th.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.176", + "5.62.63.156" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lome", + "hostname": "tg.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.180", + "5.62.63.160" + ] + }, + { + "vpn": "openvpn", + "country": "Tokelau", + "city": "Atafu", + "hostname": "tk.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.224", + "5.62.58.204" + ] + }, + { + "vpn": "openvpn", + "country": "Tonga", + "city": "Nukualofa", + "hostname": "to.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.228", + "5.62.58.208" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidadand Tobago", + "city": "San Fernando", + "hostname": "tt.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.232", + "5.62.58.212" + ] + }, + { + "vpn": "openvpn", + "country": "Tunisia", + "city": "Mahdia", + "hostname": "tn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.184", + "5.62.63.164" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "tr.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "92.38.180.63", + "92.38.180.76", + "92.38.180.86" + ] + }, + { + "vpn": "openvpn", + "country": "Turkmenistan", + "city": "Ashgabat", + "hostname": "tm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.188", + "5.62.63.168" + ] + }, + { + "vpn": "openvpn", + "country": "Turksand Caicos Islands", + "city": "Balfour Town", + "hostname": "tc.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.236", + "5.62.58.216" + ] + }, + { + "vpn": "openvpn", + "country": "Tuvalu", + "city": "Vaitupu", + "hostname": "tv.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.240", + "5.62.58.220" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "hostname": "gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "62.128.207.110", + "62.128.217.85", + "62.128.217.112", + "80.75.64.66", + "87.117.225.146", + "87.117.225.160", + "87.117.225.174", + "109.169.34.42", + "109.169.34.62" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "london.gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.43.202", + "5.62.43.218", + "5.62.43.229", + "77.234.43.130", + "77.234.43.166", + "77.234.43.175", + "77.234.43.185" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "region": "Scotland", + "city": "Glasgow", + "hostname": "scotland.gb.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "62.128.207.110", + "62.128.217.85", + "62.128.217.112", + "87.117.225.146", + "87.117.225.160", + "109.169.34.23", + "109.169.34.62" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "hostname": "us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.84", + "5.62.59.64" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Alabama", + "city": "Montgomery", + "hostname": "al.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "95.142.127.16", + "95.142.127.25" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Alaska", + "city": "Anchorage", + "hostname": "ak.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.252", + "5.62.58.232" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Arizona", + "city": "Phoenix", + "hostname": "az.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "23.83.130.34", + "23.83.131.211", + "23.83.131.215", + "23.83.132.155", + "23.83.132.176", + "23.83.185.20" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Arkansas", + "city": "Magnolia", + "hostname": "ar.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.0", + "5.62.58.236" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "California", + "city": "Los Angeles", + "hostname": "ca.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "67.201.33.54", + "107.181.178.97", + "143.244.51.66", + "162.253.68.177", + "162.253.68.209", + "162.253.68.241", + "192.252.220.49" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Connecticut", + "city": "Trumbull", + "hostname": "ct.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.16.16", + "5.62.16.25" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Delaware", + "city": "Wilmington", + "hostname": "de.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.4", + "5.62.58.240" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Florida", + "city": "Miami", + "hostname": "fl.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "171.22.76.15", + "171.22.76.47", + "171.22.76.63", + "171.22.76.79", + "171.22.76.95" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Georgia", + "city": "Atlanta", + "hostname": "ga.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.24.15", + "5.62.24.31", + "5.62.24.46", + "5.62.24.61", + "66.115.181.161", + "66.115.181.209", + "66.115.181.225" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Hawaii", + "city": "Honolulu", + "hostname": "hi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "131.100.2.51", + "131.100.2.99", + "131.100.2.121", + "131.100.2.222" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Idaho", + "city": "Idaho Falls", + "hostname": "id.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.12", + "5.62.58.248" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Illinois", + "city": "Chicago", + "hostname": "il.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "154.16.241.255", + "181.214.58.176", + "181.214.61.48", + "181.214.61.64", + "181.214.99.159", + "181.214.102.159", + "181.214.107.31", + "181.214.107.47", + "181.214.107.63", + "181.215.127.240", + "191.101.170.30" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Indiana", + "city": "South Bend", + "hostname": "in.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "198.134.108.67", + "198.134.109.131" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Iowa", + "city": "Des Moines", + "hostname": "ia.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.104", + "5.62.59.84" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Kansas", + "city": "Wichita", + "hostname": "ks.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.16", + "5.62.58.252" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Kentucky", + "city": "Louisville", + "hostname": "ky.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.20", + "5.62.59.0" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Louisiana", + "city": "New Orleans", + "hostname": "la.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.24", + "5.62.59.4" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Maine", + "city": "Bath", + "hostname": "me.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.28", + "5.62.59.8" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Maryland", + "city": "Baltimore", + "hostname": "md.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.32", + "5.62.59.12" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Massachusetts", + "city": "Boston", + "hostname": "ma.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "38.146.55.35", + "38.146.55.115", + "38.146.57.205", + "38.146.57.253", + "38.242.7.243", + "154.3.129.61", + "154.3.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Michigan", + "city": "Lansing", + "hostname": "mi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.36", + "5.62.59.16" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Minnesota", + "city": "Saint Paul", + "hostname": "mn.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.108", + "5.62.59.88" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Mississippi", + "city": "Louisville", + "hostname": "ms.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.40", + "5.62.59.20" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Missouri", + "city": "Kansas City", + "hostname": "mo.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "209.239.115.164", + "209.239.115.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Montana", + "city": "Billings", + "hostname": "mt.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.116", + "5.62.59.92" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Nebraska", + "city": "Omaha", + "hostname": "ne.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.44", + "5.62.59.24" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Nevada", + "city": "Las Vegas", + "hostname": "nv.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "76.164.200.114", + "76.164.202.190", + "76.164.205.194", + "76.164.224.211", + "76.164.225.75" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "New Hampshire", + "city": "Bedford", + "hostname": "nh.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.48", + "5.62.59.28" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "New York", + "city": "Manhattan", + "hostname": "ny.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.103", + "156.146.36.116", + "212.102.33.50", + "212.102.33.77", + "212.102.33.90", + "212.102.33.176", + "212.102.33.192", + "212.102.33.208", + "212.102.33.224", + "212.102.33.251" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "North Carolina", + "city": "Asheville", + "hostname": "nc.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "104.247.208.78", + "104.247.208.94", + "104.247.208.110", + "104.247.208.126", + "104.247.208.142", + "104.247.208.158", + "104.247.208.174" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "North Dakota", + "city": "Grand Forks", + "hostname": "nd.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.60", + "5.62.59.40" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Ohio", + "city": "Columbus", + "hostname": "oh.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "199.114.218.99", + "199.114.218.115" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Oklahoma", + "city": "Oklahoma City", + "hostname": "ok.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "216.107.129.115", + "216.107.129.131" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Pennsylvania", + "city": "Wilkes-Barre", + "hostname": "pa.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.64", + "5.62.59.44" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Rhode Island", + "city": "Providence", + "hostname": "ri.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.68", + "5.62.59.48" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "South Carolina", + "city": "Columbia", + "hostname": "sc.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.72", + "5.62.59.52" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "South Dakota", + "city": "Sioux Falls", + "hostname": "sd.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.76", + "5.62.59.56" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Tennessee", + "city": "Nashville", + "hostname": "tn.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.80", + "5.62.59.60" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Texas", + "city": "Dallas", + "hostname": "tx.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "89.187.164.144", + "89.187.164.176", + "156.146.38.154", + "212.102.40.13", + "212.102.40.141", + "212.102.40.154" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Utah", + "city": "Salt Lake City", + "hostname": "ut.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "69.36.169.129", + "199.189.106.235", + "199.189.106.239", + "199.189.106.245", + "199.189.106.251", + "209.95.34.73", + "209.95.56.199" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Vermont", + "city": "Rutland", + "hostname": "vt.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.84", + "5.62.59.64" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Virginia", + "city": "Ashburn", + "hostname": "va.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "198.98.183.37", + "198.98.183.133", + "198.98.183.152" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Washington", + "city": "Seattle", + "hostname": "wa.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "66.115.149.65", + "66.115.149.81", + "66.115.149.97", + "172.98.86.150", + "199.187.211.46", + "199.187.211.92", + "199.187.211.142", + "199.187.211.157", + "199.187.211.232", + "199.187.211.247", + "199.229.250.241" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "West Virginia", + "city": "Philippi", + "hostname": "wv.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.88", + "5.62.59.68" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Wisconsin", + "city": "Madison", + "hostname": "wi.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "204.15.110.131", + "204.15.110.163" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "region": "Wyoming", + "city": "Cheyenne", + "hostname": "wy.us.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.92", + "5.62.59.72" + ] + }, + { + "vpn": "openvpn", + "country": "Uganda", + "city": "Kampala", + "hostname": "ug.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.192", + "5.62.63.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Odessa", + "hostname": "ua.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "143.244.45.141", + "143.244.45.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.200", + "5.62.63.188" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "city": "Montevideo", + "hostname": "uy.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.56.244", + "5.62.58.224" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "city": "Samarkand", + "hostname": "uz.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.204", + "5.62.63.192" + ] + }, + { + "vpn": "openvpn", + "country": "Vanuatu", + "city": "Loltong", + "hostname": "vu.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.96", + "5.62.59.76" + ] + }, + { + "vpn": "openvpn", + "country": "Vatican", + "city": "Vatican City", + "hostname": "va.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.208", + "5.62.63.196" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas", + "hostname": "ve.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.57.100", + "5.62.59.80" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City", + "hostname": "vn.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.212", + "5.62.63.200" + ] + }, + { + "vpn": "openvpn", + "country": "Yemen", + "city": "Sanaa", + "hostname": "ye.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.216", + "5.62.63.204" + ] + }, + { + "vpn": "openvpn", + "country": "Zambia", + "city": "Lusaka", + "hostname": "zm.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.220", + "5.62.63.208" + ] + }, + { + "vpn": "openvpn", + "country": "Zimbabwe", + "city": "Harare", + "hostname": "zw.hma.rocks", + "tcp": true, + "udp": true, + "ips": [ + "5.62.61.224", + "5.62.63.212" + ] + } + ] + }, + "ipvanish": { + "version": 2, + "timestamp": 1731010544, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c01.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.48" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c02.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.3" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c03.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.5" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c04.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.7" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c05.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.9" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c06.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.50" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "hostname": "tia-c07.ipvanish.com", + "udp": true, + "ips": [ + "80.246.28.52" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.130" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.136" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers Virtual", + "hostname": "alg-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.142" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorra La Vella Virtual", + "hostname": "adv-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.194" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "city": "Andorra La Vella Virtual", + "hostname": "adv-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.200" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.10" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.16" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.22" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.28" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "hostname": "eze-c05.ipvanish.com", + "udp": true, + "ips": [ + "199.33.69.35" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Yerevan Virtual", + "hostname": "evn-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "city": "Yerevan Virtual", + "hostname": "evn-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.168" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c01.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c02.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.7" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c03.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c04.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c05.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "hostname": "adl-c06.ipvanish.com", + "udp": true, + "ips": [ + "116.90.73.23" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.68" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.70" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.72" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "hostname": "bne-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.137.12.85" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.141" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.39" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.45" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.57" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.63" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.69" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.87" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "mel-b16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.254.93" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.36" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.38" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.48" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "hostname": "per-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.107.197.53" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b01.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.4" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b02.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b03.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.16" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b04.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.22" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b05.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.28" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b06.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.34" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b07.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b08.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.46" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b09.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.52" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b10.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.58" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b11.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.64" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b12.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.70" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.76" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.82" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.88" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.94" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.112" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b20.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.118" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b21.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.124" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b22.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.130" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b23.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.136" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-b24.ipvanish.com", + "udp": true, + "ips": [ + "173.245.209.142" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.205.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.201" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c09.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.207" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c10.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.213" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c11.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "syd-c12.ipvanish.com", + "udp": true, + "ips": [ + "146.70.78.225" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.8" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.14" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.20" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.26" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.136" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.142" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.148" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.154" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.160" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.166" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "hostname": "vie-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.110.35" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku Virtual", + "hostname": "gyd-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.130" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku Virtual", + "hostname": "gyd-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.136" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.200" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.206" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "city": "Nassau Virtual", + "hostname": "nas-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.212" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka Virtual", + "hostname": "dac-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.65" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka Virtual", + "hostname": "dac-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.71" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.44" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.2" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.14" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.20" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.32" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.38" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.130" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.136" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.148" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.154" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.160" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.166" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.172" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.178" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "bru-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.105.184" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.130" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.136" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "city": "Belize City Virtual", + "hostname": "bze-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.148" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu Virtual", + "hostname": "pbh-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "city": "Thimphu Virtual", + "hostname": "pbh-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.200" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz Virtual", + "hostname": "vvi-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.214.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "city": "Santa Cruz Virtual", + "hostname": "vvi-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.214.9" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Sarajevo Virtual", + "hostname": "sjj-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.194" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia And Herzegovina", + "city": "Sarajevo Virtual", + "hostname": "sjj-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.200" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c01.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.2" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c02.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.8" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c03.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.14" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.20" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.26" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.32" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.38" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.130" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.136" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.142" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c11.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.148" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c12.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.154" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "hostname": "gru-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.211.160" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "city": "Bandar Seri Begawan Virtual", + "hostname": "bwn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.65" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "city": "Bandar Seri Begawan Virtual", + "hostname": "bwn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.71" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c01.ipvanish.com", + "udp": true, + "ips": [ + "217.138.202.35" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c04.ipvanish.com", + "udp": true, + "ips": [ + "217.138.202.37" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c05.ipvanish.com", + "udp": true, + "ips": [ + "82.102.23.69" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c06.ipvanish.com", + "udp": true, + "ips": [ + "82.102.23.71" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c23.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.2" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c24.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.8" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c25.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.14" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c26.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.20" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c27.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.26" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c28.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.32" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c29.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.38" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c30.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.44" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c31.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.50" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c32.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.56" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c33.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.62" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "sof-c34.ipvanish.com", + "udp": true, + "ips": [ + "176.67.84.68" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh Virtual", + "hostname": "pnh-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.129" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh Virtual", + "hostname": "pnh-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.135" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c01.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c02.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c03.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.14" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c04.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c05.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c06.ipvanish.com", + "udp": true, + "ips": [ + "38.153.100.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.148" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.154" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.160" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c13.ipvanish.com", + "udp": true, + "ips": [ + "209.127.16.166" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c14.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.66" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c15.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c16.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c17.ipvanish.com", + "udp": true, + "ips": [ + "38.153.115.84" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c18.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c19.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c20.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c21.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c22.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c23.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.24" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c24.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c25.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c26.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c27.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.40" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c28.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "yul-c29.ipvanish.com", + "udp": true, + "ips": [ + "209.127.24.48" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b01.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.35" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b02.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.41" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b03.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b04.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b05.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b06.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b07.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.71" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b08.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b09.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b10.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b11.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.95" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b12.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.101" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b13.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b14.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.113" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b15.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.170" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b16.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.176" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b17.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b18.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b19.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "tor-b20.ipvanish.com", + "udp": true, + "ips": [ + "104.36.180.200" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c05.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c06.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.68" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.14" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.20" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c13.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c14.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.38" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c15.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c16.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c17.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.56" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c18.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.80" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c19.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.86" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c20.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "yvr-c21.ipvanish.com", + "udp": true, + "ips": [ + "209.234.253.98" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.2" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.8" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.14" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "city": "Georgetown Virtual", + "hostname": "gcm-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.107.20" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.5" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.11" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.17" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.23" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c05.ipvanish.com", + "udp": true, + "ips": [ + "199.33.70.29" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c06.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c07.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.7" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c08.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.13" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c09.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.19" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "scl-c10.ipvanish.com", + "udp": true, + "ips": [ + "205.185.209.25" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.2" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.8" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.14" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.20" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.26" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "bog-c11.ipvanish.com", + "udp": true, + "ips": [ + "173.255.173.32" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c01.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.39" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c02.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.45" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c03.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.51" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c04.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.57" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c06.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.38" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c07.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.8" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c08.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.14" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c09.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.20" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c10.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.26" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "hostname": "sjo-c11.ipvanish.com", + "udp": true, + "ips": [ + "199.33.68.32" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.2" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.8" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.14" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.20" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.26" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.32" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.38" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "zag-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.147.215.44" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Larnaca Virtual", + "hostname": "lca-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.130" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Larnaca Virtual", + "hostname": "lca-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.136" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.39" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.45" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.57" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.63" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.130" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.136" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.142" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.148" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.154" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.160" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.9" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.15" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.21" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "prg-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.109.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c21.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.2" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c22.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.8" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c23.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.14" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c24.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.20" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c25.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.26" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c26.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.32" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c27.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.38" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c31.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.130" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c32.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.136" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c33.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.142" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c34.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.148" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c35.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c36.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.160" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "cph-c37.ipvanish.com", + "udp": true, + "ips": [ + "69.16.147.166" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.130" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.136" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "city": "Santo Domingo Virtual", + "hostname": "sdq-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.199" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.205" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.211" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito Virtual", + "hostname": "uio-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.217" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.131" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.135" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c09.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.139" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c10.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.143" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "hostname": "tll-c11.ipvanish.com", + "udp": true, + "ips": [ + "185.174.159.147" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.3" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.5" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.7" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.9" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.11" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c13.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.13" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c14.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.15" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c15.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.59" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c16.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.67" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c17.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.73" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c18.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.80" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c19.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.86" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c20.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "hostname": "hel-c21.ipvanish.com", + "udp": true, + "ips": [ + "185.108.107.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.196" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.198" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.200" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.221" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.223" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c08.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.225" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Bordeaux", + "hostname": "bod-c09.ipvanish.com", + "udp": true, + "ips": [ + "185.108.106.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.8" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "hostname": "mrs-c08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.82.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.8" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.26" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c07.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c08.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.201" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c09.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.207" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c10.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.213" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c11.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "hostname": "par-c12.ipvanish.com", + "udp": true, + "ips": [ + "45.83.90.225" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi Virtual", + "hostname": "tbs-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.194" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi Virtual", + "hostname": "tbs-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.54" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.78" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.84" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.102" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.132" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.138" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.150" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.156" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.162" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.168" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.186" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.192" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.198" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-a36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.114.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.20" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.44" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.142" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.148" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.154" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.160" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.172" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c18.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c19.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.206" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c20.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.212" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c21.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.218" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c22.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.224" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c23.ipvanish.com", + "udp": true, + "ips": [ + "64.238.203.230" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.185" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.191" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.203" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.52" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.58" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.70" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.76" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.82" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "hostname": "fra-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.111.88" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.9" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.15" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.21" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.27" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.33" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "ath-c10.ipvanish.com", + "udp": true, + "ips": [ + "173.255.174.39" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.66" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.72" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.78" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "city": "Guatemala City Virtual", + "hostname": "gua-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.84" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.194" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.200" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "city": "Tegucigalpa Virtual", + "hostname": "tgu-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.206" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.9" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.15" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.21" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.33" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.39" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.45" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.57" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.63" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.69" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.81" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.87" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.93" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "hostname": "hkg-a16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.99" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c01.ipvanish.com", + "udp": true, + "ips": [ + "37.120.144.227" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c02.ipvanish.com", + "udp": true, + "ips": [ + "37.120.144.229" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.189.114.163" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "bud-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.189.114.165" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.163" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.169" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c03.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.175" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "rkv-c04.ipvanish.com", + "udp": true, + "ips": [ + "45.133.192.181" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.8" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.14" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.20" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c05.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.26" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c06.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.32" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c07.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.38" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c08.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.44" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c09.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.50" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Virtual", + "hostname": "pnq-c10.ipvanish.com", + "udp": true, + "ips": [ + "103.209.253.56" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta Virtual", + "hostname": "cgk-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.66" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta Virtual", + "hostname": "cgk-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.72" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c12.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.38" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c13.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.44" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c14.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.50" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c15.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c16.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.8" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c17.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.14" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c18.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.20" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c19.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.26" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c20.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.32" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c21.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.130" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c22.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.136" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c23.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c24.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.148" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c25.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.154" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c26.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.160" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c27.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.166" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c28.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c29.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.178" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "dub-c30.ipvanish.com", + "udp": true, + "ips": [ + "205.185.193.184" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c11.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.4" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c12.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.6" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c13.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.8" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c14.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.10" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c15.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.12" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c16.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.14" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c17.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.16" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c18.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.18" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c19.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.20" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c20.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.22" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c21.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.24" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c22.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.26" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "hostname": "tlv-c23.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.28" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a13.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.4" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a14.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.10" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a15.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.16" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a16.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.22" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a17.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.28" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a18.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.34" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a19.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.40" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a20.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.46" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a21.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a22.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a23.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.64" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a24.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a25.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.76" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a26.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a27.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a28.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.94" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a29.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a30.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a31.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.112" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a32.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a34.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.130" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a35.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.136" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a36.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a37.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "lin-a38.ipvanish.com", + "udp": true, + "ips": [ + "69.16.157.154" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.8" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.14" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "city": "Kingston Virtual", + "hostname": "kin-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.3" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.9" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c03.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.15" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c04.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.21" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c05.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c06.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c07.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c08.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.46" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c09.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.52" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "hostname": "kix-c10.ipvanish.com", + "udp": true, + "ips": [ + "45.8.221.58" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.12" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.48" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a09.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.54" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a10.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.60" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a11.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a12.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a13.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.78" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a14.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.84" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a15.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.90" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a16.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a17.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a18.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a19.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.114" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a20.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a21.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.126" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a22.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.132" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a23.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.138" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-a24.ipvanish.com", + "udp": true, + "ips": [ + "64.145.90.144" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.38" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.44" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.50" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-b10.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.56" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.68" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.80" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.85" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.89" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.97" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c10.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c11.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.105" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c12.ipvanish.com", + "udp": true, + "ips": [ + "36.255.206.109" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c13.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c14.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.10" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c15.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.16" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c16.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c17.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c18.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c19.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c20.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.46" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c21.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.52" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c22.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.58" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c23.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.64" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c24.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.70" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "hostname": "nrt-c25.ipvanish.com", + "udp": true, + "ips": [ + "36.255.207.76" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.136" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "city": "Saint Helier Virtual", + "hostname": "jer-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman Virtual", + "hostname": "amm-c01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.162" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman Virtual", + "hostname": "amm-c02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.168" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana Virtual", + "hostname": "nqz-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.130" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana Virtual", + "hostname": "nqz-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.136" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.66" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.72" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi Virtual", + "hostname": "nbo-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.78" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.194" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.200" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.206" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.212" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.218" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c06.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.224" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c07.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.130" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c08.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.136" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c09.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.142" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c10.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.148" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c11.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.154" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "sel-c12.ipvanish.com", + "udp": true, + "ips": [ + "156.59.42.160" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "city": "Vientiane Virtual", + "hostname": "vte-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.2" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "city": "Vientiane Virtual", + "hostname": "vte-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.111.8" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c08.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c09.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.9" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c10.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.15" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c11.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.21" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c12.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.27" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c13.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.33" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "rix-c14.ipvanish.com", + "udp": true, + "ips": [ + "198.181.163.39" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut Virtual", + "hostname": "bey-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.194" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "city": "Beirut Virtual", + "hostname": "bey-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.255.200" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.194" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.200" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.206" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "city": "Vaduz Virtual", + "hostname": "vdu-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.212" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.4" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.10" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.16" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.22" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.28" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.34" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "hostname": "lux-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.68.40" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b01.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.129" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b02.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.135" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b03.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.141" + ] + }, + { + "vpn": "openvpn", + "country": "Macao", + "city": "Taipa Virtual", + "hostname": "mfm-b04.ipvanish.com", + "udp": true, + "ips": [ + "103.209.252.147" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje Virtual", + "hostname": "skp-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.89.66" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c11.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.131" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c12.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.135" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c13.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.139" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c14.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.143" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c15.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.147" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c16.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.151" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c17.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.169" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c18.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.173" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c19.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.177" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c20.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.181" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "kul-c21.ipvanish.com", + "udp": true, + "ips": [ + "103.175.51.185" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c01.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.5" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c02.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c03.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.17" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c04.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.23" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c05.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.29" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c06.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.35" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c07.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.41" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c08.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.47" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Guadalajara", + "hostname": "gdl-c09.ipvanish.com", + "udp": true, + "ips": [ + "173.255.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c05.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.66" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c06.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.72" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c07.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.78" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c08.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.84" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c09.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.90" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c10.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.96" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c11.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.102" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c12.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.108" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c13.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.114" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "kiv-c14.ipvanish.com", + "udp": true, + "ips": [ + "178.175.140.120" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco Virtual", + "hostname": "mcm-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.130" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "city": "Monaco Virtual", + "hostname": "mcm-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.85.136" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Ulaanbaatar Virtual", + "hostname": "uln-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.194" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "city": "Ulaanbaatar Virtual", + "hostname": "uln-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.91.200" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Podgorica Virtual", + "hostname": "tgd-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.89.130" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.194" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.200" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Casablanca Virtual", + "hostname": "cmn-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.216.206" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon Virtual", + "hostname": "rgn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.130" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon Virtual", + "hostname": "rgn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.136" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu Virtual", + "hostname": "ktm-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.2" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu Virtual", + "hostname": "ktm-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.110.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.42" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.48" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a09.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a10.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.60" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a11.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.66" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a12.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a13.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a14.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a15.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.90" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a16.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a17.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.102" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a18.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.108" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a19.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.114" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a20.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.120" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a21.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.126" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a22.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.132" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a23.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.138" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a24.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a25.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.150" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a26.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a27.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a28.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.168" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a29.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.174" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a30.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a31.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a32.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a33.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a34.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a35.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a36.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a37.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a38.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a39.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a40.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a41.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a42.ipvanish.com", + "udp": true, + "ips": [ + "176.67.80.255" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a43.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a44.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.11" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a45.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a46.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.23" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a47.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a48.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.35" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a49.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.41" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a50.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a51.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a52.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.59" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a53.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a54.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a55.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a56.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a57.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a58.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a59.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-a60.ipvanish.com", + "udp": true, + "ips": [ + "176.67.81.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.20" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.130" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.136" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.142" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.148" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.154" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.166" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.172" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c19.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.66" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c20.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c21.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.78" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c22.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.84" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c23.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.90" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c24.ipvanish.com", + "udp": true, + "ips": [ + "194.127.173.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.190" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.196" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.220" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.80" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.86" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.112.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c41.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c42.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c43.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c44.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.20" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c45.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.26" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c46.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c47.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.38" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c48.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c49.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.50" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c50.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c51.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c52.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.68" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c53.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "hostname": "ams-c54.ipvanish.com", + "udp": true, + "ips": [ + "173.245.206.80" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c01.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.195" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c02.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.201" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c03.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.207" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "akl-c04.ipvanish.com", + "udp": true, + "ips": [ + "116.90.74.213" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c01.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.224" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c02.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.226" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c03.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.228" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c04.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.230" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c05.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.232" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c06.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.234" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "osl-c07.ipvanish.com", + "udp": true, + "ips": [ + "84.247.50.236" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.67" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.73" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.79" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.85" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Islamabad", + "hostname": "isb-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.215.91" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.146" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.152" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.158" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "Panama City Virtual", + "hostname": "pty-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.115.164" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Asuncion Virtual", + "hostname": "asu-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.2" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "city": "Asuncion Virtual", + "hostname": "asu-c02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.8" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.5" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.11" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c03.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.17" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c04.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.23" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "lim-c05.ipvanish.com", + "udp": true, + "ips": [ + "205.185.218.29" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c01.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.159" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c02.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.135" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c03.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.141" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c04.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.147" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c05.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.153" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c06.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.194" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c07.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.200" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c08.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.206" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c09.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.212" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "mnl-c10.ipvanish.com", + "udp": true, + "ips": [ + "156.59.233.218" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.2" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.8" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.14" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.20" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.26" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.86.32" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c07.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.3" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c08.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.9" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c09.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.15" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c10.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.21" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c11.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.27" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c12.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.33" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "hostname": "waw-c13.ipvanish.com", + "udp": true, + "ips": [ + "194.99.105.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.70" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.76" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.82" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.88" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.174.156.94" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c10.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.55" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c11.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.37" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c12.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c13.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.41" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "lis-c14.ipvanish.com", + "udp": true, + "ips": [ + "5.154.174.43" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.2" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.8" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.14" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.20" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.26" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.32" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.38" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c20.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.44" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c21.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.50" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c22.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.56" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c23.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.62" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c24.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.68" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c25.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.74" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "hostname": "otp-c26.ipvanish.com", + "udp": true, + "ips": [ + "173.245.207.80" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c01.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c02.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.11" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c03.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.17" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c04.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.23" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "beg-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.83.29" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c01.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c02.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c03.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c04.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.148" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c05.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.154" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c06.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.160" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c07.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.167" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c08.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.173" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c09.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.179" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c10.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.185" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c11.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.191" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c12.ipvanish.com", + "udp": true, + "ips": [ + "209.234.248.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c13.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.3" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c14.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.9" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c15.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.15" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c16.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c17.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.27" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c18.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.33" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "hostname": "sin-c19.ipvanish.com", + "udp": true, + "ips": [ + "146.70.236.39" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c05.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.8" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c06.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c07.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.28" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c08.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.38" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "bts-c09.ipvanish.com", + "udp": true, + "ips": [ + "176.67.87.48" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c02.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.70" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c03.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.72" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c04.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.74" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c05.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.76" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c06.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.78" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "hostname": "lju-c07.ipvanish.com", + "udp": true, + "ips": [ + "195.158.249.68" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.2" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.8" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.20" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.26" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "jnb-c08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.67.32" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.18" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.24" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.30" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.36" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.42" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.48" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a07.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.56" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a08.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.62" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a09.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.68" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a10.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.74" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a11.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.80" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a12.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.86" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.92" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.98" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.104" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.110" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.116" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.241" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.134" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.140" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.146" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.152" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.158" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.164" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.170" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.176" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.182" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.188" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "mad-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.147.214.194" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c01.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.163" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c02.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.167" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c03.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c04.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.183" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c07.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Valencia", + "hostname": "vlc-c08.ipvanish.com", + "udp": true, + "ips": [ + "193.19.207.175" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo Virtual", + "hostname": "cmb-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.194" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo Virtual", + "hostname": "cmb-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.200" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.137" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.149" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.161" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.167" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.173" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.185" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.191" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.197" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.209" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.215" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.221" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.41" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a31.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a32.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a33.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a34.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.65" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a35.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.71" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a36.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.77" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a37.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.83" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a38.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.89" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a39.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.95" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-a40.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.101" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.4" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.10" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.16" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.22" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.28" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.147.213.34" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.9" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c09.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c10.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c11.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "sto-c12.ipvanish.com", + "udp": true, + "ips": [ + "146.70.249.33" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.2" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.8" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.14" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.26" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.32" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.136" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.148" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.154" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.160" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.49" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.55" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.61" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "hostname": "zrh-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.108.73" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c01.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c02.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.137" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c03.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.143" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c04.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.149" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c05.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.155" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c06.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.161" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c07.ipvanish.com", + "udp": true, + "ips": [ + "23.248.176.167" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c08.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c09.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.136" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c10.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.142" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c11.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.148" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tpe-c12.ipvanish.com", + "udp": true, + "ips": [ + "192.169.119.154" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c01.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.67" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c02.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.72" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c03.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.75" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c04.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.78" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c05.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.82" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "bkk-c06.ipvanish.com", + "udp": true, + "ips": [ + "129.227.230.86" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.66" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.72" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad And Tobago", + "city": "Port Of Spain Virtual", + "hostname": "pos-b03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.106.78" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c01.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.3" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c02.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.9" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c03.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.15" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c04.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.21" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c05.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.27" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c06.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.33" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c07.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.39" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c08.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.45" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "ist-c09.ipvanish.com", + "udp": true, + "ips": [ + "36.255.204.51" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b01.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b02.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.7" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b03.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.13" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b04.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b05.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.25" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "hostname": "kbp-b06.ipvanish.com", + "udp": true, + "ips": [ + "209.107.196.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c01.ipvanish.com", + "udp": true, + "ips": [ + "45.9.250.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c02.ipvanish.com", + "udp": true, + "ips": [ + "45.9.250.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c03.ipvanish.com", + "udp": true, + "ips": [ + "146.70.102.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c04.ipvanish.com", + "udp": true, + "ips": [ + "146.70.102.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c05.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c06.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c07.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.238" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "dxb-c08.ipvanish.com", + "udp": true, + "ips": [ + "146.70.191.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c01.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c02.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c03.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c04.ipvanish.com", + "udp": true, + "ips": [ + "94.46.220.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c05.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c06.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c07.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.135" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c08.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c09.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.139" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c10.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c11.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c12.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c13.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c14.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c15.ipvanish.com", + "udp": true, + "ips": [ + "78.110.173.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c16.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c17.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c18.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c19.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c20.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c21.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c22.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c23.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.109" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c24.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c25.ipvanish.com", + "udp": true, + "ips": [ + "185.103.99.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c26.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c27.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c28.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c29.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c30.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c31.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.161" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c32.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c33.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.173" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c34.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Birmingham", + "hostname": "bhx-c35.ipvanish.com", + "udp": true, + "ips": [ + "185.99.253.185" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Glasgow", + "hostname": "gla-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.108.105.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a01.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a02.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a03.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a04.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a05.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a06.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a07.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a08.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a09.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a10.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a11.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a12.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a13.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a14.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a15.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a16.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a17.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a18.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a19.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a20.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.120" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a21.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.126" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a22.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a23.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a24.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.144" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a25.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.150" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a26.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a27.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a28.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a29.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a30.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a31.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a32.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a33.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.198" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a34.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.204" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a35.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.210" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a36.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a37.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a38.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a39.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a40.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a41.ipvanish.com", + "udp": true, + "ips": [ + "185.91.122.246" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a42.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.0" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a43.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a44.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-a45.ipvanish.com", + "udp": true, + "ips": [ + "185.91.123.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.1" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.7" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.55" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.74" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c04.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c05.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.141.57.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.61" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.73" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.109" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.113" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.151.184.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c24.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c25.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c26.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c27.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c28.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c29.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c30.ipvanish.com", + "udp": true, + "ips": [ + "185.212.168.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c31.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c32.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c33.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c34.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c35.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c36.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c37.ipvanish.com", + "udp": true, + "ips": [ + "23.90.177.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c38.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c39.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c40.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c41.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c42.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c43.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c44.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c45.ipvanish.com", + "udp": true, + "ips": [ + "176.56.39.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c46.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c47.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c48.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c49.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c50.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c51.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c52.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c53.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c54.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "lon-c55.ipvanish.com", + "udp": true, + "ips": [ + "185.91.120.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c01.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c02.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.135" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c03.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c04.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c05.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c06.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c07.ipvanish.com", + "udp": true, + "ips": [ + "185.242.7.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c08.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.242" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c09.ipvanish.com", + "udp": true, + "ips": [ + "89.238.142.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.118" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.124" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "man-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.121.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.72.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c01.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c02.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c03.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c04.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c05.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c06.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c07.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c08.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c09.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c10.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c11.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c12.ipvanish.com", + "udp": true, + "ips": [ + "98.96.216.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "hostname": "iad-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.73.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a06.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a07.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a08.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a09.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a10.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a11.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a12.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a13.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a14.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a15.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a16.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a17.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a18.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a19.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a20.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a21.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a22.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a23.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a24.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a25.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a26.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a27.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a28.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a29.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a30.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.223" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a31.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a32.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a33.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a34.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a35.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a36.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a37.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a38.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a39.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a40.ipvanish.com", + "udp": true, + "ips": [ + "192.200.150.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a78.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a79.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a80.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a81.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a82.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a83.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a84.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a85.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a86.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a87.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a88.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a89.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a90.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a91.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a92.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a93.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a94.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a95.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a96.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a97.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a98.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-a99.ipvanish.com", + "udp": true, + "ips": [ + "192.200.149.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.75.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b63.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b64.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b65.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b66.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b67.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b68.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b69.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b70.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b71.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b72.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b73.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b74.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b75.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b76.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b77.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b78.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b79.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b80.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b81.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b82.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b83.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b84.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b85.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b86.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b87.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b88.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b89.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b90.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b91.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b92.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b93.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b94.ipvanish.com", + "udp": true, + "ips": [ + "192.200.148.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b95.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b96.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b97.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b98.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "atl-b99.ipvanish.com", + "udp": true, + "ips": [ + "216.131.74.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c05.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c06.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c07.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c08.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c09.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c10.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c11.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c12.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c13.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c14.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c15.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c16.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c17.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c18.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c19.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c20.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c21.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c22.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c23.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c24.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c25.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c26.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c27.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c28.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c29.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c30.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c31.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c32.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c33.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c34.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c35.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Boston", + "hostname": "bos-c36.ipvanish.com", + "udp": true, + "ips": [ + "108.171.103.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.229.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Charlotte", + "hostname": "clt-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.104.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b63.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b64.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b65.ipvanish.com", + "udp": true, + "ips": [ + "216.131.77.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b66.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b67.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b68.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b69.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b70.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b71.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b72.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b73.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b74.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b75.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-b76.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.76.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c13.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c14.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c15.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c16.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c17.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c18.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "chi-c19.ipvanish.com", + "udp": true, + "ips": [ + "173.245.202.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Cincinnati", + "hostname": "cvg-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.84.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.79.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.78.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c13.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c14.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c15.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c16.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c17.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c18.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c19.ipvanish.com", + "udp": true, + "ips": [ + "98.96.192.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c20.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c21.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c22.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c23.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c24.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c25.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c26.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c27.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c28.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c29.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c30.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c31.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c32.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "dal-c33.ipvanish.com", + "udp": true, + "ips": [ + "146.70.13.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b02.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b03.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b04.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b05.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b06.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b07.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b08.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b09.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b10.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b11.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b12.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b13.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b14.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b15.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b16.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b17.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b18.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b19.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b20.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b21.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b22.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b23.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "den-b24.ipvanish.com", + "udp": true, + "ips": [ + "64.145.93.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Detroit Virtual", + "hostname": "dtw-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.118.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c13.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.85" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c14.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c15.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c16.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c17.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c18.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c19.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c20.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c21.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c22.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c23.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c24.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c25.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c26.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c27.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c28.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c29.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c30.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c31.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c32.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c33.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c34.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c35.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c36.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.223" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c37.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c38.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c39.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c40.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c41.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c42.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c43.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c44.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c45.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c46.ipvanish.com", + "udp": true, + "ips": [ + "207.204.248.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c47.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c48.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c49.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c50.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c51.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c52.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c53.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "hou-c54.ipvanish.com", + "udp": true, + "ips": [ + "207.204.249.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c01.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c02.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c03.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c04.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c05.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c06.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c07.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c08.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c09.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c10.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c11.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c12.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c13.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c14.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c15.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c16.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c17.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c18.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c19.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.86.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c31.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c32.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c33.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c34.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c35.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c36.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c37.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c38.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c39.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c40.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c41.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c42.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c43.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c44.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c45.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c46.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c47.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c48.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c49.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c50.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "las-c51.ipvanish.com", + "udp": true, + "ips": [ + "207.204.228.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.80.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.81.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c01.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c02.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c03.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c04.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c05.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c06.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c07.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c08.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c09.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c10.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "lax-c11.ipvanish.com", + "udp": true, + "ips": [ + "38.132.115.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-b16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.87.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c13.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c14.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c15.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c16.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c17.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c18.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "mia-c19.ipvanish.com", + "udp": true, + "ips": [ + "169.197.125.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.191" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.106.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New Orleans", + "hostname": "msy-c57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.107.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b26.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b27.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b28.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b29.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b30.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b31.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b32.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b33.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b34.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b35.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b36.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b37.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b38.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b39.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b40.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b41.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b55.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b56.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b57.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b58.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b59.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b60.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b61.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b62.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b63.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b64.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b65.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b66.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b67.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b68.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b69.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-b70.ipvanish.com", + "udp": true, + "ips": [ + "216.131.82.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c01.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c02.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c03.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c04.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c05.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c06.ipvanish.com", + "udp": true, + "ips": [ + "200.162.155.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.83.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c25.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c26.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c27.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c28.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c29.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c30.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c31.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c32.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c33.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c34.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c35.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c36.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c37.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c38.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c39.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c40.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c41.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c42.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c43.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c44.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c45.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c46.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c47.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c48.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c49.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "nyc-c50.ipvanish.com", + "udp": true, + "ips": [ + "216.151.180.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a01.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a02.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a03.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a04.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a05.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a06.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a07.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a08.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a09.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a10.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a11.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a12.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a13.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a14.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a15.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a16.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a17.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a18.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a19.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a20.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a25.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a26.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a28.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a29.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a30.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a31.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a32.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a33.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a34.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a35.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a36.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a37.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a38.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a39.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "phx-a40.ipvanish.com", + "udp": true, + "ips": [ + "192.200.158.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a16.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a17.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a18.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a19.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a20.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a21.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a22.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a23.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a24.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a25.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a42.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a43.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a44.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a45.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a46.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a47.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a48.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a49.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a50.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a51.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a52.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a53.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "hostname": "sjc-a54.ipvanish.com", + "udp": true, + "ips": [ + "216.131.122.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c01.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c02.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c03.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c04.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c05.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c06.ipvanish.com", + "udp": true, + "ips": [ + "205.185.223.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c07.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c08.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c09.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c10.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c11.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "sea-c12.ipvanish.com", + "udp": true, + "ips": [ + "98.96.253.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a01.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a02.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a03.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a04.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a05.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a06.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a07.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a08.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a09.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a10.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a11.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a12.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a13.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a14.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "St. Louis Virtual", + "hostname": "stl-a15.ipvanish.com", + "udp": true, + "ips": [ + "216.131.120.89" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "city": "Montevideo Virtual", + "hostname": "mvd-c01.ipvanish.com", + "udp": true, + "ips": [ + "64.145.65.130" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.2" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.8" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c03.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.14" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas Virtual", + "hostname": "ccs-c04.ipvanish.com", + "udp": true, + "ips": [ + "108.171.105.20" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City Virtual", + "hostname": "sgn-c01.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.2" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Ho Chi Minh City Virtual", + "hostname": "sgn-c02.ipvanish.com", + "udp": true, + "ips": [ + "108.171.109.8" + ] + } + ] + }, + "ivpn": { + "version": 3, + "timestamp": 1724036915, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "46.102.153.242" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw1.wg.ivpn.net", + "wgpubkey": "KmSrG48t5xw9CJCPlYLBG3JnmiY0CnUgyRM5TUEwZhM=", + "ips": [ + "46.102.153.246" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "146.70.78.74" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-nsw2.wg.ivpn.net", + "wgpubkey": "q+wbp7GjiTszp5G16rNpGCqxkL0qSY3CH4pcgD6UsVQ=", + "ips": [ + "146.70.78.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.244.212.66" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at1.wg.ivpn.net", + "wgpubkey": "83LUBnP97SFpnS0y1MpEAFcg8MIiQJgW1FRv/8Mc40g=", + "ips": [ + "185.244.212.69" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.10" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be1.wg.ivpn.net", + "wgpubkey": "awriP5lpdxEMWKuG+A1DOg+vb1M5jd3WhynIMB61BhU=", + "ips": [ + "194.187.251.13" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Franca", + "isp": "Qnax", + "hostname": "br1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "45.162.230.50" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Franca", + "isp": "Qnax", + "hostname": "br1.wg.ivpn.net", + "wgpubkey": "eN1f15S3YzRyYCALiPGRQcjkQO9xntcdqPhJJ6TOymc=", + "ips": [ + "45.162.230.53" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.18" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg1.wg.ivpn.net", + "wgpubkey": "WDSsdJE6wvATIWfzQwayPtE/0DaXBQgW/hPm7sQSJmU=", + "ips": [ + "82.102.23.21" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-qc2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "87.101.92.26" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-qc2.wg.ivpn.net", + "wgpubkey": "XSKU6fBCDwlb+mGek1O/fUDd/ozO58ZLph/0H7mn+zE=", + "ips": [ + "87.101.92.29" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca1.wg.ivpn.net", + "wgpubkey": "rg+GGDmjM4Vxo1hURvKmgm9yonb6qcoKbPCP/DNDBnI=", + "ips": [ + "37.120.130.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "184.75.215.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on1.wg.ivpn.net", + "wgpubkey": "eXlmRV8RsCQZjWwiSYxwtEr/xwanM/2HER2YqIGTdHk=", + "ips": [ + "184.75.215.5" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "162.219.176.18" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Amanah", + "hostname": "ca-on2.wg.ivpn.net", + "wgpubkey": "nadUhrHR5E0fCB5wg4efZHNn2NRE+gnuTDjKT21y2V0=", + "ips": [ + "162.219.176.21" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "Tech Futures", + "hostname": "ca-bc1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.228" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "Tech Futures", + "hostname": "ca-bc1.wg.ivpn.net", + "wgpubkey": "lXawKqHosFOoc9kqAZwun9Yk3VrPN7vmG/JuQm4kvx0=", + "ips": [ + "104.193.135.231" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "Datapacket", + "hostname": "cz1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "195.181.160.167" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "Datapacket", + "hostname": "cz1.wg.ivpn.net", + "wgpubkey": "gVbEq2cGRzwCSGPqT2oRSYYN+P6IK3uvvRffErASDSk=", + "ips": [ + "185.180.14.41" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.226" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk1.wg.ivpn.net", + "wgpubkey": "jTsV5gOD7lT4egDj9rhKwO2OO2X7bKs2EQPcZEnUWDE=", + "ips": [ + "185.245.84.229" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "hostname": "fi1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.112.82.12" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "hostname": "fi1.wg.ivpn.net", + "wgpubkey": "mIxEzfjZ2wV6jJVj30w38ECd2LSH4bw/HLMnM2ICHiI=", + "ips": [ + "194.34.134.63" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "Datapacket", + "hostname": "fr1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.246.211.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "Datapacket", + "hostname": "fr1.wg.ivpn.net", + "wgpubkey": "g7BuMzj3r/noLiLR4qhQMcvU6GSIY8RGEnaYtdYsFX4=", + "ips": [ + "185.246.211.185" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "Datapacket", + "hostname": "de1.wg.ivpn.net", + "wgpubkey": "mS3/WpXjnMAMmXjSpd4nFzx9HSE3ubv2WyjpyH2REgs=", + "ips": [ + "185.102.219.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "Leaseweb", + "hostname": "de2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "178.162.211.114" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "Leaseweb", + "hostname": "de2.wg.ivpn.net", + "wgpubkey": "QhY3OtBf4FFafKtLO33e6k8JnAl8e6ktFcRUyLjCDVY=", + "ips": [ + "37.58.60.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "146.70.160.162" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de3.wg.ivpn.net", + "wgpubkey": "CugQQtD8YJKRwS5IukNWkMcyqOzlOxfGRPhGeQRAb2Y=", + "ips": [ + "146.70.160.170" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "Datapacket", + "hostname": "gr1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "169.150.252.110" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "Datapacket", + "hostname": "gr1.wg.ivpn.net", + "wgpubkey": "79rPSFIEQ4KWX9UN+FSMVfI0mPPVY5elS16O/DA6uDw=", + "ips": [ + "169.150.252.113" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "Leaseweb", + "hostname": "hk2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "209.58.188.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "Leaseweb", + "hostname": "hk2.wg.ivpn.net", + "wgpubkey": "kyolyq4cJydI3vQB2ESTIUAy2Fq0bpOf+Qe7GIq6XEA=", + "ips": [ + "64.120.120.239" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "TheGigabit", + "hostname": "hk3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "118.107.244.184" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "TheGigabit", + "hostname": "hk3.wg.ivpn.net", + "wgpubkey": "qq1simsFNm2FpZM0J8u8Aa0rkk5HEasvLksPyLv+0Sk=", + "ips": [ + "118.107.244.206" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.186" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu1.wg.ivpn.net", + "wgpubkey": "G30fNdXrnlqtqqOLF23QXWzFdLIKDxLW60HoYPvqml8=", + "ips": [ + "185.189.114.189" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "isp": "Advania", + "hostname": "is1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "82.221.107.178" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "isp": "Advania", + "hostname": "is1.wg.ivpn.net", + "wgpubkey": "nZZT6TlQ2dXlVe3P3B5ozEScHYMWH4JY4y3to8w5dz0=", + "ips": [ + "82.221.107.185" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Tel Aviv", + "city": "Holon", + "isp": "HQServ", + "hostname": "il1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.191.204.130" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Tel Aviv", + "city": "Holon", + "isp": "HQServ", + "hostname": "il1.wg.ivpn.net", + "wgpubkey": "HR9gAjpxXU3YVt6kehBw5n8yVYVE0iIgJdc4HTqOzEE=", + "ips": [ + "185.191.204.133" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "Datapacket", + "hostname": "it2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "84.17.59.137" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "Datapacket", + "hostname": "it2.wg.ivpn.net", + "wgpubkey": "IYi+s9DZusPErv0k2Ls/jgdubmeCrUcEJ1cNgmxPx0k=", + "ips": [ + "84.17.59.149" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "TheGigabit", + "hostname": "jp2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.135.77.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "TheGigabit", + "hostname": "jp2.wg.ivpn.net", + "wgpubkey": "YuhEd9+a90/+uucZC+qzsyMHkfe/GiwG1dq7g2HegXQ=", + "ips": [ + "185.135.77.81" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "isp": "Evoluso", + "hostname": "lu1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.53" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "isp": "Evoluso", + "hostname": "lu1.wg.ivpn.net", + "wgpubkey": "hUS1OAFLGwpba8+oc5mifYtohZt/RTro5dMyYBLYHjI=", + "ips": [ + "92.223.89.57" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "isp": "TheGigabit", + "hostname": "my1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "61.4.97.148" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Kuala Lumpur", + "isp": "TheGigabit", + "hostname": "my1.wg.ivpn.net", + "wgpubkey": "M9SsMCpUw7ad6YbqQr8r2saBK2zAf3tBj82DzsQjgkY=", + "ips": [ + "61.4.97.154" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Querétaro", + "isp": "Datapacket", + "hostname": "mx1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "121.127.43.193" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Querétaro", + "isp": "Datapacket", + "hostname": "mx1.wg.ivpn.net", + "wgpubkey": "ReKHoFVVGfR4Tgzl2GPPioAtQm3HmecKTU0HK67NcXU=", + "ips": [ + "121.127.43.196" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Datapacket", + "hostname": "nl1.wg.ivpn.net", + "wgpubkey": "AsMT2FqpkZbjzWeDch6GwufF5odl259W/hIkGytVfWo=", + "ips": [ + "185.102.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.68" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl3.wg.ivpn.net", + "wgpubkey": "XDU6Syq1DY82IMatsHV0x/TAtbLiRwh/SdFCXlEn40c=", + "ips": [ + "95.211.95.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl4.wg.ivpn.net", + "wgpubkey": "cVB66gPq5cZ9dfXY+e2pbsCyih5o1zk04l5c5VCsV1g=", + "ips": [ + "95.211.95.19" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl5.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.187.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl5.wg.ivpn.net", + "wgpubkey": "NCagAawwRixI6Iw/NWiGD8lbjDNCl0aTICZKJtO/1HA=", + "ips": [ + "95.211.243.162" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl6.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.187.228" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl6.wg.ivpn.net", + "wgpubkey": "hMWpqb3FEATHIbImPVWB/5z2nWIXghwpnJjevPY+1H0=", + "ips": [ + "95.211.243.182" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl7.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.95.22" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl7.wg.ivpn.net", + "wgpubkey": "hQNYqtfOOAEz0IGshLx/TI9hUrfR9gIIkjVm4VsCbBM=", + "ips": [ + "95.211.172.105" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl8.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "95.211.172.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "Leaseweb", + "hostname": "nl8.wg.ivpn.net", + "wgpubkey": "/nY1/OhVhdHtbnU/s31zYUuPBH0pizv4DemW5KDOUkg=", + "ips": [ + "95.211.198.167" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Servetheworld", + "hostname": "no1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.242.10.150" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Servetheworld", + "hostname": "no1.wg.ivpn.net", + "wgpubkey": "xFO6ksbO3Gr05rRgAW0O5Veoi4bpTgz2G9RvtBzK7Cg=", + "ips": [ + "91.189.177.156" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "isp": "Datapacket", + "hostname": "pe1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "79.127.252.65" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "Datapacket", + "hostname": "pe1.wg.ivpn.net", + "wgpubkey": "LGvYaCFJxdDePXV+r5ENsmugIlVufCCSSm2A6EUXXGw=", + "ips": [ + "79.127.252.68" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "Datapacket", + "hostname": "pl1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.246.208.86" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "Datapacket", + "hostname": "pl1.wg.ivpn.net", + "wgpubkey": "1JDmF79rWj5C+kHp71AbdHne/yGaizWCd2bLfSFvYjo=", + "ips": [ + "185.246.208.109" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "isp": "Hostwebis", + "hostname": "pt1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "94.46.175.112" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "Hostwebis", + "hostname": "pt1.wg.ivpn.net", + "wgpubkey": "nMnA82YVrvEK80GVoY/0Z9McWeqjcLzuMYSL+86j5nU=", + "ips": [ + "94.46.175.113" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.120.206.50" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro1.wg.ivpn.net", + "wgpubkey": "F2uQ57hysZTlw8WYELnyCw9Lga80wNYoYwkrrxyXKmw=", + "ips": [ + "37.120.206.53" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.250" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs1.wg.ivpn.net", + "wgpubkey": "xLN/lpQThQ3z3tvYf7VqdAsRL/nton1Vhv2kCZlQtWE=", + "ips": [ + "141.98.103.253" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg01.wg.ivpn.net", + "wgpubkey": "pWk0u1Xq8FHC+xpkN+C6yEKOTEanorR5zMCSfHlLzFw=", + "ips": [ + "185.128.24.189" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.128.24.186" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg1.wg.ivpn.net", + "wgpubkey": "hSg0At4uwuIhmTy5UT4fRbi5AN6JO2ZWTuIvqd4nHCE=", + "ips": [ + "37.120.151.122" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "isp": "Datapacket", + "hostname": "sk2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "156.146.40.202" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "Datapacket", + "hostname": "sk2.wg.ivpn.net", + "wgpubkey": "xxEl8CIjNLpig6fp7z4USHZLK35Nu5HENFNwTdeAbzU=", + "ips": [ + "156.146.40.205" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "isp": "Datapacket", + "hostname": "za1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.103" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "Datapacket", + "hostname": "za1.wg.ivpn.net", + "wgpubkey": "tgrAA+uJZppS9esgOi0pe3rHajQQ7c/KF8WPOua6qy4=", + "ips": [ + "169.150.238.108" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "Datapacket", + "hostname": "es1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.93.3.193" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "Datapacket", + "hostname": "es1.wg.ivpn.net", + "wgpubkey": "w7umiArTtlJ4Pk6Ii9WX5VXK5vw/Qu+Z37/icKlIYWo=", + "ips": [ + "84.17.62.98" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "GleSyS", + "hostname": "se01.wg.ivpn.net", + "wgpubkey": "u8VHnYEpoEjJWDAF9NAUkU6s810RnkMuhEfFD9U0cGo=", + "ips": [ + "80.67.10.141" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "GleSyS", + "hostname": "se1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "80.67.10.138" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "M247", + "hostname": "se1.wg.ivpn.net", + "wgpubkey": "2n0nFE1g/+vQr2AOQPm9Igyiy0zh9uTTultvOOSkMRo=", + "ips": [ + "37.120.153.226" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch01.wg.ivpn.net", + "wgpubkey": "dU7gLfcupYd37LW0q6cxC6PHMba+eUFAUOoU/ryXZkY=", + "ips": [ + "185.212.170.141" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.212.170.138" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch1.wg.ivpn.net", + "wgpubkey": "jVZJ61i1xxkAfriDHpwvF/GDuTvZUqhwoWSjkOJvaUA=", + "ips": [ + "141.255.164.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "141.255.166.194" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "Privatelayer", + "hostname": "ch3.wg.ivpn.net", + "wgpubkey": "JBpgBKtqIneRuEga7mbP2PAk/e4HPRaC11H0A0+R3lA=", + "ips": [ + "141.255.166.198" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "isp": "TheGigabit", + "hostname": "tw1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.189.160.6" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taipei", + "isp": "TheGigabit", + "hostname": "tw1.wg.ivpn.net", + "wgpubkey": "fMTCCbbKqPp60fkqnaQvJ9mX2r6zBlt7xhUp8sGfJQY=", + "ips": [ + "185.189.160.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "isp": "Server.ua", + "hostname": "ua2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "91.232.28.126" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "Server.ua", + "hostname": "ua2.wg.ivpn.net", + "wgpubkey": "WmMJBUyI0tdByPhMyvKWAbQMRE1I3ilPi/fIeG3m+UE=", + "ips": [ + "91.232.28.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb01.wg.ivpn.net", + "wgpubkey": "yKK5x+D17Jr3Q12T/UBaDjNVmNdZBsqpvTqH6YfsGHg=", + "ips": [ + "185.59.221.140" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.133" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "M247", + "hostname": "gb1.wg.ivpn.net", + "wgpubkey": "7+jos+Eg+hMEOQE4Std6OJ+WVnCcmbqS1/EbPwn9w3s=", + "ips": [ + "81.92.202.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.88" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "isp": "Datapacket", + "hostname": "gb2.wg.ivpn.net", + "wgpubkey": "x0BTRaxsdxAd58ZyU2YMX4bmuj+Eg+8/urT2F3Vs1n8=", + "ips": [ + "185.59.221.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-man1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "89.238.141.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-man1.wg.ivpn.net", + "wgpubkey": "+hf4DYilNEIjTdSOuCNcWdqVyaRoxGzXw7wvNl7f7Rg=", + "ips": [ + "89.238.141.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "AZ", + "city": "Phoenix", + "isp": "M247", + "hostname": "us-az1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "193.37.254.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "AZ", + "city": "Phoenix", + "isp": "M247", + "hostname": "us-az1.wg.ivpn.net", + "wgpubkey": "Ts4MGazxpxL9rrYbERjgxa+kCEX85ou9gHoaJvDsRiI=", + "ips": [ + "193.37.254.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca01.wg.ivpn.net", + "wgpubkey": "B+qXdkIuETpzI0bfhGUAHN4SU91Tjs6ItdFlu93S42I=", + "ips": [ + "216.144.236.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.254.196.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Datapacket", + "hostname": "us-ca1.wg.ivpn.net", + "wgpubkey": "FGl78s9Ct6xNamQ2/CtAyXwGePrrU0kiZxfM27pm8XA=", + "ips": [ + "185.180.13.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "69.12.80.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca2.wg.ivpn.net", + "wgpubkey": "qv4Tupfon5NUSwzDpM8zPizSwJZn2h+9CqrufcyDOko=", + "ips": [ + "216.144.236.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Tzulo", + "hostname": "us-ca3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.54.129.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Tzulo", + "hostname": "us-ca3.wg.ivpn.net", + "wgpubkey": "J5+Bx84LxNPdWEhewOvBV/fGWiDluIBlAcr1QlJZil8=", + "ips": [ + "198.54.129.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.254.204.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CA", + "city": "Los Angeles", + "isp": "Quadranet", + "hostname": "us-ca4.wg.ivpn.net", + "wgpubkey": "dYPXYr6HSRJPe3MhALwGWNtdEy1+EPE9Kqv7cTrUXk8=", + "ips": [ + "216.144.237.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "CO", + "city": "Denver", + "isp": "Datapacket", + "hostname": "us-co1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "121.127.44.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "CO", + "city": "Denver", + "isp": "Datapacket", + "hostname": "us-co1.wg.ivpn.net", + "wgpubkey": "eW3Xf/azDAah8xaM0z5rMxJZkWM6YlWuZsEbMwy9j2Y=", + "ips": [ + "121.127.44.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "FL", + "city": "Miami", + "isp": "Quadranet", + "hostname": "us-fl1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "173.44.49.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "FL", + "city": "Miami", + "isp": "Quadranet", + "hostname": "us-fl1.wg.ivpn.net", + "wgpubkey": "Rkzo9WgxJBiKyEbkZvqGWtOVh9Gk9Vd7wL49SHXdHig=", + "ips": [ + "173.44.49.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga01.wg.ivpn.net", + "wgpubkey": "EJFl28aYpZKfmJqb1jxxTEnGx6kaH2USVrigpHKKXhs=", + "ips": [ + "104.129.24.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "104.129.24.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Datapacket", + "hostname": "us-ga1.wg.ivpn.net", + "wgpubkey": "jD8h+pL5/d6fmYcTzl0lR8AWzQVN5XkwRFSmM/3NcDM=", + "ips": [ + "185.93.0.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "107.150.22.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "GA", + "city": "Atlanta", + "isp": "Quadranet", + "hostname": "us-ga2.wg.ivpn.net", + "wgpubkey": "hr2uQOEGCvGeDkoCQJ2dCI8dM8Iu5aKhb1PIvJ9q72E=", + "ips": [ + "107.150.22.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il01.wg.ivpn.net", + "wgpubkey": "Uy5a8JOqneAUY1dC5s9jubLnotbyIfBsLP2nZuzRbHs=", + "ips": [ + "72.11.137.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "107.150.28.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Datapacket", + "hostname": "us-il1.wg.ivpn.net", + "wgpubkey": "hku9gjamhoii8OvxZgx+TdUDIkOAQYFu39qbav2AyUQ=", + "ips": [ + "89.187.181.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "72.11.137.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "IL", + "city": "Chicago", + "isp": "Quadranet", + "hostname": "us-il2.wg.ivpn.net", + "wgpubkey": "ANhVUMAQgStPVNRHW8mg0ZtN1YI1QHyXfNCO8+USNQQ=", + "ips": [ + "72.11.137.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "Quadranet", + "hostname": "us-nj3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "23.226.128.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "Quadranet", + "hostname": "us-nj3.wg.ivpn.net", + "wgpubkey": "AX7C1LO0ECUcHRYgX4/tIDYdR8npvfB/+pf4AfI3OHU=", + "ips": [ + "23.226.128.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "M247", + "hostname": "us-nj4.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "194.36.111.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NJ", + "city": "Secaucus", + "isp": "M247", + "hostname": "us-nj4.wg.ivpn.net", + "wgpubkey": "1Te4AfL1yKo2k4jzPALnRPfKE3YSzXKo4XIRHPz5FxI=", + "ips": [ + "194.36.111.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NV", + "city": "Las Vegas", + "isp": "M247", + "hostname": "us-nv1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.242.5.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NV", + "city": "Las Vegas", + "isp": "M247", + "hostname": "us-nv1.wg.ivpn.net", + "wgpubkey": "PRpvAZyoNWNm/KHlqafjtYoZtn1PkIPylUE4WbuYmgM=", + "ips": [ + "185.242.5.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny1.wg.ivpn.net", + "wgpubkey": "6/tjvgb7HFl7UuvBSegolxa1zKr3iSlDrlCexCmhAGE=", + "ips": [ + "91.132.137.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "M247", + "hostname": "us-ny2.wg.ivpn.net", + "wgpubkey": "c7DwY2uT+6ulWAJ5u8qJNWHroA0qyJLcdNzf/f2kkhs=", + "ips": [ + "212.103.48.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "Datapacket", + "hostname": "us-ny3.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "NY", + "city": "New York", + "isp": "Datapacket", + "hostname": "us-ny3.wg.ivpn.net", + "wgpubkey": "m5/Ssw9SN3WuE+yD/fAsH5G8iuI8TcDGEiZZnPgiMCc=", + "ips": [ + "89.187.178.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx01.wg.ivpn.net", + "wgpubkey": "LvWf548mFddi8PTrIGL6uD1/l85LU8z0Rc8tpvw2Vls=", + "ips": [ + "96.44.189.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "96.44.189.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx1.wg.ivpn.net", + "wgpubkey": "JPT1veXLmasj2uQDstX24mpR7VWD+GmV8JDkidkz91Q=", + "ips": [ + "198.55.124.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "96.44.142.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "TX", + "city": "Dallas", + "isp": "Quadranet", + "hostname": "us-tx2.wg.ivpn.net", + "wgpubkey": "om8hOGUcEvoOhHvJZoBHxNF4jxY/+Ml9Iy1WOSC/pFo=", + "ips": [ + "96.44.142.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "UT", + "city": "Salt Lake City", + "isp": "100TB", + "hostname": "us-ut1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.105.216.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "UT", + "city": "Salt Lake City", + "isp": "100TB", + "hostname": "us-ut1.wg.ivpn.net", + "wgpubkey": "KirI7bpxD186CuYiOqNHF+QUe6YmRYf6CN3pXWOJT2k=", + "ips": [ + "206.190.145.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "VA", + "city": "Ashburn", + "isp": "Datapacket", + "hostname": "us-va1.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.19.206.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "VA", + "city": "Ashburn", + "isp": "Datapacket", + "hostname": "us-va1.wg.ivpn.net", + "wgpubkey": "ZCnZK6U+cRuP/WgzIDb/P6UG2rX/KyCRd5vJ1hAbr2E=", + "ips": [ + "37.19.206.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "WA", + "city": "Seattle", + "isp": "Tzulo", + "hostname": "us-wa2.gw.ivpn.net", + "tcp": true, + "udp": true, + "ips": [ + "198.44.131.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "WA", + "city": "Seattle", + "isp": "Tzulo", + "hostname": "us-wa2.wg.ivpn.net", + "wgpubkey": "VcrOOozBUCIURU0AnqMAE7AkMmC7Qrp+j/PzPbgbalU=", + "ips": [ + "198.44.131.4" + ] + } + ] + }, + "mullvad": { + "version": 4, + "timestamp": 1726110243, + "servers": [ + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "isp": "iRegister", + "hostname": "al-tia-wg-001", + "wgpubkey": "bPfJDdgBXlY4w3ACs68zOMMhLUbbzktCKnLOFHqbxl4=", + "ips": [ + "31.171.153.66", + "2a04:27c0:0:3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "isp": "iRegister", + "hostname": "al-tia-wg-002", + "wgpubkey": "/wPQafVa/60OIp8KqhC1xTTG+nQXZF17uo8XfdUnz2E=", + "ips": [ + "31.171.154.50", + "2a04:27c0:0:4::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.214.20.146", + "2404:f780:0:dee::c1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.214.20.162", + "2404:f780:0:def::c2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-wg-301", + "wgpubkey": "rm2hpBiN91c7reV+cYKlw7QNkYtME/+js7IMyYBB2Aw=", + "ips": [ + "103.214.20.50", + "2404:f780:0:deb::c1f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "isp": "hostuniversal", + "hostname": "au-adl-wg-302", + "wgpubkey": "e4jouH8n4e8oyi/Z7d6lJLd6975hlPZmnynJeoU+nWM=", + "ips": [ + "103.214.20.130", + "2404:f780:0:dec::c2f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.216.220.50", + "2404:f780:4:dee::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.216.220.66", + "2404:f780:4:def::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-wg-301", + "wgpubkey": "1H/gj8SVNebAIEGlvMeUVC5Rnf274dfVKbyE+v5G8HA=", + "ips": [ + "103.216.220.18", + "2404:f780:4:deb::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "isp": "hostuniversal", + "hostname": "au-bne-wg-302", + "wgpubkey": "z+JG0QA4uNd/wRTpjCqn9rDpQsHKhf493omqQ5rqYAc=", + "ips": [ + "103.216.220.34", + "2404:f780:4:dec::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.108.229.82", + "2406:d501:f:def::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.108.229.98", + "2406:d501:f:dee::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-wg-301", + "wgpubkey": "jUMZWFOgoFGhZjBAavE6jW8VgnnNpL4KUiYFYjc1fl8=", + "ips": [ + "103.108.229.50", + "2406:d501:f:deb::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "isp": "hostuniversal", + "hostname": "au-mel-wg-302", + "wgpubkey": "npTb63jWEaJToBfn0B1iVNbnLXEwwlus5SsolsvUhgU=", + "ips": [ + "103.108.229.66", + "2406:d501:f:dec::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.108.231.82", + "2404:f780:8:def::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.108.231.98", + "2404:f780:8:dee::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-wg-301", + "wgpubkey": "hQXsNk/9R2We0pzP1S9J3oNErEu2CyENlwTdmDUYFhg=", + "ips": [ + "103.108.231.50", + "2404:f780:8:deb::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "isp": "hostuniversal", + "hostname": "au-per-wg-302", + "wgpubkey": "t3Ly8bBdF2gMHzT3d529bVLDw8Jd2/FFG9GXoBEx01g=", + "ips": [ + "103.108.231.66", + "2404:f780:8:dec::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.200.130", + "2001:ac8:84:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.200.66", + "2001:ac8:84:2::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-001", + "wgpubkey": "4JpfHBvthTFOhCK0f5HAbzLXAVcB97uAkuLx7E8kqW0=", + "ips": [ + "146.70.200.2", + "2001:ac8:84:5::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-002", + "wgpubkey": "lUeDAOy+iAhZDuz5+6zh0Co8wZcs3ahdu2jfqQoDW3E=", + "ips": [ + "146.70.141.194", + "2001:ac8:84:6::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "M247", + "hostname": "au-syd-wg-003", + "wgpubkey": "LXuRwa9JRTt2/UtldklKGlj/IVLORITqgET4II4DRkU=", + "ips": [ + "146.70.200.194", + "2001:ac8:84:4::3f" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-101", + "wgpubkey": "NKP4jSvSDZg5HJ3JxpGYMxIYt7QzoxSFrU2F0m1ZxwA=", + "ips": [ + "103.136.147.3", + "2a11:3:500::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-102", + "wgpubkey": "w825smx7YI9/SrwSYGdsuwD1Qt5UsS/CyaGTjwSYljU=", + "ips": [ + "103.136.147.65", + "2a11:3:500::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-103", + "wgpubkey": "poOHsF6v91yURxDrNe/P/adyNUqsRGzhFIioyBYUPww=", + "ips": [ + "103.136.147.129", + "2a11:3:500::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "isp": "xtom", + "hostname": "au-syd-wg-104", + "wgpubkey": "61Ovy3ObuHqllZK/P/5cOWZnY26SY2csmjzVK1q+fFs=", + "ips": [ + "103.136.147.197", + "2a11:3:500::f301" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.116.194", + "2001:ac8:29:87::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-001", + "wgpubkey": "TNrdH73p6h2EfeXxUiLOCOWHcjmjoslLxZptZpIPQXU=", + "ips": [ + "146.70.116.98", + "2001:ac8:29:84::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-002", + "wgpubkey": "ehXBc726YX1N6Dm7fDAVMG5cIaYAFqCA4Lbpl4VWcWE=", + "ips": [ + "146.70.116.130", + "2001:ac8:29:85::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "M247", + "hostname": "at-vie-wg-003", + "wgpubkey": "ddllelPu2ndjSX4lHhd/kdCStaSJOQixs9z551qN6B8=", + "ips": [ + "146.70.116.162", + "2001:ac8:29:86::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "isp": "DataPacket", + "hostname": "at-vie-wg-102", + "wgpubkey": "DANFtH+sFB19BnW1CYEwZ2pOIt7P8nLjSadjpS2rLWE=", + "ips": [ + "185.24.11.159", + "2a02:6ea0:cb1b:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.66", + "2001:ac8:27:90::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.130", + "2001:ac8:27:91::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-101", + "wgpubkey": "GE2WP6hmwVggSvGVWLgq2L10T3WM2VspnUptK5F4B0U=", + "ips": [ + "91.90.123.2", + "2001:ac8:27:88::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-102", + "wgpubkey": "IY+FKw487MEWqMGNyyrT4PnTrJxce8oiGNHT0zifam8=", + "ips": [ + "194.110.115.34", + "2001:ac8:27:89::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "isp": "M247", + "hostname": "be-bru-wg-103", + "wgpubkey": "b5A1ela+BVI+AbNXz7SWekZHvdWWpt3rqUKTJj0SqCU=", + "ips": [ + "194.110.115.2", + "2001:ac8:27:92::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "Qnax", + "hostname": "br-sao-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "149.78.184.210", + "2804:5364:7000:41::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "Qnax", + "hostname": "br-sao-wg-001", + "wgpubkey": "xUDPh13sY127m+7d05SOQAzzNCyufTjaGwCXkWsIjkw=", + "ips": [ + "149.78.184.194", + "2804:5364:7000:40::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "DataPacket", + "hostname": "br-sao-wg-201", + "wgpubkey": "8c9M6w1BQbgMVr/Zgrj4GwSdU6q3qfQfWs17kMLC9y4=", + "ips": [ + "169.150.198.66", + "2a02:6ea0:d00e:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "Sao Paulo", + "isp": "DataPacket", + "hostname": "br-sao-wg-202", + "wgpubkey": "jWURoz8SLBUlRTQnAFTA/LDZUTpvlO0ghiVWH7MgaHQ=", + "ips": [ + "169.150.198.79", + "2a02:6ea0:d00e:2::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.188.66", + "2001:ac8:30:55::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.188.2", + "2001:ac8:30:54::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-wg-001", + "wgpubkey": "J8KysHmHZWqtrVKKOppneDXSks/PDsB1XTlRHpwiABA=", + "ips": [ + "146.70.188.130", + "2001:ac8:30:56::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "isp": "M247", + "hostname": "bg-sof-wg-002", + "wgpubkey": "dg+Fw7GnKvDPBxFpnj1KPoNIu1GakuVoDJjKRni+pRU=", + "ips": [ + "146.70.188.194", + "2001:ac8:30:57::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Calgary", + "isp": "techfutures", + "hostname": "ca-yyc-wg-201", + "wgpubkey": "L4RcVwk0cJJp2u8O9+86sdyUpxfYnr+ME57Ex0RY1Wo=", + "ips": [ + "38.240.225.36", + "2606:9580:438:32::b01f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Calgary", + "isp": "techfutures", + "hostname": "ca-yyc-wg-202", + "wgpubkey": "u9J/fzrSqM2aEFjTs91KEKgBsaQ/I/4XkIP1Z/zYkXA=", + "ips": [ + "38.240.225.68", + "2606:9580:438:64::b02f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.66", + "2a0d:5600:9:17::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.133.182.194", + "2a0d:5600:9:18::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-001", + "wgpubkey": "TUCaQc26/R6AGpkDUr8A8ytUs/e5+UVlIVujbuBwlzI=", + "ips": [ + "146.70.198.66", + "2a0d:5600:9:c::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-002", + "wgpubkey": "7X6zOgtJfJAK8w8C3z+hekcS9Yf3qK3Bp4yx56lqxBQ=", + "ips": [ + "146.70.198.130", + "2a0d:5600:9:d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-003", + "wgpubkey": "57Zu2qPzRScZWsoC2NhXgz0FiC0HiKkbEa559sbxB3k=", + "ips": [ + "146.70.198.194", + "2a0d:5600:9:e::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "isp": "M247", + "hostname": "ca-mtr-wg-004", + "wgpubkey": "Cc5swfQ9f2tAgLduuIqC3bLbwDVoOFkkETghsE6/twA=", + "ips": [ + "188.241.176.194", + "2a0d:5600:9:16::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.193", + "2a02:6ea0:de08:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.206", + "2a02:6ea0:de08:4::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.132.34", + "2607:9000:6000:12::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.132.66", + "2607:9000:6000:13::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-wg-001", + "wgpubkey": "HjcUGVDXWdrRkaKNpc/8494RM5eICO6DPyrhCtTv9Ws=", + "ips": [ + "178.249.214.2", + "2a02:6ea0:de08:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "DataPacket", + "hostname": "ca-tor-wg-002", + "wgpubkey": "iqZSgVlU9H67x/uYE5xsnzLCDXf7FL9iMfyKfl6WsV8=", + "ips": [ + "178.249.214.15", + "2a02:6ea0:de08:2::a29f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-101", + "wgpubkey": "hfvZctxTQukC6lMJ4liGTg1JECT4XqEKpTNPk84k2As=", + "ips": [ + "198.44.140.130", + "2607:9000:6000:18::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-102", + "wgpubkey": "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=", + "ips": [ + "198.54.132.98", + "2607:9000:6000:14::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-103", + "wgpubkey": "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=", + "ips": [ + "198.54.132.226", + "2607:9000:6000:17::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-104", + "wgpubkey": "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=", + "ips": [ + "198.54.132.130", + "2607:9000:6000:15::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-105", + "wgpubkey": "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=", + "ips": [ + "198.44.140.162", + "2607:9000:6000:19::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-106", + "wgpubkey": "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=", + "ips": [ + "198.54.132.162", + "2607:9000:6000:16::a26f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "isp": "Tzulo", + "hostname": "ca-tor-wg-107", + "wgpubkey": "jVgDxCstCo0NRZ/dB9fpQiu+dfYK2v3HOa4B6MkLaQA=", + "ips": [ + "198.44.140.194", + "2607:9000:6000:20::a07f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.132", + "2606:9580:103:10::c01f" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "104.193.135.164", + "2606:9580:103:11::c02f" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-wg-201", + "wgpubkey": "hYbb2NQKB0g2RefngdHl3bfaLImUuzeVIv2i1VCVIlQ=", + "ips": [ + "104.193.135.196", + "2606:9580:103:e::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "techfutures", + "hostname": "ca-van-wg-202", + "wgpubkey": "wGqcNxXH7A3bSptHZo7Dfmymy/Y30Ea/Zd47UkyEbzo=", + "ips": [ + "104.193.135.100", + "2606:9580:103:f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "DataPacket", + "hostname": "ca-van-wg-301", + "wgpubkey": "BzYINbABQiSbRLDZIlmgsLgL88offQJCEH3JkcjRGUk=", + "ips": [ + "149.22.81.194", + "2a02:6ea0:5100:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "isp": "DataPacket", + "hostname": "ca-van-wg-302", + "wgpubkey": "EOOkxbmbdHmjb8F45s33yKrIzKWH6lGIgJf2kTOxwFw=", + "ips": [ + "149.22.81.207", + "2a02:6ea0:5100:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "isp": "DataPacket", + "hostname": "cl-scl-wg-001", + "wgpubkey": "03qeK7CSn6wcMzfqilmVt6Tf81VZIPWnSG04euSkyxM=", + "ips": [ + "149.88.104.2", + "2a02:6ea0:fc02:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "isp": "DataPacket", + "hostname": "cl-scl-wg-002", + "wgpubkey": "rn9O+cXj0WQgZAkGCoYvvWgzaB5GcOaVfke3WKsp1Ro=", + "ips": [ + "149.88.104.15", + "2a02:6ea0:fc02:3::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "isp": "DataPacket", + "hostname": "co-bog-wg-001", + "wgpubkey": "iaMa84nCHK+v4TnQH4h2rxkqwwxemORXM12VbJDRZSU=", + "ips": [ + "154.47.16.34", + "2a02:6ea0:f101:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "isp": "DataPacket", + "hostname": "co-bog-wg-002", + "wgpubkey": "IZDwbG9C/NrOOGVUrn+fDaPr8ZwD/yhvST7XWGk1ln8=", + "ips": [ + "154.47.16.47", + "2a02:6ea0:f101:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "isp": "DataPacket", + "hostname": "hr-zag-wg-001", + "wgpubkey": "PJvsgLogdAgZiVSxwTDyk9ri02mLZGuElklHShIjDGM=", + "ips": [ + "154.47.29.2", + "2a02:6ea0:f401:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "isp": "DataPacket", + "hostname": "hr-zag-wg-002", + "wgpubkey": "V0iDOyLSj870sjGGenDvAWqJudlPKDc212cQN85snEo=", + "ips": [ + "154.47.29.15", + "2a02:6ea0:f401:2::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.129.162", + "2001:ac8:33:e::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.129.194", + "2001:ac8:33:f::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-wg-101", + "wgpubkey": "wLBxTaISMJ++vUht4hlAOUog9fhZxDql16TaYWaboDc=", + "ips": [ + "146.70.129.98", + "2001:ac8:33:c::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "M247", + "hostname": "cz-prg-wg-102", + "wgpubkey": "cRCJ0vULwKRbTfzuo9W+fIt0fJGQE7DLvojIiURIpiI=", + "ips": [ + "146.70.129.130", + "2001:ac8:33:d::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "DataPacket", + "hostname": "cz-prg-wg-201", + "wgpubkey": "5FZW+fNA2iVBSY99HFl+KjGc9AFVNE+UFAedLNhu8lc=", + "ips": [ + "178.249.209.162", + "2a02:6ea0:c201:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "isp": "DataPacket", + "hostname": "cz-prg-wg-202", + "wgpubkey": "ReGrGPKDHri64D7qeXmgcLzjsTJ0B/yM7eekFz1P/34=", + "ips": [ + "178.249.209.175", + "2a02:6ea0:c201:1::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "141.98.254.71", + "2a03:1b20:8:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.129.56.81", + "2a03:1b20:8:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "146.70.197.66", + "2001:ac8:37:95::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "146.70.197.2", + "2001:ac8:37:94::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-wg-001", + "wgpubkey": "egl+0TkpFU39F5O6r6+hIBMPQLOa8/t5CymOZV6CC3Y=", + "ips": [ + "45.129.56.67", + "2a03:1b20:8:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "31173", + "owned": true, + "hostname": "dk-cph-wg-002", + "wgpubkey": "R5LUBgM/1UjeAR4lt+L/yA30Gee6/VqVZ9eAB3ZTajs=", + "ips": [ + "45.129.56.68", + "2a03:1b20:8:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-wg-401", + "wgpubkey": "Jjml2TSqKlgzW6UzPiJszaun743QYpyl5jQk8UOQYg0=", + "ips": [ + "146.70.197.194", + "2001:ac8:37:97::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "isp": "M247", + "hostname": "dk-cph-wg-402", + "wgpubkey": "ML0NcFPqy+x+ZJg7y9vfh77hXAOtgueIqp1j+CJVrXM=", + "ips": [ + "146.70.197.130", + "2001:ac8:37:96::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-001", + "wgpubkey": "bdq37KtfoG1Tm7yQcfitdRyGeZOn/c7PwLN+LgG/6nA=", + "ips": [ + "194.127.167.67", + "2a07:d880:2::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-002", + "wgpubkey": "vqGmmcERr/PAKDzy6Dxax8g4150rC93kmKYabZuAzws=", + "ips": [ + "194.127.167.87", + "2a07:d880:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "isp": "xtom", + "hostname": "ee-tll-wg-003", + "wgpubkey": "+8dUgpD7YA4wMPnRQkO7EI7AeYd30QPMKh/hOaaGIXY=", + "ips": [ + "194.127.167.107", + "2a07:d880:2::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.171", + "2a0c:f040:0:2790::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.172", + "2a0c:f040:0:2790::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.173", + "2a0c:f040:0:2790::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.174", + "2a0c:f040:0:2790::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.175", + "2a0c:f040:0:2790::5f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-006", + "tcp": true, + "udp": true, + "ips": [ + "185.204.1.176", + "2a0c:f040:0:2790::6f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-ovpn-007", + "tcp": true, + "udp": true, + "ips": [ + "185.212.149.201", + "2a0c:f040:0:2790::7f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "193.138.7.217", + "2a02:ed04:3581:5::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "193.138.7.237", + "2a02:ed04:3581:6::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-wg-002", + "wgpubkey": "8BbP3GS01dGkN5ENk1Rgedxfd80friyVOABrdMgD3EY=", + "ips": [ + "185.204.1.211", + "2a0c:f040:0:2790::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Creanova", + "owned": true, + "hostname": "fi-hel-wg-003", + "wgpubkey": "FKodo9V6BehkNphL+neI0g4/G/cjbZyYhoptSWf3Si4=", + "ips": [ + "185.204.1.219", + "2a0c:f040:0:2790::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-101", + "wgpubkey": "2S3G7Sm9DVG6+uJtlDu4N6ed5V97sTbA5dCSkUelWyk=", + "ips": [ + "193.138.7.137", + "2a02:ed04:3581:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-102", + "wgpubkey": "xeHVhXxyyFqUEE+nsu5Tzd/t9en+++4fVFcSFngpcAU=", + "ips": [ + "193.138.7.157", + "2a02:ed04:3581:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-103", + "wgpubkey": "Mlvu14bSD6jb7ajH/CiJ/IO8W+spB8H6VmdGkFGOcUQ=", + "ips": [ + "193.138.7.177", + "2a02:ed04:3581:3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "isp": "Blix", + "owned": true, + "hostname": "fi-hel-wg-104", + "wgpubkey": "keRQGHUbYP2qgDTbYqOsI9byfNb0LOpTZ/KdC67cJiA=", + "ips": [ + "193.138.7.197", + "2a02:ed04:3581:4::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Bordeaux", + "isp": "HostRoyale", + "hostname": "fr-bod-wg-002", + "wgpubkey": "ZBOJ2w5DqG35T1zjV/F1UgrXkDhNxObnwdm2FUwyu2o=", + "ips": [ + "45.134.79.97", + "2a06:3040:4:610::f101" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "isp": "DataPacket", + "hostname": "fr-mrs-wg-001", + "wgpubkey": "MOk2OTDEaFFN4vsCAgf+qQi6IlY99nCeDEzpXyo65wg=", + "ips": [ + "138.199.15.162", + "2a02:6ea0:dc05::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "isp": "DataPacket", + "hostname": "fr-mrs-wg-002", + "wgpubkey": "Z0LEgZIPhNj0+/VWknU3roHlVI3qqAfoV6th9NSC0F0=", + "ips": [ + "138.199.15.146", + "2a02:6ea0:dc06::a16f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.81", + "2a03:1b20:9:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.82", + "2a03:1b20:9:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "193.32.126.83", + "2a03:1b20:9:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.184.130", + "2001:ac8:25:3c::1f" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.184.194", + "2001:ac8:25:3d::2f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-001", + "wgpubkey": "ov323GyDOEHLT0sNRUUPYiE3BkvFDjpmi1a4fzv49hE=", + "ips": [ + "193.32.126.66", + "2a03:1b20:9:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-002", + "wgpubkey": "R5Ve+PJD24QjNXi2Dim7szwCiOLnv+6hg+WyTudAYmE=", + "ips": [ + "193.32.126.67", + "2a03:1b20:9:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-003", + "wgpubkey": "w4r/o6VImF7l0/De3JpOGnpzjAFv9wcCu8Rop5eZkWc=", + "ips": [ + "193.32.126.68", + "2a03:1b20:9:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-004", + "wgpubkey": "E/KjR7nlFouuRXh1pwGDr7iK2TAZ6c4K0LjjmA1A2Tc=", + "ips": [ + "193.32.126.69", + "2a03:1b20:9:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-005", + "wgpubkey": "cmqtSjWUa4/0bENQDKxdr0vQqf4nFVDodarHm0Pc0hY=", + "ips": [ + "193.32.126.70", + "2a03:1b20:9:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "31173", + "owned": true, + "hostname": "fr-par-wg-006", + "wgpubkey": "x0k8A2S7Dx7VNX2Yo2qRPZW/VefIogID5bVynklBugE=", + "ips": [ + "193.32.126.84", + "2a03:1b20:9:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-wg-101", + "wgpubkey": "e2uj1eu/ZuTPqfY+9ULa6KFPRGLkSWCaooXBg9u9igA=", + "ips": [ + "146.70.184.2", + "2001:ac8:25:3a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "M247", + "hostname": "fr-par-wg-102", + "wgpubkey": "TR0Gedkbp2mRRXKZ7VB7qaAvJHuQlwaaLFc4fxb4q2M=", + "ips": [ + "146.70.184.66", + "2001:ac8:25:3b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "DataPacket", + "hostname": "fr-par-wg-301", + "wgpubkey": "gCYpOei4ZYsWJ3mOgCdQo6bnsRgdLNJR9SWEA69U7Gw=", + "ips": [ + "95.173.222.2", + "2a02:6ea0:1901:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "isp": "DataPacket", + "hostname": "fr-par-wg-302", + "wgpubkey": "CpbLl0WVeiW+YbJKNod5khzAI03D2hX2dhq2CCYc2Xc=", + "ips": [ + "95.173.222.31", + "2a02:6ea0:1901:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.248.72", + "2a03:1b20:b:f011::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-001", + "wgpubkey": "0qSP0VxoIhEhRK+fAHVvmfRdjPs2DmmpOCNLFP/7cGw=", + "ips": [ + "193.32.248.66", + "2a03:1b20:b:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-002", + "wgpubkey": "8ov1Ws0ut3ixWDh9Chp7/WLVn9qC6/WVHtcBcuWBlgo=", + "ips": [ + "193.32.248.67", + "2a03:1b20:b:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-003", + "wgpubkey": "USrMatdHiCL5AKdVMpHuYgWuMiK/GHPwRB3Xx00FhU0=", + "ips": [ + "193.32.248.68", + "2a03:1b20:b:f011::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-004", + "wgpubkey": "6PchzRRxzeeHdNLyn3Nz0gmN7pUyjoZMpKmKzJRL4GM=", + "ips": [ + "193.32.248.69", + "2a03:1b20:b:f011::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-005", + "wgpubkey": "I4Y7e8LrtBC/7DLpUgRd5k+IZk+whOFVAZgbSivoiBI=", + "ips": [ + "193.32.248.70", + "2a03:1b20:b:f011::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-006", + "wgpubkey": "eprzkkkSbXCANngQDo305DIAvkKAnZaN71IpTNaOoTk=", + "ips": [ + "193.32.248.71", + "2a03:1b20:b:f011::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "isp": "31173", + "owned": true, + "hostname": "de-ber-wg-007", + "wgpubkey": "/ejdxiEsmYbeXXCN6UzvzJ0U/mLuB6baIfQRYKYHWzU=", + "ips": [ + "193.32.248.75", + "2a03:1b20:b:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-001", + "wgpubkey": "ku1NYeOAGbY65YL/JKZhrqVzDJKXQiVj9USXbfkOBA0=", + "ips": [ + "185.254.75.3", + "2a03:d9c0:3000::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-002", + "wgpubkey": "TPAIPTgu9jIitgX1Bz5xMCZJ9pRRZTdtZEOIxArO0Hc=", + "ips": [ + "185.254.75.4", + "2a03:d9c0:3000::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Dusseldorf", + "isp": "xtom", + "hostname": "de-dus-wg-003", + "wgpubkey": "XgSe9UwEV4JJNPPzFFOVYS6scMTL4DeNlwqBl32lDw0=", + "ips": [ + "185.254.75.5", + "2a03:d9c0:3000::a22f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.66", + "2a03:1b20:6:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.67", + "2a03:1b20:6:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.68", + "2a03:1b20:6:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.69", + "2a03:1b20:6:f011::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.213.155.70", + "2a03:1b20:6:f011::5f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.117.66", + "2001:ac8:20:271::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.117.98", + "2001:ac8:20:272::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-001", + "wgpubkey": "HQHCrq4J6bSpdW1fI5hR/bvcrYa6HgGgwaa5ZY749ik=", + "ips": [ + "185.213.155.73", + "2a03:1b20:6:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-002", + "wgpubkey": "s1c/NsfnqnwQSxao70DY4Co69AFT9e0h88IFuMD5mjs=", + "ips": [ + "185.213.155.74", + "2a03:1b20:6:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-003", + "wgpubkey": "vVQKs2TeTbdAvl3sH16UWLSESncXAj0oBaNuFIUkLVk=", + "ips": [ + "185.209.196.73", + "2a03:1b20:6:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-004", + "wgpubkey": "tzYLWgBdwrbbBCXYHRSoYIho4dHtrm+8bdONU1I8xzc=", + "ips": [ + "185.209.196.74", + "2a03:1b20:6:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-005", + "wgpubkey": "tpobOO6t18CzHjOg0S3RlZJMxd2tz4+BnRYS7NrjTnM=", + "ips": [ + "185.209.196.75", + "2a03:1b20:6:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-006", + "wgpubkey": "nAF0wrLG2+avwQfqxnXhBGPUBCvc3QCqWKH4nK5PfEU=", + "ips": [ + "185.209.196.76", + "2a03:1b20:6:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-007", + "wgpubkey": "mTmrSuXmTnIC9l2Ur3/QgodGrVEhhIE3pRwOHZpiYys=", + "ips": [ + "185.209.196.77", + "2a03:1b20:6:f011::f601" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-008", + "wgpubkey": "TOS3U/dJPzPnk/qsAx6gHxRVIC2wI5l+tAWaJY2mXzY=", + "ips": [ + "185.209.196.78", + "2a03:1b20:6:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "31173", + "owned": true, + "hostname": "de-fra-wg-009", + "wgpubkey": "flq7zR8W5FxouHBuZoTRHY0A0qFEMQZF5uAgV4+sHVw=", + "ips": [ + "185.213.155.72", + "2a03:1b20:6:f011::f901" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-101", + "wgpubkey": "Voioje9Gfb7aTiK2/H6VyHFK1AFap1glIX0Z1EX2mRQ=", + "ips": [ + "146.70.117.162", + "2001:ac8:20:274::a99f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-102", + "wgpubkey": "ydXFN45/kROELJrF6id+uIrnS5DvTKSCkZDjfL9De2Q=", + "ips": [ + "146.70.117.194", + "2001:ac8:20:275::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-103", + "wgpubkey": "KkShcqgwbkX2A9n1hhST6qu+m3ldxdJ2Lx8Eiw6mdXw=", + "ips": [ + "146.70.117.226", + "2001:ac8:20:276::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-104", + "wgpubkey": "uKTC5oP/zfn6SSjayiXDDR9L82X0tGYJd5LVn5kzyCc=", + "ips": [ + "146.70.107.194", + "2001:ac8:20:277::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-105", + "wgpubkey": "Sttn2cr14dvIcCrE8qdlRGHXriqvTyvQWC7dzujH/iM=", + "ips": [ + "146.70.117.2", + "2001:ac8:20:269::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "M247", + "hostname": "de-fra-wg-106", + "wgpubkey": "9ldhvN7r4xGZkGehbsNfYb5tpyTJ5KBb5B3TbxCwklw=", + "ips": [ + "146.70.117.34", + "2001:ac8:20:270::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-301", + "wgpubkey": "dNKRyh2MkJGZdg9jyUJtf9w5GHjX3+/fYatg+xi9TUM=", + "ips": [ + "194.36.25.3", + "2a07:fe00:1::a23f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-302", + "wgpubkey": "A3DbIgPycEJhJ1fQ4zzcajLOKTZsJMeawjdPQiWav20=", + "ips": [ + "194.36.25.18", + "2a07:fe00:1::a24f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-303", + "wgpubkey": "2P+9SjwVCEnMDnBiYfZtQLq9p2S2TFhCM0xJBoevYk4=", + "ips": [ + "194.36.25.33", + "2a07:fe00:1::a25f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "xtom", + "hostname": "de-fra-wg-304", + "wgpubkey": "VgNcwWy8MRhfEZY+XSisDM1ykX+uXlHQScOLqqGMLkc=", + "ips": [ + "194.36.25.48", + "2a07:fe00:1::a26f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-401", + "wgpubkey": "AbM8fnQWmmX6Nv0Tz68LigPbGkamJgNjxgzPfENOdXU=", + "ips": [ + "169.150.201.2", + "2a02:6ea0:c762:1::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-402", + "wgpubkey": "6/PBbPtoeWpJA+HZc9Iqg/PPQWD7mGVvZdwQlr1vtRk=", + "ips": [ + "169.150.201.15", + "2a02:6ea0:c762:2::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "isp": "DataPacket", + "hostname": "de-fra-wg-403", + "wgpubkey": "HWzSNMbQOQafkVp68B7aLRirhNJ6x5Wjw8/y7oUuHW0=", + "ips": [ + "169.150.201.28", + "2a02:6ea0:c762:3::a37f" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "149.102.246.28", + "2a02:6ea0:f501:4::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "149.102.246.41", + "2a02:6ea0:f501:5::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-wg-101", + "wgpubkey": "li+thkAD7s6IZDgUoiKw4YSjM/U1q203PuthMzIJIU0=", + "ips": [ + "149.102.246.2", + "2a02:6ea0:f501:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "isp": "DataPacket", + "hostname": "gr-ath-wg-102", + "wgpubkey": "OL0gbjlNt1s26CDQjRP9wgMZbgYff7/xyUI8ypOn01s=", + "ips": [ + "149.102.246.15", + "2a02:6ea0:f501:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "103.125.233.33", + "2403:2c81:1000::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "103.125.233.48", + "2403:2c81:1000::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "146.70.224.130", + "2001:ac8:a:1a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-wg-201", + "wgpubkey": "Oxh13dmwY6nNUa5rVHr7sLiFOj0fjzsaAUAUV87/nGs=", + "ips": [ + "103.125.233.18", + "2403:2c81:1000::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "xtom", + "hostname": "hk-hkg-wg-202", + "wgpubkey": "zmhMPHfkgo+uQxP+l919Gw7cj5NTatg9nMU37eEUWis=", + "ips": [ + "103.125.233.3", + "2403:2c81:1000::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-wg-301", + "wgpubkey": "qbvU06SBHXnqMnpb49rnE0yC4AOWQcWl2bEScu18dh8=", + "ips": [ + "146.70.224.2", + "2001:ac8:a:f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "isp": "M247", + "hostname": "hk-hkg-wg-302", + "wgpubkey": "7FADgmd9KyAVs3eFJE/ob9tV3E6m/klONEEIOfCoPTU=", + "ips": [ + "146.70.224.66", + "2001:ac8:a:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.196.66", + "2001:ac8:26:53::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.196.2", + "2001:ac8:26:52::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-wg-101", + "wgpubkey": "u+h0GmQJ8UBaMTi2BP9Ls6UUszcGC51y6vTmNr/y+AU=", + "ips": [ + "146.70.196.194", + "2001:ac8:26:55::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "isp": "M247", + "hostname": "hu-bud-wg-102", + "wgpubkey": "iEWLm2F4xV013ZETeZcT1dyUd5O+JnyndHso8RP8txw=", + "ips": [ + "146.70.196.130", + "2001:ac8:26:54::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "isp": "Zenlayer", + "hostname": "id-jpu-wg-001", + "wgpubkey": "XYQvOrRqu8j521Hy/8+jGRDLZoSAssOvCectyKz350Y=", + "ips": [ + "129.227.46.130", + "2602:ffe4:c0d:801d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "isp": "Zenlayer", + "hostname": "id-jpu-wg-002", + "wgpubkey": "gWsH1w7lTYbsS+WxsE6w6vtXSAJoHM6PhDX5DFMYM1k=", + "ips": [ + "129.227.46.162", + "2602:ffe4:c0d:801e::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.189.130", + "2001:ac8:88:86::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.189.194", + "2001:ac8:88:87::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-wg-101", + "wgpubkey": "lHrukA9+vn7Jjzx2Nb/1NQ0WiaiKppEqVxrGT5X1RFQ=", + "ips": [ + "146.70.189.2", + "2001:ac8:88:84::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "isp": "M247", + "hostname": "ie-dub-wg-102", + "wgpubkey": "8YhrVbViPmYFZ2KJF2pR7d10EaBz8PJbPtoEiAs1IXA=", + "ips": [ + "146.70.189.66", + "2001:ac8:88:85::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-101", + "wgpubkey": "XOedjVJaT2IrEDJbzvtZeL4hP5uPRHzFxvD1cwVwUFo=", + "ips": [ + "169.150.227.197", + "2a02:6ea0:3b00:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-102", + "wgpubkey": "UNeML4rXjvOerAstTNf4gG5B+OfjVzjSQrWE6mrswD0=", + "ips": [ + "169.150.227.210", + "2a02:6ea0:3b00:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "isp": "DataPacket", + "hostname": "il-tlv-wg-103", + "wgpubkey": "11FJ/NY3jaAw1PSYG9w7bxsMxAzlI+1p8/juh1LJPT0=", + "ips": [ + "169.150.227.222", + "2a02:6ea0:3b00:3::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.225.130", + "2001:ac8:24:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.225.194", + "2001:ac8:24:1a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-001", + "wgpubkey": "Sa9fFFthvihGMO4cPExJ7ZaWSHNYoXmOqZMvJsaxOVk=", + "ips": [ + "178.249.211.66", + "2a02:6ea0:d509:1::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-002", + "wgpubkey": "RJ7e37UEP6hfyLQM/lJ2K5wcZOJQFhm2VhFaBniH1kg=", + "ips": [ + "178.249.211.79", + "2a02:6ea0:d509:2::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "DataPacket", + "hostname": "it-mil-wg-003", + "wgpubkey": "WOyki5Gzoez07X7D3jAhG68hpoiYIWAx1yypVbkQaVY=", + "ips": [ + "178.249.211.92", + "2a02:6ea0:d509:3::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-wg-201", + "wgpubkey": "XHwDoIVZGoVfUYbfcPiRp1LhaOCDc0A3QrS72i3ztBw=", + "ips": [ + "146.70.225.2", + "2001:ac8:24:17::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "isp": "M247", + "hostname": "it-mil-wg-202", + "wgpubkey": "y5raL0QZx2CpOozrL+Knmjj7nnly3JKatFnxynjXpE0=", + "ips": [ + "146.70.225.66", + "2001:ac8:24:18::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Palermo", + "isp": "DataPacket", + "hostname": "it-pmo-wg-001", + "wgpubkey": "cE6s9wV8jfAa84sgXWJ5C4d769m5Ki/XA3rxPdMWhVw=", + "ips": [ + "149.22.91.66", + "2a02:6ea0:4f00::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Palermo", + "isp": "DataPacket", + "hostname": "it-pmo-wg-002", + "wgpubkey": "bGtOejMzRDKzFR1gNBAi185dkr/5RtN+QiC8EVl4kU4=", + "ips": [ + "149.22.91.79", + "2a02:6ea0:4f00::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-001", + "wgpubkey": "uhbuY1A7g0yNu0lRhLTi020kYeAx34ED30BA5DQRHFo=", + "ips": [ + "194.114.136.3", + "2400:ddc0:a00b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-002", + "wgpubkey": "wzGXxsYOraTCPZuRxfXVTNmoWsRkMFLqMqDxI4PutBg=", + "ips": [ + "194.114.136.34", + "2400:ddc0:a00b::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-003", + "wgpubkey": "Pt18GnBffElW0sqnd6IDRr5r0B/NDezy6NicoPI+fG8=", + "ips": [ + "194.114.136.65", + "2400:ddc0:a00b::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "isp": "xtom", + "hostname": "jp-osa-wg-004", + "wgpubkey": "JpDAtRuR39GLFKoQNiKvpzuJ65jOOLD7h85ekZ3reVc=", + "ips": [ + "194.114.136.96", + "2400:ddc0:a00b::f301" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.201.130", + "2001:ac8:40:1d::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.201.194", + "2001:ac8:40:1e::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "DataPacket", + "hostname": "jp-tyo-wg-001", + "wgpubkey": "AUo2zhQ0wCDy3/jmZgOe4QMncWWqrdME7BbY2UlkgyI=", + "ips": [ + "138.199.21.239", + "2a02:6ea0:d31c::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "DataPacket", + "hostname": "jp-tyo-wg-002", + "wgpubkey": "zdlqydCbeR7sG1y5L8sS65X1oOtRKvfVbAuFgqEGhi4=", + "ips": [ + "138.199.21.226", + "2a02:6ea0:d31b::a14f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-201", + "wgpubkey": "0j7u9Vd+EsqFs8XeV/T/ZM7gE+TWgEsYCsqcZUShvzc=", + "ips": [ + "146.70.138.194", + "2001:ac8:40:11::b01f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-202", + "wgpubkey": "yLKGIH/eaNUnrOEPRtgvC3PSMTkyAFK/0t8lNjam02k=", + "ips": [ + "146.70.201.2", + "2001:ac8:40:13::b02f" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "isp": "M247", + "hostname": "jp-tyo-wg-203", + "wgpubkey": "tgTYDEfbDgr35h6hYW01MH76CJrwuBvbQFhyVsazEic=", + "ips": [ + "146.70.201.66", + "2001:ac8:40:14::b03f" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "isp": "Makonix", + "hostname": "lv-rix-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "31.170.22.2", + "2a00:c68:0:cbcf::1f" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "isp": "Makonix", + "hostname": "lv-rix-wg-001", + "wgpubkey": "z0gUPGRwzmOcFLU6b2Z3dCJUJr2/9OvxujUbjFSTB0Q=", + "ips": [ + "31.170.22.15", + "2a00:c68:0:cbd0::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-001", + "wgpubkey": "yxyntWsANEwxeR0pOPNAcfWY7zEVICZe9G+GxortzEY=", + "ips": [ + "149.88.22.129", + "2a02:6ea0:f803::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-002", + "wgpubkey": "kGkalo3qvm8MynKdzwW7CGBYXkqRwGhHfYVssgKOWnU=", + "ips": [ + "149.88.22.142", + "2a02:6ea0:f803:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-003", + "wgpubkey": "hRamkTwXw0usPFDorPl2vf1qP8chczEBcqeV5bA1QDA=", + "ips": [ + "149.88.22.155", + "2a02:6ea0:f803:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Queretaro", + "isp": "DataPacket", + "hostname": "mx-qro-wg-004", + "wgpubkey": "Q3yqhnYHK/bFjrd6yqti8gSV1gzOwvnl5N5tXuUxMyk=", + "ips": [ + "149.88.22.168", + "2a02:6ea0:f803:3::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.71", + "2a03:1b20:3:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.72", + "2a03:1b20:3:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.73", + "2a03:1b20:3:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.74", + "2a03:1b20:3:f011::4f" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.65.134.75", + "2a03:1b20:3:f011::5f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-001", + "wgpubkey": "UrQiI9ISdPPzd4ARw1NHOPKKvKvxUhjwRjaI0JpJFgM=", + "ips": [ + "193.32.249.66", + "2a03:1b20:3:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-002", + "wgpubkey": "DVui+5aifNFRIVDjH3v2y+dQ+uwI+HFZOd21ajbEpBo=", + "ips": [ + "185.65.134.82", + "2a03:1b20:3:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-003", + "wgpubkey": "if4HpJZbN7jft5E9R9wAoTcggIu6eZhgYDvqxnwrXic=", + "ips": [ + "185.65.134.83", + "2a03:1b20:3:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-005", + "wgpubkey": "33BoONMGCm2vknq2eq72eozRsHmHQY6ZHEEZ4851TkY=", + "ips": [ + "193.32.249.70", + "2a03:1b20:3:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-006", + "wgpubkey": "xpZ3ZDEukbqKQvdHwaqKMUhsYhcYD3uLPUh1ACsVr1s=", + "ips": [ + "185.65.134.86", + "2a03:1b20:3:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "31173", + "owned": true, + "hostname": "nl-ams-wg-007", + "wgpubkey": "Os/BwxAIWehlypQ8QjrKVEK5PhY84b413+U3YWZJYXQ=", + "ips": [ + "185.65.134.76", + "2a03:1b20:3:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-101", + "wgpubkey": "m9w2Fr0rcN6R1a9HYrGnUTU176rTZIq2pcsovPd9sms=", + "ips": [ + "92.60.40.194", + "2a0c:59c0:18::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-102", + "wgpubkey": "uUYbYGKoA6UBh1hfkAz5tAWFv4SmteYC9kWh7/K6Ah0=", + "ips": [ + "92.60.40.209", + "2a0c:59c0:18::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "xtom", + "hostname": "nl-ams-wg-103", + "wgpubkey": "CE7mlfDJ4gpwLPB/CyPfIusITnGZwDI9v4IlVueGT24=", + "ips": [ + "92.60.40.224", + "2a0c:59c0:18::a22f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-201", + "wgpubkey": "vt+yTcpxWvH8qiSncd1wSPV/78vt2aE2BBU8ZbG7x1Q=", + "ips": [ + "169.150.196.2", + "2a02:6ea0:c034:1::a30f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-202", + "wgpubkey": "BChJDLOwZu9Q1oH0UcrxcHP6xxHhyRbjrBUsE0e07Vk=", + "ips": [ + "169.150.196.15", + "2a02:6ea0:c034:2::a31f" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "isp": "DataPacket", + "hostname": "nl-ams-wg-203", + "wgpubkey": "M5z8TKjJYpIJ3FXoXy7k58IUaoVro2tWMKSgC5WIqR8=", + "ips": [ + "169.150.196.28", + "2a02:6ea0:c034:3::a32f" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "103.75.11.82", + "2404:f780:5:dee::c1f" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "103.75.11.98", + "2404:f780:5:def::c2f" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-wg-301", + "wgpubkey": "BOEOP01bcND1a0zvmOxRHPB/ObgjgPIzBJE5wbm7B0M=", + "ips": [ + "103.75.11.50", + "2404:f780:5:deb::f001" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "isp": "hostuniversal", + "hostname": "nz-akl-wg-302", + "wgpubkey": "80WGWgFP9q3eU16MuLJISB1fzAu2LM2heschmokVSVU=", + "ips": [ + "103.75.11.66", + "2404:f780:5:dec::c02f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.11", + "2a02:20c8:4124::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.12", + "2a02:20c8:4124::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.13", + "2a02:20c8:4124::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "91.90.44.14", + "2a02:20c8:4124::4f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-001", + "wgpubkey": "jOUZjMq2PWHDzQxu3jPXktYB7EKeFwBzGZx56cTXXQg=", + "ips": [ + "176.125.235.71", + "2a02:20c8:4124::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-002", + "wgpubkey": "IhhpKphSFWpwja1P4HBctZ367G3Q53EgdeFGZro29Tc=", + "ips": [ + "176.125.235.72", + "2a02:20c8:4124::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-003", + "wgpubkey": "zOBWmQ3BEOZKsYKbj4dC2hQjxCbr3eKa6wGWyEDYbC4=", + "ips": [ + "176.125.235.73", + "2a02:20c8:4124::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-004", + "wgpubkey": "veeEoYS9a2T6K8WMs/MvRCdNJG580XbhnLfbFjp3B0M=", + "ips": [ + "176.125.235.74", + "2a02:20c8:4124::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-005", + "wgpubkey": "ScQu/AqslSPwpXMIEyimrYZWTIdJJXLLeXrijWOF0SE=", + "ips": [ + "178.255.149.140", + "2a02:20c8:4124::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-006", + "wgpubkey": "LBlNBTuT7gNEZoAuxO0PTVPpaDuYA7nAeCyMpg9Agyo=", + "ips": [ + "178.255.149.165", + "2a02:20c8:4124::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-007", + "wgpubkey": "A0gisFM9hOZB0ezDcSIg2WwnyeprHV/dmb5JnzST0EE=", + "ips": [ + "91.90.44.15", + "2a02:20c8:4124::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "isp": "Blix", + "owned": true, + "hostname": "no-osl-wg-008", + "wgpubkey": "/4+nwTRYLjT2UK0g3+S4sjE4oaIQiS6L2b/lpO2bfwI=", + "ips": [ + "91.90.44.18", + "2a02:20c8:4124::f801" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "194.127.199.114", + "2a02:20c8:4120::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "194.127.199.145", + "2a02:20c8:4120::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-001", + "wgpubkey": "kduYoE/b1mA2Pjszx1CzE4Lktsdc2zsUU8Relul2m2U=", + "ips": [ + "194.127.199.2", + "2a02:20c8:4120::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-002", + "wgpubkey": "U9fbFesIIr2HotWdkfMpKyOEPk+RYtE2oYn3KoLmkj4=", + "ips": [ + "194.127.199.31", + "2a02:20c8:4120::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-003", + "wgpubkey": "btc4mh3n9jVCW6yikw3cOPct0x3B5cDK+kKnvgCV0S0=", + "ips": [ + "194.127.199.62", + "2a02:20c8:4120::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Stavanger", + "isp": "Blix", + "owned": true, + "hostname": "no-svg-wg-004", + "wgpubkey": "Fu98PLCZw/FTcQqyTy0vzaepkfxuSLAah7wnafGVO1g=", + "ips": [ + "194.127.199.93", + "2a02:20c8:4120::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "DataPacket", + "hostname": "pe-lim-wg-001", + "wgpubkey": "S4j4wshSstg9Au6ewFWr9vsZ8giovGPpKbKehXN8Nwc=", + "ips": [ + "95.173.223.130", + "2a02:6ea0:5500:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "isp": "DataPacket", + "hostname": "pe-lim-wg-002", + "wgpubkey": "y7LsVrzYjeMLlTZmVUuuDkFvJp0kONC6+w+wP0gUIyo=", + "ips": [ + "95.173.223.159", + "2a02:6ea0:5500:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.144.66", + "2a0d:5600:13:c48::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.144.98", + "2a0d:5600:13:c49::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-101", + "wgpubkey": "fO4beJGkKZxosCZz1qunktieuPyzPnEVKVQNhzanjnA=", + "ips": [ + "45.134.212.66", + "2a02:6ea0:ce08:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-102", + "wgpubkey": "nJEWae9GebEY7yJONXQ1j4gbURV4QULjx388woAlbDs=", + "ips": [ + "45.134.212.79", + "2a02:6ea0:ce08:2::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "DataPacket", + "hostname": "pl-waw-wg-103", + "wgpubkey": "07eUtSNhiJ9dQXBmUqFODj0OqhmbKQGbRikIq9f90jM=", + "ips": [ + "45.134.212.92", + "2a02:6ea0:ce08:3::a07f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-wg-201", + "wgpubkey": "XwFAczY5LdogFwE9soDecXWqywSCDGuRyJhr/0psI00=", + "ips": [ + "45.128.38.226", + "2a0d:5600:13:67::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "isp": "M247", + "hostname": "pl-waw-wg-202", + "wgpubkey": "nyfOkamv1ryTS62lsmyU96cqI0dtqek84DhyxWgAQGY=", + "ips": [ + "146.70.144.34", + "2a0d:5600:13:c47::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "DataPacket", + "hostname": "pt-lis-wg-201", + "wgpubkey": "JCAe7D/owe11Ii2rhpIKhGZvP/V1P1cVZwZAjpSRqmc=", + "ips": [ + "149.88.20.206", + "2a02:6ea0:fb01:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "DataPacket", + "hostname": "pt-lis-wg-202", + "wgpubkey": "5P4CQYQeSozk/3KQZh/kl7tUMFGgRB60Ttx6x2nh+F8=", + "ips": [ + "149.88.20.193", + "2a02:6ea0:fb01:2::f002" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "HostRoyale", + "hostname": "pt-lis-wg-301", + "wgpubkey": "v28I9wElvqG81kdFi9UZ08qmPDZJnr99lPGTM+HMxgQ=", + "ips": [ + "185.92.210.195", + "2a06:3040:0:1410::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "isp": "HostRoyale", + "hostname": "pt-lis-wg-302", + "wgpubkey": "IzFkZPCljVR/zth8r6F4ajnawxFJZhe0+nRbGFp0d0U=", + "ips": [ + "185.92.210.225", + "2a06:3040:0:1410::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.124.162", + "2a04:9dc0:0:134::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "37.120.246.130", + "2a04:9dc0:0:136::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-wg-001", + "wgpubkey": "xpKhRTf9JI269S2PujLbrJm1TwIe67HD5CLe+sP4tUU=", + "ips": [ + "146.70.124.130", + "2a04:9dc0:0:133::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "isp": "M247", + "hostname": "ro-buh-wg-002", + "wgpubkey": "Ekc3+qU88FuMfkEMyLlgRqDYv+WHJvUsfOMI/C0ydE4=", + "ips": [ + "146.70.124.194", + "2a04:9dc0:0:135::f001" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.193.194", + "2001:ac8:7d:40::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.193.130", + "2001:ac8:7d:39::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-wg-101", + "wgpubkey": "Orrce1127WpljZa+xKbF21zJkJ9wM1M3VJ5GJ/UsIDU=", + "ips": [ + "146.70.193.2", + "2001:ac8:7d:37::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "isp": "M247", + "hostname": "rs-beg-wg-102", + "wgpubkey": "35lawt+YUx10ELTFhZhg4/xzXRmjxCl/j1O4RK5d60M=", + "ips": [ + "146.70.193.66", + "2001:ac8:7d:38::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.199.66", + "2a0d:5600:d:42::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.199.2", + "2a0d:5600:d:41::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-001", + "wgpubkey": "sFHv/qzG7b6ds5pow+oAR3G5Wqp9eFbBD3BmEGBuUWU=", + "ips": [ + "138.199.60.2", + "2a02:6ea0:d13e:1::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-002", + "wgpubkey": "WM5I4IFwQcVysM4fF4NXZtQXNrSkqVWkQxNPPygOiF0=", + "ips": [ + "138.199.60.15", + "2a02:6ea0:d13e:2::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "DataPacket", + "hostname": "sg-sin-wg-003", + "wgpubkey": "3HtGdhEXUPKQIDRW49wCUoTK2ZXfq+QfzjfYoldNchg=", + "ips": [ + "138.199.60.28", + "2a02:6ea0:d13e:3::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-wg-101", + "wgpubkey": "KB6ZA1PAixd74c+mO0VBY4j7LaitK8B4L1APbFIQyQ0=", + "ips": [ + "146.70.199.194", + "2a0d:5600:d:44::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "isp": "M247", + "hostname": "sg-sin-wg-102", + "wgpubkey": "qrhHOwk0ree+LFxW6htvGEfVFuhM2efQ/M+4p0sx/gA=", + "ips": [ + "146.70.199.130", + "2a0d:5600:d:43::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "DataPacket", + "hostname": "sk-bts-wg-001", + "wgpubkey": "QEVIaIycN8p5twXCuZeQTEj9utozakw/MU8H6+/whls=", + "ips": [ + "138.199.34.129", + "2a02:6ea0:2901:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "isp": "DataPacket", + "hostname": "sk-bts-wg-002", + "wgpubkey": "JeEuObwimNmoVtPn4kpMI1y1UM+IChGVBLtmP3CNNVQ=", + "ips": [ + "138.199.34.143", + "2a02:6ea0:2901::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "isp": "HostRoyale", + "hostname": "si-lju-wg-001", + "wgpubkey": "fXWKnogYH3IORGePtkyFg3r/56ZQGkF6hjdw2svhmw8=", + "ips": [ + "93.115.0.3", + "2a06:3040:7:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "isp": "HostRoyale", + "hostname": "si-lju-wg-002", + "wgpubkey": "HkPoWKRG/KV2C8afaaah9Jl5lYuvJo1loCaFadKDZVU=", + "ips": [ + "93.115.0.33", + "2a06:3040:7:210::f101" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "DataPacket", + "hostname": "za-jnb-wg-001", + "wgpubkey": "5dOGXJ9JK/Bul0q57jsuvjNnc15gRpSO1rMbxkf4J2M=", + "ips": [ + "154.47.30.130", + "2a02:6ea0:f206::f001" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "isp": "DataPacket", + "hostname": "za-jnb-wg-002", + "wgpubkey": "lTq6+yUYfYsXwBpj/u3LnYqpLhW8ZJXQQ19N/ybP2B8=", + "ips": [ + "154.47.30.143", + "2a02:6ea0:f207::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "HostRoyale", + "hostname": "es-bcn-wg-001", + "wgpubkey": "asbfbY0oP07dBdmVNDSuO3o5rbkGnR56PkXTGXO7YFg=", + "ips": [ + "185.188.61.195", + "2a06:3040:2:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "HostRoyale", + "hostname": "es-bcn-wg-002", + "wgpubkey": "SoTWu5Cf7JSfaPVftMrTVzeyICGc7oc+ODl6GfqzUHA=", + "ips": [ + "185.188.61.225", + "2a06:3040:2:210::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "M247", + "hostname": "es-bcn-wg-101", + "wgpubkey": "TQDQ/SUW7pme5aRWFT4ugr9YAABS/uwJNZgqYKTM+iU=", + "ips": [ + "185.253.99.30", + "2001:ac8:35:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "isp": "M247", + "hostname": "es-bcn-wg-102", + "wgpubkey": "GqDjspXPQWM3V5nh1M9IhnxgiIwctvxuFyj73oYTRwo=", + "ips": [ + "185.253.99.98", + "2001:ac8:35:1::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "146.70.128.162", + "2001:ac8:23:84::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "146.70.74.98", + "2001:ac8:23:87::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "DataPacket", + "hostname": "es-mad-wg-101", + "wgpubkey": "oPpPeyiQhUYqtOxwR387dmFfII8OK5LX2RPyns1rx2U=", + "ips": [ + "45.134.213.194", + "2a02:6ea0:c318:1::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "DataPacket", + "hostname": "es-mad-wg-102", + "wgpubkey": "1Wo/cQeVHX2q9k95nxN+48lgkGLsPQ+uesRb/9XdY1Y=", + "ips": [ + "45.134.213.207", + "2a02:6ea0:c318:2::a07f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-wg-201", + "wgpubkey": "LyO4Xs1eV8JwFr63a1FRnKboQn2Tu/oeMzHhbr7Y6GU=", + "ips": [ + "146.70.128.194", + "2001:ac8:23:85::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "isp": "M247", + "hostname": "es-mad-wg-202", + "wgpubkey": "iehXacO91FbBqni2IFxedEYPlW2Wvvt9GtRPPPMo9zc=", + "ips": [ + "146.70.128.226", + "2001:ac8:23:86::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Valencia", + "isp": "HostRoyale", + "hostname": "es-vlc-wg-001", + "wgpubkey": "aEObX8ThiHcN/Y40UqY8dXaGMJsVQUWhrEphbpuQRkw=", + "ips": [ + "193.19.207.195", + "2a06:3040:3:210::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Valencia", + "isp": "HostRoyale", + "hostname": "es-vlc-wg-002", + "wgpubkey": "JEDqyG7iGjy/rYsE/9H7y0Sz8Sl+KWYYUvkPG7NnCjk=", + "ips": [ + "193.19.207.225", + "2a06:3040:3:210::f101" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.131", + "2a03:1b20:5:f011:31::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.132", + "2a03:1b20:5:f011:31::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.213.154.133", + "2a03:1b20:5:f011:31::3f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-001", + "wgpubkey": "5JMPeO7gXIbR5CnUa/NPNK4L5GqUnreF0/Bozai4pl4=", + "ips": [ + "185.213.154.66", + "2a03:1b20:5:f011:31::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-002", + "wgpubkey": "AtvE5KdPeQtOcE2QyXaPt9eQoBV3GBxzimQ2FIuGQ2U=", + "ips": [ + "185.213.154.67", + "2a03:1b20:5:f011::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-003", + "wgpubkey": "BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=", + "ips": [ + "185.213.154.68", + "2a03:1b20:5:f011::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-004", + "wgpubkey": "veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=", + "ips": [ + "185.213.154.69", + "2a03:1b20:5:f011::a10f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-005", + "wgpubkey": "x4h55uXoIIKUqKjjm6PzNiZlzLjxjuAIKzvgU9UjOGw=", + "ips": [ + "185.209.199.2", + "2a03:1b20:5:f011:5::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-006", + "wgpubkey": "dcSpHioI+TY37dbZcviFA/sxSUqmpECXRZIapwR8pVg=", + "ips": [ + "185.209.199.7", + "2a03:1b20:5:f011:6::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-007", + "wgpubkey": "ywfkKYdoVAnjsSYW145ACtrw3DV8xTzFS1hlIO7QRD4=", + "ips": [ + "185.209.199.12", + "2a03:1b20:5:f011:7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-008", + "wgpubkey": "Vh3Y2LsBG1yN4kDeebOr3J6dFooGJIBTftzVqlWhiD4=", + "ips": [ + "185.209.199.17", + "2a03:1b20:5:f011:8::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Gothenburg", + "isp": "31173", + "owned": true, + "hostname": "se-got-wg-101", + "wgpubkey": "B8UVAeNkAW4NiGHd1lpl933Drh4y7pMqpXJpH0SrGjQ=", + "ips": [ + "185.213.154.70", + "2a03:1b20:5:f011::aaaf" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.138.218.131", + "2a03:1b20:1:f410:40::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.138.218.132", + "2a03:1b20:1:f410:40::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-013", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.83", + "2a03:1b20:1:f410::13f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-014", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.84", + "2a03:1b20:1:f410::14f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-015", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.85", + "2a03:1b20:1:f410::15f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-016", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.86", + "2a03:1b20:1:f410::16f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-017", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.87", + "2a03:1b20:1:f410::17f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-018", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.88", + "2a03:1b20:1:f410::18f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-019", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.89", + "2a03:1b20:1:f410::19f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-020", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.90", + "2a03:1b20:1:f410::20f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-021", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.91", + "2a03:1b20:1:f410::21f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-022", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.92", + "2a03:1b20:1:f410::22f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-023", + "tcp": true, + "udp": true, + "ips": [ + "141.98.255.93", + "2a03:1b20:1:f410::23f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "45.83.220.92", + "2a03:1b20:1:e011::12f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-001", + "wgpubkey": "Qn1QaXYTJJSmJSMw18CGdnFiVM0/Gj/15OdkxbXCSG0=", + "ips": [ + "193.138.218.220", + "2a03:1b20:1:f410::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-002", + "wgpubkey": "5y66WShsFXqM5K7/4CPEGCWfk7PQyNhVBT2ILjbGm2I=", + "ips": [ + "193.138.218.80", + "2a03:1b20:1:f410::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-003", + "wgpubkey": "fZFAcd8vqWOBpRqlXifsjzGf16gMTg2GuwKyZtkG6UU=", + "ips": [ + "193.138.218.83", + "2a03:1b20:1:f410::a18f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-004", + "wgpubkey": "m4jnogFbACz7LByjo++8z5+1WV0BuR1T7E1OWA+n8h0=", + "ips": [ + "193.138.218.130", + "2a03:1b20:1:f410:40::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-005", + "wgpubkey": "qnJrQEf2JiDHMnMWFFxWz8I9NREockylVgYVE95s72s=", + "ips": [ + "193.138.218.82", + "2a03:1b20:1:f410::a17f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-101", + "wgpubkey": "7ncbaCb+9za3jnXlR95I6dJBkwL1ABB5i4ndFUesYxE=", + "ips": [ + "45.83.220.68", + "2a03:1b20:1:e011::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-102", + "wgpubkey": "cwglRdgLQ4gMG36TIYlc5OIemLNrYs4UM1KTc8mnzxk=", + "ips": [ + "45.83.220.69", + "2a03:1b20:1:e011::a22f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Malmö", + "isp": "31173", + "owned": true, + "hostname": "se-mma-wg-103", + "wgpubkey": "XscA5gebj51nmhAr6o+aUCnMHWGjbS1Gvvd0tuLRiFE=", + "ips": [ + "45.83.220.70", + "2a03:1b20:1:e011::a23f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.80", + "2a03:1b20:4:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.81", + "2a03:1b20:4:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.82", + "2a03:1b20:4:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-ovpn-004", + "tcp": true, + "udp": true, + "ips": [ + "185.65.135.83", + "2a03:1b20:4:f011::4f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-001", + "wgpubkey": "MkP/Jytkg51/Y/EostONjIN6YaFRpsAYiNKMX27/CAY=", + "ips": [ + "185.195.233.76", + "2a03:1b20:4:f011::999f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-002", + "wgpubkey": "q2ZZPfumPaRVl4DJfzNdQF/GHfe6BYAzQ2GZZHb6rmI=", + "ips": [ + "185.65.135.67", + "2a03:1b20:4:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-003", + "wgpubkey": "qZbwfoY4LHhDPzUROFbG+LqOjB0+Odwjg/Nv3kGolWc=", + "ips": [ + "185.65.135.68", + "2a03:1b20:4:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-004", + "wgpubkey": "94qIvXgF0OXZ4IcquoS7AO57OV6JswUFgdONgGiq+jo=", + "ips": [ + "185.65.135.69", + "2a03:1b20:4:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-005", + "wgpubkey": "5rVa0M13oMNobMY7ToAMU1L/Mox7AYACvV+nfsE7zF0=", + "ips": [ + "185.65.135.72", + "2a03:1b20:4:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-006", + "wgpubkey": "5WNG/KKCtgF4+49e/4iqvHVY/i+6dzUmVKXcJj7zi3I=", + "ips": [ + "185.65.135.73", + "2a03:1b20:4:f011::f501" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-007", + "wgpubkey": "YD4k8xaiw2kcRhfLRf2UiRNcDmvvu5NV0xT4d5xOFzU=", + "ips": [ + "185.65.135.70", + "2a03:1b20:4:f011::b07f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-008", + "wgpubkey": "4nOXEaCDYBV//nsVXk7MrnHpxLV9MbGjt+IGQY//p3k=", + "ips": [ + "185.65.135.71", + "2a03:1b20:4:f011::f701" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-009", + "wgpubkey": "t1XlQD7rER0JUPrmh3R5IpxjUP9YOqodJAwfRorNxl4=", + "ips": [ + "185.195.233.69", + "2a03:1b20:4:f011::a09f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-011", + "wgpubkey": "GqKpm8VwKJQLQEQ0PXbkRueY9hDqiMibr+EpW3n9syk=", + "ips": [ + "185.195.233.71", + "2a03:1b20:4:f011::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-012", + "wgpubkey": "1493vtFUbIfSpQKRBki/1d0YgWIQwMV4AQAvGxjCNVM=", + "ips": [ + "185.195.233.66", + "2a03:1b20:4:f011::fb01" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "isp": "31173", + "owned": true, + "hostname": "se-sto-wg-014", + "wgpubkey": "DYlwUsH63DLjEfKC9yq7P+FoQx99WdKvZGGhXoUZVgk=", + "ips": [ + "185.195.233.68", + "2a03:1b20:4:f011::fd01" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.81", + "2a03:1b20:a:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.82", + "2a03:1b20:a:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "193.32.127.83", + "2a03:1b20:a:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "46.19.140.194", + "2a02:29b8:dc01:1830::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "81.17.16.66", + "2a02:29b8:dc01:1829::2f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-ovpn-501", + "tcp": true, + "udp": true, + "ips": [ + "146.70.134.130", + "2001:ac8:28:a8::1f" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-ovpn-502", + "tcp": true, + "udp": true, + "ips": [ + "146.70.134.162", + "2001:ac8:28:a9::2f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-001", + "wgpubkey": "/iivwlyqWqxQ0BVWmJRhcXIFdJeo0WbHQ/hZwuXaN3g=", + "ips": [ + "193.32.127.66", + "2a03:1b20:a:f011::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-002", + "wgpubkey": "qcvI02LwBnTb7aFrOyZSWvg4kb7zNW9/+rS6alnWyFE=", + "ips": [ + "193.32.127.67", + "2a03:1b20:a:f011::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-003", + "wgpubkey": "5Ms10UxGjCSzwImTrvEjcygsWY8AfMIdYyRvgFuTqH8=", + "ips": [ + "193.32.127.68", + "2a03:1b20:a:f011::f201" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-004", + "wgpubkey": "C3jAgPirUZG6sNYe4VuAgDEYunENUyG34X42y+SBngQ=", + "ips": [ + "193.32.127.69", + "2a03:1b20:a:f011::f301" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-005", + "wgpubkey": "dV/aHhwG0fmp0XuvSvrdWjCtdyhPDDFiE/nuv/1xnRM=", + "ips": [ + "193.32.127.70", + "2a03:1b20:a:f011::f401" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "31173", + "owned": true, + "hostname": "ch-zrh-wg-006", + "wgpubkey": "wDjbvO94t0UI1RlimpEFFv7kJ6DngthvuRX6uBN0wAA=", + "ips": [ + "193.32.127.84", + "2a03:1b20:a:f011::f601" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-wg-201", + "wgpubkey": "66NPINP4+1AlojLP0J6O9GxdloiegNnGMV4Yit9Kzg0=", + "ips": [ + "179.43.189.66", + "2a02:29b8:dc01:1832::a1f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "PrivateLayer", + "hostname": "ch-zrh-wg-202", + "wgpubkey": "gSLSfY2zNFRczxHndeda258z+ayMvd7DqTlKYlKWJUo=", + "ips": [ + "46.19.136.226", + "2a02:29b8:dc01:1831::f002" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-401", + "wgpubkey": "45ud3I5O6GmPXTrMJiqkiPMI/ubucDqzGaiq3CHJXk8=", + "ips": [ + "138.199.6.194", + "2a02:6ea0:d406:1::a18f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-402", + "wgpubkey": "7VCMEE+Oljm/qKfQJSUCOYPtRSwdOnuPyqo5Vob+GRY=", + "ips": [ + "138.199.6.207", + "2a02:6ea0:d406:2::a19f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-403", + "wgpubkey": "Jmhds6oPu6/j94hjllJCIaKLDyWu6V+ZNRrVVFhWJkI=", + "ips": [ + "138.199.6.220", + "2a02:6ea0:d406:3::a20f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "DataPacket", + "hostname": "ch-zrh-wg-404", + "wgpubkey": "zfNQqDyPmSUY8+20wxACe/wpk4Q5jpZm5iBqjXj2hk8=", + "ips": [ + "138.199.6.233", + "2a02:6ea0:d406:4::a21f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-501", + "wgpubkey": "HQzvIK88XSsRujBlwoYvvZ7CMKwiYuOqLXyuckkTPHg=", + "ips": [ + "146.70.134.98", + "2001:ac8:28:a7::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-502", + "wgpubkey": "TOA/MQWS6TzJVEa//GPyaET5d52VpHO2isS4786GGwU=", + "ips": [ + "146.70.126.162", + "2001:ac8:28:a1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-503", + "wgpubkey": "ApOUMLFcpTpj/sDAMub0SvASFdsSWtsy+vvw/nWvEmY=", + "ips": [ + "146.70.126.194", + "2001:ac8:28:a2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-504", + "wgpubkey": "I5XiRYHPmxnmGtPJ90Yio6QXL441C/+kYV6UH6wU+jk=", + "ips": [ + "146.70.126.226", + "2001:ac8:28:a3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-505", + "wgpubkey": "dc16Gcid7jLcHRD7uHma1myX3vWhEy/bZIBtqZw0B2I=", + "ips": [ + "146.70.134.2", + "2001:ac8:28:a4::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-506", + "wgpubkey": "7xVJLzW0nfmACr1VMc+/SiSMFh0j0EI3DrU/8Fnj1zM=", + "ips": [ + "146.70.134.34", + "2001:ac8:28:a5::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "isp": "M247", + "hostname": "ch-zrh-wg-507", + "wgpubkey": "RNTpvmWTyjNf8w9qdP+5XlFnyAk5TrVvT+CRa8a0zys=", + "ips": [ + "146.70.134.66", + "2001:ac8:28:a6::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "isp": "Zenlayer", + "hostname": "th-bkk-wg-001", + "wgpubkey": "zX6pm3TVJe7rjQ9GrFH1IY29vw/PJL6LGh3/ALxEyx4=", + "ips": [ + "156.59.50.194", + "2602:ffe4:c09:10a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "isp": "Zenlayer", + "hostname": "th-bkk-wg-002", + "wgpubkey": "L8CCv3NWDaMyUh4dxO44LSy07ETWCcWBeeGFyQZIlyo=", + "ips": [ + "156.59.50.226", + "2602:ffe4:c09:109::f101" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "isp": "DataPacket", + "hostname": "tr-ist-wg-001", + "wgpubkey": "jPhK/ziQfJ1Z5GCPj+qR3A7YV2mIQSQtEPCRuG7TUW8=", + "ips": [ + "149.102.229.129", + "2a02:6ea0:e813::f001" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "isp": "DataPacket", + "hostname": "tr-ist-wg-002", + "wgpubkey": "TDHn9OvFYoHh9nwlYG7OCpPRvCjfODUOksSQPzhguTg=", + "ips": [ + "149.102.229.158", + "2a02:6ea0:e813:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Glasgow", + "isp": "HostRoyale", + "hostname": "gb-glw-wg-001", + "wgpubkey": "xCPSxGj0QVKC637D8HpRsUUCaSfgAF4ephG/CjhQ2kU=", + "ips": [ + "185.201.188.3", + "2a06:3040:d:410::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Glasgow", + "isp": "HostRoyale", + "hostname": "gb-glw-wg-002", + "wgpubkey": "tX+LKwiFvZhGtbuJq8e62+/vhogHNqdAdjHeoOlWqws=", + "ips": [ + "185.201.188.33", + "2a06:3040:d:410::f101" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.131", + "2a03:1b20:7:f011::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.132", + "2a03:1b20:7:f011::2f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "141.98.252.133", + "2a03:1b20:7:f011::3f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-005", + "tcp": true, + "udp": true, + "ips": [ + "185.195.232.85", + "2a03:1b20:7:f011::5f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-ovpn-006", + "tcp": true, + "udp": true, + "ips": [ + "185.195.232.86", + "2a03:1b20:7:f011::6f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-ovpn-301", + "tcp": true, + "udp": true, + "ips": [ + "146.70.119.98", + "2001:ac8:31:f008::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-ovpn-302", + "tcp": true, + "udp": true, + "ips": [ + "146.70.119.130", + "2001:ac8:31:f009::2f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-001", + "wgpubkey": "IJJe0TQtuQOyemL4IZn6oHEsMKSPqOuLfD5HoAWEPTY=", + "ips": [ + "141.98.252.130", + "2a03:1b20:7:f011::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-002", + "wgpubkey": "J57ba81Q8bigy9RXBXvl0DgABTrbl81nb37GuX50gnY=", + "ips": [ + "141.98.252.222", + "2a03:1b20:7:f011::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-003", + "wgpubkey": "VZwE8hrpNzg6SMwn9LtEqonXzSWd5dkFk62PrNWFW3Y=", + "ips": [ + "185.195.232.66", + "2a03:1b20:7:f011::a11f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-004", + "wgpubkey": "PLpO9ikFX1garSFaeUpo7XVSMrILrTB8D9ZwQt6Zgwk=", + "ips": [ + "185.195.232.67", + "2a03:1b20:7:f011::a12f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-005", + "wgpubkey": "bG6WulLmMK408n719B8nQJNuTRyRA3Qjm7bsm9d6v2M=", + "ips": [ + "185.195.232.68", + "2a03:1b20:7:f011::a13f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-006", + "wgpubkey": "INRhM0h4T1hi9j28pcC+vRv47bp7DIsNKtagaFZFSBI=", + "ips": [ + "185.195.232.69", + "2a03:1b20:7:f011::a14f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-007", + "wgpubkey": "MVqe9e9aDwfFuvEhEn4Wd/zWV3cmiCX9fZMWetz+23A=", + "ips": [ + "185.195.232.70", + "2a03:1b20:7:f011::a15f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "31173", + "owned": true, + "hostname": "gb-lon-wg-008", + "wgpubkey": "uHkxYjfx6yzPHSdyqYqSEHsgFNFV8QCSV6aghuQK3AA=", + "ips": [ + "141.98.252.138", + "2a03:1b20:7:f011::f801" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-201", + "wgpubkey": "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=", + "ips": [ + "185.248.85.3", + "2a0b:89c1:3::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-202", + "wgpubkey": "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=", + "ips": [ + "185.248.85.18", + "2a0b:89c1:3::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-203", + "wgpubkey": "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=", + "ips": [ + "185.248.85.33", + "2a0b:89c1:3::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "xtom", + "hostname": "gb-lon-wg-204", + "wgpubkey": "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=", + "ips": [ + "185.248.85.48", + "2a0b:89c1:3::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-301", + "wgpubkey": "Gn9WbiHw83r8BI+v/Usx3mSR+TpMAWLFFz0r9Lfy7XQ=", + "ips": [ + "146.70.119.66", + "2001:ac8:31:f007::a39f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-302", + "wgpubkey": "s0i/bDeQ3xfMsLSrg6bILWunyytJNHVgIJlfflA8jFI=", + "ips": [ + "146.70.119.2", + "2001:ac8:31:f005::a37f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-303", + "wgpubkey": "ZcDVPTugbxo0rTvDKNnexzJ2qNrh3c/wFRtM2Pfl6jM=", + "ips": [ + "146.70.119.34", + "2001:ac8:31:f006::a38f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "London", + "isp": "M247", + "hostname": "gb-lon-wg-304", + "wgpubkey": "nirHSVXCvnxR3aIW95BN0YV02vW/2I7DaeSexqgHW1I=", + "ips": [ + "146.70.119.162", + "2001:ac8:31:f00a::f001" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.2", + "2001:ac8:8b:2e::1f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.34", + "2001:ac8:8b:23::2f" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "146.70.132.66", + "2001:ac8:8b:24::3f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-001", + "wgpubkey": "Q2khJLbTSFxmppPGHgq2HdxMQx7CczPZCgVpYZMoNnM=", + "ips": [ + "146.70.133.98", + "2001:ac8:8b:2d::a47f" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-002", + "wgpubkey": "SkERuKByX8fynFxSFAJVjUFJAeu9b/dfW2FynTM7XAk=", + "ips": [ + "146.70.132.130", + "2001:ac8:8b:26::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-003", + "wgpubkey": "c+RjxBk+wZCv0s4jffQesHdInakRVR3oV0IhpVo0WRY=", + "ips": [ + "146.70.132.162", + "2001:ac8:8b:27::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-004", + "wgpubkey": "DiMqK85O8U1T65HdVgOGh9uI63I3by9Dt6Shik2xbyM=", + "ips": [ + "146.70.132.194", + "2001:ac8:8b:28::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-005", + "wgpubkey": "kbVlSaqHQSpnewQn1X0j5R+WKiSW2e2Gq+I4XZj3Bjk=", + "ips": [ + "146.70.132.226", + "2001:ac8:8b:29::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-006", + "wgpubkey": "zKOZzAitVBxfdxtXgGIyk7zmTtoHrVts7RQGrtsRIxo=", + "ips": [ + "146.70.133.2", + "2001:ac8:8b:2a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "UK", + "city": "Manchester", + "isp": "M247", + "hostname": "gb-mnc-wg-007", + "wgpubkey": "ANaRAtjxqpPgp7r9VjTDfnBMis+MzSgCXc7TZMa0Vno=", + "ips": [ + "146.70.133.34", + "2001:ac8:8b:2b::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.54.135.162", + "2607:9000:9000:16::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.54.135.194", + "2607:9000:9000:17::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "185.156.46.169", + "2a02:6ea0:e206:4::a01f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "185.156.46.182", + "2a02:6ea0:e206:5::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-001", + "wgpubkey": "UKNLCimke54RqRdj6UFyIuBO6nv2VVpDT3vM9N25VyI=", + "ips": [ + "198.54.135.34", + "2607:9000:9000:12::b46f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-002", + "wgpubkey": "UUCBSYnGq+zEDqA6Wyse3JXv8fZuqKEgavRZTnCXlBg=", + "ips": [ + "198.54.135.66", + "2607:9000:9000:13::b47f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-003", + "wgpubkey": "0s0NdIzo+pq0OiHstZHqapYsdevGQGopQ5NM54g/9jo=", + "ips": [ + "198.54.135.98", + "2607:9000:9000:14::b48f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "Tzulo", + "hostname": "us-qas-wg-004", + "wgpubkey": "TvqnL6VkJbz0KrjtHnUYWvA7zRt9ysI64LjTOx2vmm4=", + "ips": [ + "198.54.135.130", + "2607:9000:9000:15::b49f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-101", + "wgpubkey": "JEuuPzZE8uE53OFhd3YFiZuwwANLqwmdXWMHPUbBwnk=", + "ips": [ + "185.156.46.130", + "2a02:6ea0:e206:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-102", + "wgpubkey": "5hlEb3AjTzVIJyYWCYvJvbgA4p25Ltfp2cYnys90LQ0=", + "ips": [ + "185.156.46.143", + "2a02:6ea0:e206:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Ashburn VA", + "isp": "DataPacket", + "hostname": "us-qas-wg-103", + "wgpubkey": "oD9IFZsA5sync37K/sekVXaww76MwA3IvDRpR/irZWQ=", + "ips": [ + "185.156.46.156", + "2a02:6ea0:e206:3::a03f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "45.134.140.156", + "2a02:6ea0:c122:3::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "45.134.140.169", + "2a02:6ea0:c122:4::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.226", + "2607:f7a0:1:d::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.227", + "2607:f7a0:1:d::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.228", + "2607:f7a0:1:d::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.229", + "2607:f7a0:1:d::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "66.115.180.230", + "2607:f7a0:1:d::5f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-wg-001", + "wgpubkey": "nvyBkaEXHwyPBAm8spGB0TFzf2W5wPAl8EEuJ0t+bzs=", + "ips": [ + "45.134.140.130", + "2a02:6ea0:c122:1::b79f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "DataPacket", + "hostname": "us-atl-wg-002", + "wgpubkey": "ECeGYeh8CfPJO3v56ucCDdl+PlKcj2bBszUGkT+hVWQ=", + "ips": [ + "45.134.140.143", + "2a02:6ea0:c122:2::b80f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-101", + "wgpubkey": "MNUf9CYsmf72git8MGzui3kplclyPP6xAS6sz3JT2F8=", + "ips": [ + "66.115.180.231", + "2607:f7a0:1:d::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-102", + "wgpubkey": "RFHvvrw6/3qnwsH89GMYm7xdJA72MPSpXI+WPk7sNwk=", + "ips": [ + "66.115.180.232", + "2607:f7a0:1:d::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-103", + "wgpubkey": "u3X1bahP8G2MNUJ57ImYx5pvADVhI9YmCsWlTULAQnw=", + "ips": [ + "66.115.180.233", + "2607:f7a0:1:d::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-104", + "wgpubkey": "bY+7UNjd1zhZ4GSV9YlarYxB7fl5dhKEyJHaJ3iZg3g=", + "ips": [ + "66.115.180.234", + "2607:f7a0:1:d::b70f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-105", + "wgpubkey": "QEz7T4HN99SCFuWRJA3MJL8B7WnmbdVcM2t5CDe0BQw=", + "ips": [ + "66.115.180.235", + "2607:f7a0:1:d::b71f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-106", + "wgpubkey": "s60zDaHwztfLhcrcQXIMhXgTAI1KAUT2osA7k3LSHDE=", + "ips": [ + "66.115.180.236", + "2607:f7a0:1:d::b72f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-107", + "wgpubkey": "IbkH8hULcFgUEt/OBXamWI2IotlbYJMyAcAhSTbtD1o=", + "ips": [ + "66.115.180.237", + "2607:f7a0:1:d::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-108", + "wgpubkey": "/38SXpa6r80z/CHrPHDW5uTaXa3Xj0U8hIztCEV4q3I=", + "ips": [ + "66.115.180.238", + "2607:f7a0:1:d::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-109", + "wgpubkey": "n2FGxqt/MhTrHKQyoguto+2s6lTPskTwOsCX9jGHzW0=", + "ips": [ + "66.115.180.239", + "2607:f7a0:1:d::b75f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "100TB", + "hostname": "us-atl-wg-110", + "wgpubkey": "bjy5pU9WbGfAfnwjI+IajrgYwbbGlTk4xHimTpDQ/HY=", + "ips": [ + "66.115.180.240", + "2607:f7a0:1:d::f901" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-201", + "wgpubkey": "BbW2Gm4IZEW8CrEIg71jZC9pztA/J4h1PK9lwq57ewE=", + "ips": [ + "107.150.22.2", + "2607:fcd0:aa80:1304::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-202", + "wgpubkey": "Qnb6TdDA7IkTIISJ40W+6rZA81pb0v4D0jRZRTYNQnQ=", + "ips": [ + "104.129.24.98", + "2607:fcd0:aa80:1302::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-203", + "wgpubkey": "nZQvI+2ZzDC2titokjWcojbjvn4bxHrhUzg1UK/K0nc=", + "ips": [ + "104.129.24.114", + "2607:fcd0:aa80:1303::b34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Atlanta GA", + "isp": "Quadranet", + "hostname": "us-atl-wg-204", + "wgpubkey": "rlZyrKRSLfvjUBpYD2jUkWhdWkB1RnRr+Q4bv9+nvD8=", + "ips": [ + "104.223.91.18", + "2607:fcd0:aa80:1305::b43f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "HostRoyale", + "hostname": "us-bos-wg-001", + "wgpubkey": "CsysTnZ0HvyYRjsKMPx60JIgy777JhD0h9WpbHbV83o=", + "ips": [ + "43.225.189.131", + "2a06:3040:12:610::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "HostRoyale", + "hostname": "us-bos-wg-002", + "wgpubkey": "LLkA2XSBvfUeXgLdMKP+OTQeKhtGB03kKskJEwlzAE8=", + "ips": [ + "43.225.189.162", + "2a06:3040:12:610::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "DataPacket", + "hostname": "us-bos-wg-101", + "wgpubkey": "oxJ2PIqrQOmS0uiyXvnxT64E1uZnjZDWPbP/+APToAE=", + "ips": [ + "149.40.50.98", + "2a02:6ea0:f901::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Boston MA", + "isp": "DataPacket", + "hostname": "us-bos-wg-102", + "wgpubkey": "wcmmadJObux2/62ES+QbIO21BkU7p2I0s6n4WNZZgW0=", + "ips": [ + "149.40.50.112", + "2a02:6ea0:f901:1::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.34", + "2607:9000:0:51::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.66", + "2607:9000:0:52::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-ovpn-003", + "tcp": true, + "udp": true, + "ips": [ + "68.235.43.98", + "2607:9000:0:53::3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-001", + "wgpubkey": "T5aabskeYCd5dn81c3jOKVxGWQSLwpqHSHf6wButSgw=", + "ips": [ + "68.235.44.2", + "2607:9000:0:56::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-002", + "wgpubkey": "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=", + "ips": [ + "68.235.43.130", + "2607:9000:0:54::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-003", + "wgpubkey": "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=", + "ips": [ + "68.235.44.34", + "2607:9000:0:57::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-004", + "wgpubkey": "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=", + "ips": [ + "68.235.43.162", + "2607:9000:0:55::a04f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-005", + "wgpubkey": "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=", + "ips": [ + "68.235.44.66", + "2607:9000:0:58::a05f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-006", + "wgpubkey": "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=", + "ips": [ + "68.235.44.98", + "2607:9000:0:59::a06f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Tzulo", + "hostname": "us-chi-wg-007", + "wgpubkey": "qOy1gb7dETzbzzKABZGNmb0V53XN1DEAQBs9/0R/yzs=", + "ips": [ + "68.235.44.194", + "2607:9000:0:84::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-101", + "wgpubkey": "P1Y04kVMViwZrMhjcX8fDmuVWoKl3xm2Hv/aQOmPWH0=", + "ips": [ + "66.63.167.114", + "2607:fcd0:bb80:403::b32f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-102", + "wgpubkey": "6CwMg2aoKNSFFcIsW3R3SY5T6fBYwoRFifl8ZVlw+Vg=", + "ips": [ + "66.63.167.194", + "2607:fcd0:bb80:402::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-103", + "wgpubkey": "GO7SMFDm9Z29PLeX7cw8QndfUsdAe3jYQ8zDr91zt0U=", + "ips": [ + "66.63.167.162", + "2607:fcd0:bb80:404::b44f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "Quadranet", + "hostname": "us-chi-wg-104", + "wgpubkey": "/WirOQ8FNF9tD1+/MYgIAWpjFKiJYhJJ7/w2QmKBrVo=", + "ips": [ + "66.63.167.146", + "2607:fcd0:bb80:405::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-201", + "wgpubkey": "+Xx2mJnoJ+JS11Z6g8mp6aUZV7p6DAN9ZTAzPaHakhM=", + "ips": [ + "87.249.134.1", + "2a02:6ea0:c61f::b63f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-202", + "wgpubkey": "rmN4IM0I0gF7V9503/xnQMOLsu9txl8GTqci9dgUO18=", + "ips": [ + "87.249.134.14", + "2a02:6ea0:c61f:1::b64f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Chicago IL", + "isp": "DataPacket", + "hostname": "us-chi-wg-203", + "wgpubkey": "V0ilKm3bVqt0rmJ80sP0zSVK4m6O3nADi88IQAL5kjw=", + "ips": [ + "87.249.134.27", + "2a02:6ea0:c61f:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "146.70.211.194", + "2001:ac8:9a:82::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "146.70.177.66", + "2001:ac8:9a:84::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.3", + "2606:2e00:8007:1::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.4", + "2606:2e00:8007:1::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.5", + "2606:2e00:8007:1::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.6", + "2606:2e00:8007:1::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "174.127.113.7", + "2606:2e00:8007:1::5f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-001", + "wgpubkey": "EAzbWMQXxJGsd8j2brhYerGB3t5cPOXqdIDFspDGSng=", + "ips": [ + "146.70.211.66", + "2001:ac8:9a:76::1f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-002", + "wgpubkey": "OYG1hxzz3kUGpVeGjx9DcCYreMO3S6tZN17iHUK+zDE=", + "ips": [ + "146.70.211.2", + "2001:ac8:9a:75::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "M247", + "hostname": "us-dal-wg-003", + "wgpubkey": "jn/i/ekJOkkRUdMj2I4ViUKd3d/LAdTQ+ICKmBy1tkM=", + "ips": [ + "146.70.211.130", + "2001:ac8:9a:78::3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-101", + "wgpubkey": "fZXw+9I+tAxRaiYB1tbPYa9EFulu3TJ10SAZoHrS/0U=", + "ips": [ + "174.127.113.8", + "2606:2e00:8007:1::a30f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-102", + "wgpubkey": "C6fRMWc8NehE1Nsn4VTI5RQ1vkAf+nG+IN+jbC1MgSo=", + "ips": [ + "174.127.113.9", + "2606:2e00:8007:1::a31f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-103", + "wgpubkey": "WqCOcFoOHUS5w/7W+psWusNWNLQAQItMHwgBn+zU3V0=", + "ips": [ + "174.127.113.10", + "2606:2e00:8007:1::a32f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-104", + "wgpubkey": "c3OgLZw8kh5k3lqACXIiShPGr8xcIfdrUs+qRW9zmk4=", + "ips": [ + "174.127.113.11", + "2606:2e00:8007:1::a33f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-105", + "wgpubkey": "REvzY8yCTggZmODs3FOjUc4uqwh4w4PCnNr7BV/7ZFw=", + "ips": [ + "174.127.113.12", + "2606:2e00:8007:1::a34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-106", + "wgpubkey": "k+h3AKF7Lkw5Z2RaCQ7PJzW1zhHZ127XY2YZgKg4mAQ=", + "ips": [ + "174.127.113.13", + "2606:2e00:8007:1::a35f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-107", + "wgpubkey": "Zmv3KbVF3ZSGvkWrFsNx2qGXpaNg0AC2duEwoAVZrRI=", + "ips": [ + "174.127.113.14", + "2606:2e00:8007:1::a36f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-108", + "wgpubkey": "fYuciekV90AUxyJPw2SLOy0Vo73XFS30jBBGIfhvtn4=", + "ips": [ + "174.127.113.15", + "2606:2e00:8007:1::a37f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-109", + "wgpubkey": "ICC/pGgEuhgJ8SZykkKBeXyqNtjHPwSTOo6xXGgMq20=", + "ips": [ + "174.127.113.16", + "2606:2e00:8007:1::a38f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-110", + "wgpubkey": "USDvnCyWR5ka523xnxy9KG4rnw/3i9mBprjjp0FQ1QE=", + "ips": [ + "174.127.113.17", + "2606:2e00:8007:1::a39f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-401", + "wgpubkey": "xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=", + "ips": [ + "37.19.200.156", + "2a02:6ea0:d20c:3::b72f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-402", + "wgpubkey": "sPQEji8BhxuM/Za0Q0/9aWYxyACtQF0qRpzaBLumEzo=", + "ips": [ + "37.19.200.143", + "2a02:6ea0:d20c:2::b71f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "DataPacket", + "hostname": "us-dal-wg-403", + "wgpubkey": "4s9JIhxC/D02tosXYYcgrD+pHI+C7oTAFsXzVisKjRs=", + "ips": [ + "37.19.200.130", + "2a02:6ea0:d20c:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-501", + "wgpubkey": "8J4HNTRdwRX1me/sKxPTy8576fCcmVusC194ZLKyjQg=", + "ips": [ + "206.217.206.27", + "2606:2e00:8007:a:ae1f:6bff:fef5:7bf5" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-502", + "wgpubkey": "7RegQnJ70PNlB0bpICSlc/W48GCtzszhSelTdlK5QQ0=", + "ips": [ + "206.217.206.47", + "2606:2e00:8007:a:ae1f:6bff:fef5:7b21" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-503", + "wgpubkey": "si+P5Ef8D21CAkzh9NgrnIhbZDBcFxoYDaN6amSTkWE=", + "ips": [ + "206.217.206.67", + "2606:2e00:8007:a:ae1f:6bff:fef5:7beb" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-504", + "wgpubkey": "YROBTYZewygT97VTgMHxEwqaUiAjAvsuwTsuh5IBH1Y=", + "ips": [ + "206.217.206.87", + "2606:2e00:8007:a:ae1f:6bff:fef5:7b1b" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Dallas TX", + "isp": "100TB", + "hostname": "us-dal-wg-505", + "wgpubkey": "bf59QZip/y9tvCF6S9pir32LuFtvWH7nayqhzplyGkQ=", + "ips": [ + "206.217.206.107", + "2606:2e00:8007:a:ae1f:6bff:fef5:7983" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.44.128.98", + "2607:9000:2000:13::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.44.128.226", + "2607:9000:2000:17::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-001", + "wgpubkey": "3clcc9092sgEsFGrUfcCBUzT9tN6uy12t77uTmSLqwc=", + "ips": [ + "198.44.128.194", + "2607:9000:2000:16::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-002", + "wgpubkey": "jh3kAesaULbfC0h7VHwNPiTrz04vPC0Aa4kwRjy2+2Q=", + "ips": [ + "198.44.128.162", + "2607:9000:2000:15::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "Tzulo", + "hostname": "us-den-wg-003", + "wgpubkey": "v7CG+wctmTw9LxuWBp3tGARithgbDU7nZZduSefkqzg=", + "ips": [ + "198.44.128.130", + "2607:9000:2000:14::a46f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-101", + "wgpubkey": "74U+9EQrMwVOafgXuSp8eaKG0+p4zjSsDe3J7+ojhx0=", + "ips": [ + "37.19.210.1", + "2a02:6ea0:d70a::b57f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-102", + "wgpubkey": "T44stCRbQXFCBCcpdDbZPlNHp2eZEi91ooyk0JDC21E=", + "ips": [ + "37.19.210.14", + "2a02:6ea0:d70a:1::b58f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Denver CO", + "isp": "DataPacket", + "hostname": "us-den-wg-103", + "wgpubkey": "Az+PGHQ0xFElmRBv+PKZuRnEzKPrPtUpRD3vpxb4si4=", + "ips": [ + "37.19.210.27", + "2a02:6ea0:d70a:2::b59f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Detroit MI", + "isp": "HostRoyale", + "hostname": "us-det-wg-001", + "wgpubkey": "+USmlxhnLmlNkDnBbu+rXwjUwa383e0ilYEqPkEkNHA=", + "ips": [ + "185.141.119.131", + "2a06:3040:11:610::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Detroit MI", + "isp": "HostRoyale", + "hostname": "us-det-wg-002", + "wgpubkey": "cYqP1UqhOYuaj47e4jAbgL55h52L+ALjtML26OtBvFU=", + "ips": [ + "185.141.119.161", + "2a06:3040:11:610::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-001", + "wgpubkey": "NKscQ4mm24nsYWfpL85Cve+BKIExR0JaysldUtVSlzg=", + "ips": [ + "37.19.221.130", + "2a02:6ea0:e001::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-002", + "wgpubkey": "tzSfoiq9ZbCcE5I0Xz9kCrsWksDn0wgvaz9TiHYTmnU=", + "ips": [ + "37.19.221.143", + "2a02:6ea0:e001:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-003", + "wgpubkey": "fNSu30TCgbADxNKACx+5qWY6XGJOga4COmTZZE0k0R4=", + "ips": [ + "37.19.221.156", + "2a02:6ea0:e001:2::b55f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Houston TX", + "isp": "DataPacket", + "hostname": "us-hou-wg-004", + "wgpubkey": "NkZMYUEcHykPkAFdm3dE8l2U9P2mt58Dw6j6BWhzaCc=", + "ips": [ + "37.19.221.169", + "2a02:6ea0:e001:3::b56f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.44.129.162", + "2607:9000:3000:17::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.44.129.130", + "2607:9000:3000:16::a02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.41", + "2a02:6ea0:c859:4::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.54", + "2a02:6ea0:c859:5::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.66", + "2a0d:5600:8:38::d1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.130", + "2a0d:5600:8:39::d2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-ovpn-403", + "tcp": true, + "udp": true, + "ips": [ + "146.70.172.194", + "2a0d:5600:8:3a::d3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-101", + "wgpubkey": "IDXrg8s0qYFAWcMcXFb6P/EHOESkTyotZCSlerQfyCQ=", + "ips": [ + "198.44.129.98", + "2607:9000:3000:15::a49f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-102", + "wgpubkey": "Ldwvbs6mOxEbpXLRA3Z/qmEyJo2wVTdQ94+v3UFsbBw=", + "ips": [ + "198.44.129.66", + "2607:9000:3000:14::a50f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Tzulo", + "hostname": "us-lax-wg-103", + "wgpubkey": "gabX4D/Yhut0IMl/9jRK+kMoHbkL38qaUm7r/dH5rWg=", + "ips": [ + "198.44.129.34", + "2607:9000:3000:13::a51f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-201", + "wgpubkey": "xWobY7DWTL+vL1yD4NWwbQ3V4e8qz10Yz+EFdkIjq0Y=", + "ips": [ + "169.150.203.2", + "2a02:6ea0:c859:1::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-202", + "wgpubkey": "SDnciTlujuy2APFTkhzfq5X+LDi+lhfU38wI2HBCxxs=", + "ips": [ + "169.150.203.15", + "2a02:6ea0:c859:2::a02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "DataPacket", + "hostname": "us-lax-wg-203", + "wgpubkey": "W6/Yamxmfx3geWTwwtBbJe/J8UdEzOfa6M+cEpNPIwg=", + "ips": [ + "169.150.203.28", + "2a02:6ea0:c859:3::a03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-301", + "wgpubkey": "U4uhpKZm/G1i/qU6s0puSuI+UL4bNCWTuiZBJ8Hdi1Y=", + "ips": [ + "198.96.89.194", + "2607:fcd0:100:7c03::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-302", + "wgpubkey": "Ey0LihLvJ0YnkMLXK+Kcb4SniJiqoavQuASdRRFASXw=", + "ips": [ + "204.152.216.98", + "2607:fcd0:100:7c01::b29f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "Quadranet", + "hostname": "us-lax-wg-303", + "wgpubkey": "AcExK2CiCHYWU6Sft49uYnLUhIZiId1M+ISzupOJznI=", + "ips": [ + "204.152.216.114", + "2607:fcd0:100:7c02::b30f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-401", + "wgpubkey": "KX+59wAvZwSKv/MVHsFVQS1j9Loaol0c8oOI/BGf3Bk=", + "ips": [ + "146.70.173.2", + "2a0d:5600:8:4::d1f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-402", + "wgpubkey": "EKZXvHlSDeqAjfC/m9aQR0oXfQ6Idgffa9L0DH5yaCo=", + "ips": [ + "146.70.173.66", + "2a0d:5600:8:6::d2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-403", + "wgpubkey": "mBqaWs6pti93U+1feyj6LRzzveNmeklancn3XuKoPWI=", + "ips": [ + "146.70.173.130", + "2a0d:5600:8:d::d3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-404", + "wgpubkey": "YGl+lj1tk08U9x9Z73zowUW3rk8i0nPmYkxGzNdE4VM=", + "ips": [ + "146.70.173.194", + "2a0d:5600:8:2f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-405", + "wgpubkey": "Pe86fNGUd+AIeaabsn7Hk4clQf1kJvxOXPykfVGjeho=", + "ips": [ + "146.70.172.2", + "2a0d:5600:8:37::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "M247", + "hostname": "us-lax-wg-406", + "wgpubkey": "K3KF3TCWbYcHF5XHL2zaifvQGHrPWoCjFYxDaJO71GA=", + "ips": [ + "146.70.174.2", + "2a0d:5600:8:3b::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-501", + "wgpubkey": "IHFvbxyz7qK6x811dNNf0rs1MFLaZwW9C3FNwOLz6hY=", + "ips": [ + "23.162.40.4", + "2602:fa19:4::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-502", + "wgpubkey": "L3P0XU2RveHw0l845ME8X24xy3oOTMr9pTHkNo8Aw10=", + "ips": [ + "23.162.40.45", + "2602:fa19:4::f101" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Los Angeles CA", + "isp": "xtom", + "hostname": "us-lax-wg-503", + "wgpubkey": "tzDBizpxIHNLPvVdW3pop65cwWNkL73Gam3DUxHDfns=", + "ips": [ + "23.162.40.86", + "2602:fa19:4::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "McAllen TX", + "isp": "DataPacket", + "hostname": "us-txc-wg-001", + "wgpubkey": "+OCONjBoN5RytiPy000VOzhZsiu1tSzecmc1hl/q8hI=", + "ips": [ + "79.127.222.194", + "2a02:6ea0:fe00:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "McAllen TX", + "isp": "DataPacket", + "hostname": "us-txc-wg-002", + "wgpubkey": "mjv8qVNwhVKO0ePAI97CRil188uwdR/VR6ihcNY/hio=", + "ips": [ + "79.127.222.207", + "2a02:6ea0:fe00:2::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "146.70.187.194", + "2a0d:5600:6:107::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "146.70.183.66", + "2a0d:5600:6:108::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-001", + "wgpubkey": "FVEKAMJqaJU2AwWn5Mg9TK9IAfJc4XDUmSzEeC/VXGs=", + "ips": [ + "45.134.142.219", + "2a02:6ea0:cc1f:2::b62f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-002", + "wgpubkey": "H5t7PsMDnUAHrR8D2Jt3Mh6N6w43WmCzrOHShlEU+zw=", + "ips": [ + "45.134.142.206", + "2a02:6ea0:cc1f:1::b61f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "DataPacket", + "hostname": "us-mia-wg-003", + "wgpubkey": "N/3F0QvCuiWWzCwaJmnPZO53LZrKn6sr7rItecrQSQY=", + "ips": [ + "45.134.142.193", + "2a02:6ea0:cc1f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-101", + "wgpubkey": "50/sEK7t3on/H2sunx+gzIjJI6E9/Y6gHOHQrvzsij4=", + "ips": [ + "146.70.187.2", + "2a0d:5600:6:104::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-102", + "wgpubkey": "sJw9LzH2sunqRes2FNi8l6+bd8jqFAiYFfUGTbCXlA4=", + "ips": [ + "146.70.187.66", + "2a0d:5600:6:105::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "M247", + "hostname": "us-mia-wg-103", + "wgpubkey": "TpPDIhObMTeoMVx0MvSstQaIH1EfRYqW2vzGTB+ETVk=", + "ips": [ + "146.70.187.130", + "2a0d:5600:6:106::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "Quadranet", + "hostname": "us-mia-wg-301", + "wgpubkey": "nCr87vBNEwrERnkcDhWENNVIMaLF+C0p3h9nqwguO2g=", + "ips": [ + "173.44.63.66", + "2607:ff48:aa81:2602::b25f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Miami FL", + "isp": "Quadranet", + "hostname": "us-mia-wg-302", + "wgpubkey": "voRd3Wi8W4kaEMIJMy7IBkpkAVxQkYF0VubbK1+zgR8=", + "ips": [ + "104.129.41.194", + "2607:ff48:aa81:2603::b26f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-ovpn-401", + "tcp": true, + "udp": true, + "ips": [ + "198.44.136.130", + "2607:9000:a000:15::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-ovpn-402", + "tcp": true, + "udp": true, + "ips": [ + "198.44.136.162", + "2607:9000:a000:16::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-501", + "tcp": true, + "udp": true, + "ips": [ + "146.70.168.2", + "2a0d:5600:24:2c5::e01f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-502", + "tcp": true, + "udp": true, + "ips": [ + "146.70.166.2", + "2a0d:5600:24:2c4::e02f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-503", + "tcp": true, + "udp": true, + "ips": [ + "146.70.166.66", + "2a0d:5600:24:2c1::e03f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-601", + "tcp": true, + "udp": true, + "ips": [ + "146.70.171.194", + "2a0d:5600:24:1375::f1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-602", + "tcp": true, + "udp": true, + "ips": [ + "146.70.185.130", + "2a0d:5600:24:136c::f2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-ovpn-603", + "tcp": true, + "udp": true, + "ips": [ + "146.70.185.66", + "2a0d:5600:24:136b::f3f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-301", + "wgpubkey": "IzqkjVCdJYC1AShILfzebchTlKCqVCt/SMEXolaS3Uc=", + "ips": [ + "143.244.47.65", + "2a02:6ea0:c43f::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-302", + "wgpubkey": "gH/fZJwc9iLv9fazk09J/DUWT2X7/LFXijRS15e2n34=", + "ips": [ + "143.244.47.78", + "2a02:6ea0:c43f:1::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "DataPacket", + "hostname": "us-nyc-wg-303", + "wgpubkey": "KRO+RzrFV92Ah+qpHgAMKZH2jtjRlmJ4ayl0gletY3c=", + "ips": [ + "143.244.47.91", + "2a02:6ea0:c43f:2::b52f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-401", + "wgpubkey": "4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=", + "ips": [ + "198.44.136.34", + "2607:9000:a000:12::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-402", + "wgpubkey": "/o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=", + "ips": [ + "198.44.136.66", + "2607:9000:a000:13::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-403", + "wgpubkey": "pFM95uwAFj62uYDkJXcAPYaPmy+nl+dd92ZLV9bWbHQ=", + "ips": [ + "198.44.136.98", + "2607:9000:a000:14::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "Tzulo", + "hostname": "us-nyc-wg-404", + "wgpubkey": "pCZ9NnIgAEwrDy4H/eGz8NvNcbAg7UGFTGYruyCfVwU=", + "ips": [ + "198.44.136.194", + "2607:9000:a000:17::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-501", + "wgpubkey": "FMNXnFgDHNTrT9o49U8bb3Z8J90LZzVJPpRzKtJM9W8=", + "ips": [ + "146.70.165.2", + "2a0d:5600:24:2b6::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-502", + "wgpubkey": "cmUR4g9aIFDa5Xnp4B6Zjyp20jwgTTMgBdhcdvDV0FM=", + "ips": [ + "146.70.165.130", + "2a0d:5600:24:2b8::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-503", + "wgpubkey": "czE6NJ8CccA5jnJkKoZGDpMXFqSudeVTzxU5scLP/H8=", + "ips": [ + "146.70.165.194", + "2a0d:5600:24:2b9::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-504", + "wgpubkey": "MVa5yuoYnjXJtSCeBsyvaemuaK4KFN1p78+37Nvm2m0=", + "ips": [ + "146.70.166.130", + "2a0d:5600:24:2c2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-505", + "wgpubkey": "jrjogHbVDuPxyloBldvtB51TmebNJo+4rW2JFrN33iM=", + "ips": [ + "146.70.166.194", + "2a0d:5600:24:2c3::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-506", + "wgpubkey": "IjdtI6sz8ZjU5tlK3eW4HAPp+GRvHErDtqxBcr8JvTM=", + "ips": [ + "146.70.165.66", + "2a0d:5600:24:2b7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-601", + "wgpubkey": "OKyEPafS1lnUTWqtVeWElkTzcmkvLi9dncBHbSyFrH8=", + "ips": [ + "146.70.185.2", + "2a0d:5600:24:136a::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-602", + "wgpubkey": "4Lg7yQlukAMp6EX+2Ap+q4O+QIV/OEZyybtFJmN9umw=", + "ips": [ + "146.70.168.130", + "2a0d:5600:24:1378::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-603", + "wgpubkey": "s3N8Xeh6khECbgRYPk9pp5slw2uE0deOxa9rSJ6bzwE=", + "ips": [ + "146.70.168.66", + "2a0d:5600:24:1377::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-604", + "wgpubkey": "FIcFPDjxfF24xBrv+W7Bcqb2wADSWd+HAWPKYo6xZEk=", + "ips": [ + "146.70.171.66", + "2a0d:5600:24:1372::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-605", + "wgpubkey": "78nFhfPEjrfOxBkUf2ylM7w6upYBEcHXm93sr8CMTE4=", + "ips": [ + "146.70.171.130", + "2a0d:5600:24:1374::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "New York NY", + "isp": "M247", + "hostname": "us-nyc-wg-606", + "wgpubkey": "a8+VB6Cgah7Q5mWY860VfgU/h3Zf+pMpMdHB22e1uTQ=", + "ips": [ + "146.70.168.194", + "2a0d:5600:24:1379::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.133.34", + "2607:9000:7000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.133.66", + "2607:9000:7000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-wg-102", + "wgpubkey": "1BbuYcr+WcmgcUhZTJ48GxOjQW0k4iEYBnn1Axhm1yA=", + "ips": [ + "198.54.133.130", + "2607:9000:7000:15::b89f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Phoenix AZ", + "isp": "Tzulo", + "hostname": "us-phx-wg-103", + "wgpubkey": "aEJhNzQJYMH9VzB7bxhimyUFz3uo4mp1RD9VY3KAEWs=", + "ips": [ + "198.54.133.162", + "2607:9000:7000:16::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.130.34", + "2607:9000:4000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.130.50", + "2607:9000:4000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-101", + "wgpubkey": "tKUaUnY6dJhRx3zCMAFMa1I7baVt5QrpnmdRsW99MWk=", + "ips": [ + "198.54.130.82", + "2607:9000:4000:15::b83f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-102", + "wgpubkey": "XT06PnP77El1DOWfg5Kq6GiPzzfvQbTFfWlHPws/TQ0=", + "ips": [ + "198.54.130.98", + "2607:9000:4000:16::b84f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-103", + "wgpubkey": "4xCeK68I0TXZoy1e8VeQDCea/6Qeu57IAtCi8Lnllik=", + "ips": [ + "198.54.130.114", + "2607:9000:4000:17::b85f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-104", + "wgpubkey": "zSuNvGa8Zk+jc2niP1s75CLTFD/1U1Fqc6ypfzO9mB0=", + "ips": [ + "198.54.130.130", + "2607:9000:4000:18::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Raleigh NC", + "isp": "Tzulo", + "hostname": "us-rag-wg-105", + "wgpubkey": "XJDcYZ6peY1cfErhLQ0AqzGTxKuKXz5M//sFvEX8dAI=", + "ips": [ + "198.54.130.146", + "2607:9000:4000:19::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.132", + "2606:2e00:0:b9::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.133", + "2606:2e00:0:b9::2f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-103", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.134", + "2606:2e00:0:b9::3f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-104", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.135", + "2606:2e00:0:b9::4f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-105", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.136", + "2606:2e00:0:b9::5f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-106", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.137", + "2606:2e00:0:b9::6f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-201", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.150", + "2607:fc98:0:8a::f101" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-ovpn-202", + "tcp": true, + "udp": true, + "ips": [ + "69.4.234.151", + "2607:fc98:0:8a::f201" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-101", + "wgpubkey": "dbsApGxL4oNd6CyjPrtiV6ep+C1HaFuYGd0DPCHMF2o=", + "ips": [ + "69.4.234.147", + "2606:2e00:0:b9::b34f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-102", + "wgpubkey": "g6yfZKBIS6BtXdTb5yXXVmOkkQ1OBxxJS3H67mebclw=", + "ips": [ + "69.4.234.138", + "2606:2e00:0:b9::b35f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-103", + "wgpubkey": "ioipHdOYhc4nVsQKghmJy/vvnMI38VLLFNZXWgxxOx8=", + "ips": [ + "69.4.234.139", + "2606:2e00:0:b9::b36f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-104", + "wgpubkey": "8gcGDG4XVifgKgjpkiRSxI4QA0lhU1LGX7v7ZL4AXxE=", + "ips": [ + "69.4.234.140", + "2606:2e00:0:b9::b37f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-105", + "wgpubkey": "vkbSMnaddVm4YWkuuf8rOSc45XTfpVLJEom0FaJWq2g=", + "ips": [ + "69.4.234.141", + "2606:2e00:0:b9::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-106", + "wgpubkey": "abx3jjkKD+7abroGzeELm4Esa4bESJV72Fm9Tp+YqAE=", + "ips": [ + "69.4.234.142", + "2606:2e00:0:b9::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-107", + "wgpubkey": "dJX3V47dAZWGc7BeJCvDfwSqdKRsfPUT9Lm7LzPs2CU=", + "ips": [ + "69.4.234.143", + "2606:2e00:0:b9::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-108", + "wgpubkey": "/fbfBjrhWKRTgOPy+esHuoeFCJWGX+nCYgTo8uKTMCE=", + "ips": [ + "69.4.234.144", + "2606:2e00:0:b9::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-109", + "wgpubkey": "dClWdBHZT7dwqXzIRzit6CIaJYAFtTL/yYZ8Knj8Cjk=", + "ips": [ + "69.4.234.145", + "2606:2e00:0:b9::f801" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-201", + "wgpubkey": "sSoow0tFfqSrZIUhFRaGsTvwQsUTe33RA/9PLn93Cno=", + "ips": [ + "69.4.234.9", + "2607:fc98:0:8a::f301" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-203", + "wgpubkey": "2yVEeOFScneJRCVTrqCjKlKHg3J2wwOwkY28iy47J1Q=", + "ips": [ + "69.4.234.131", + "2607:fc98:0:8a::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Salt Lake City UT", + "isp": "100TB", + "hostname": "us-slc-wg-204", + "wgpubkey": "SE7HGeByhTo8Ak7FGsjvrYOUJTydQ2L8fWjo17IvhSw=", + "ips": [ + "69.4.234.10", + "2607:fc98:0:8a::f601" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-ovpn-001", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.34", + "2607:9000:8000:12::1f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-ovpn-002", + "tcp": true, + "udp": true, + "ips": [ + "198.54.134.66", + "2607:9000:8000:13::2f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-001", + "wgpubkey": "Ow25Pdtyqbv/Y0I0myNixjJ2iljsKcH04PWvtJqbmCk=", + "ips": [ + "198.54.134.98", + "2607:9000:8000:14::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-002", + "wgpubkey": "aOt3gFGc0a0UMAdcxhBWX9TCnEabe2s66MHzjXU50Tc=", + "ips": [ + "198.54.134.130", + "2607:9000:8000:15::b95f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "Tzulo", + "hostname": "us-sjc-wg-003", + "wgpubkey": "Vim/OUBT3Bogv+FF623pAHXc/vmRwur2JKcNsLHQH1o=", + "ips": [ + "198.54.134.162", + "2607:9000:8000:16::b96f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-101", + "wgpubkey": "yohC6MIq62U+BmTdBjTFBQbj5jTaxRHtVdCp5AdDgAs=", + "ips": [ + "66.115.165.211", + "2607:f7a0:16:5::c01f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-102", + "wgpubkey": "wfFi5sBBThR9EK1US0dbwaOiuNMIBpBBhEif9EnUeCM=", + "ips": [ + "66.115.165.212", + "2607:f7a0:16:5::c02f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-103", + "wgpubkey": "5AsmDtBqLureV4JcG+dwFq35hUaAff4NzLCkJDkoWQQ=", + "ips": [ + "66.115.165.213", + "2607:f7a0:16:5::c03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-104", + "wgpubkey": "fUjjvrtnbokobdzudzXPzCM6Fli28Tsg5kArztU0YnU=", + "ips": [ + "66.115.165.214", + "2607:f7a0:16:5::c04f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-105", + "wgpubkey": "m0PSpvahFXuYOtGZ9hFAMErzKW7vhwqyd82rw+yBHz0=", + "ips": [ + "66.115.165.215", + "2607:f7a0:16:5::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-106", + "wgpubkey": "9xV2ZXE1dVChbxu/ca4jfXoCnYFv8fbP/OCFySD6RjA=", + "ips": [ + "66.115.165.216", + "2607:f7a0:16:5::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-107", + "wgpubkey": "2p37fAPhw+2uPJ5pP5Iy8hgs7506k+8ITqPIzbaa4zQ=", + "ips": [ + "66.115.165.217", + "2607:f7a0:16:5::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "100TB", + "hostname": "us-sjc-wg-108", + "wgpubkey": "x9/CJ28JOHah+HPRKQpVuCLL3v3eMWj7Xa7dotpPX2c=", + "ips": [ + "66.115.165.218", + "2607:f7a0:16:5::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-301", + "wgpubkey": "f3bMFNG3xcXRN/i0jHxo68CXFcNNlennuf1jdkPMEVM=", + "ips": [ + "142.147.89.195", + "2604:e8c0:7::b66f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-302", + "wgpubkey": "8wVb4HUgmpQEa5a1Q8Ff1hTDTJVaHts487bksJVugEo=", + "ips": [ + "142.147.89.210", + "2604:e8c0:7::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "xtom", + "hostname": "us-sjc-wg-303", + "wgpubkey": "2ZQTRk/3jT+ccfG3G/QoJV3NFC4CFHQwGBCSokOvBnA=", + "ips": [ + "142.147.89.225", + "2604:e8c0:7::b68f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "DataPacket", + "hostname": "us-sjc-wg-401", + "wgpubkey": "2q0LGwWvnV2qbNEAgOOHh4tvol5vGeQXJZDAbazCSBY=", + "ips": [ + "79.127.217.34", + "2a02:6ea0:e611::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "San Jose CA", + "isp": "DataPacket", + "hostname": "us-sjc-wg-402", + "wgpubkey": "+UZsgTzYTdG3LvqpL+V9ZkwEMiFcls32YlpuI0cqDQ4=", + "ips": [ + "79.127.217.47", + "2a02:6ea0:e611:1::f001" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-ovpn-101", + "tcp": true, + "udp": true, + "ips": [ + "198.54.131.34", + "2607:9000:5000:12::101f" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-ovpn-102", + "tcp": true, + "udp": true, + "ips": [ + "198.54.131.66", + "2607:9000:5000:13::102f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-001", + "wgpubkey": "bZQF7VRDRK/JUJ8L6EFzF/zRw2tsqMRk6FesGtTgsC0=", + "ips": [ + "138.199.43.91", + "2a02:6ea0:d80b:3::b75f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-002", + "wgpubkey": "Xt80FGN9eLy1vX3F29huj6oW2MnQt7ne3DMBpo525Qw=", + "ips": [ + "138.199.43.78", + "2a02:6ea0:d80b:2::f001" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "DataPacket", + "hostname": "us-sea-wg-003", + "wgpubkey": "4ke8ZSsroiI6Sp23OBbMAU6yQmdF3xU2N8CyzQXE/Qw=", + "ips": [ + "138.199.43.65", + "2a02:6ea0:d80b:1::b73f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-101", + "wgpubkey": "200em73iD9942d9hlHonAfNXGWwFQcicBVGHeHbdxVM=", + "ips": [ + "198.54.131.130", + "2607:9000:5000:15::b77f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-102", + "wgpubkey": "YwwaW1/1vFJKp22Je7btEhVXTzTckxMF1qesHN4T3QA=", + "ips": [ + "198.54.131.162", + "2607:9000:5000:16::b78f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Tzulo", + "hostname": "us-sea-wg-103", + "wgpubkey": "fU4oTJhFtwvmk0odRe9Jatc+DMh9gKz49WSzO0psCmU=", + "ips": [ + "198.54.131.98", + "2607:9000:5000:14::b03f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-201", + "wgpubkey": "K+Xt/lYTSTavIW8RoQjzWI7tExy6sp1FqBi3n5pH5SI=", + "ips": [ + "199.229.250.52", + "2607:f7a0:c:4::c09f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-202", + "wgpubkey": "t2x4A+F04hKfxIHMcY2RswaVyj3XHelTT8Q1FAwBIj4=", + "ips": [ + "199.229.250.53", + "2607:f7a0:c:4::c10f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-203", + "wgpubkey": "eS44Rs1j3BotLKH8AV78KGZQtsMQKpjdYS9chXdxPnw=", + "ips": [ + "199.229.250.54", + "2607:f7a0:c:4::c11f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-204", + "wgpubkey": "WyzaVvsFivIx7iC+bYbEV5OhtjSw3aqjU5sB3DltQxI=", + "ips": [ + "199.229.250.55", + "2607:f7a0:c:4::f301" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-205", + "wgpubkey": "vnD/2bCGqH4b6zZSRuLGSw9oN4NhQdTW9jlMaa2N1AU=", + "ips": [ + "199.229.250.56", + "2607:f7a0:c:4::f401" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-206", + "wgpubkey": "1TYUyuvJi+RQETmW3aKJDS5p9K7kutK+Qp4ooy92CBQ=", + "ips": [ + "199.229.250.57", + "2607:f7a0:c:4::f501" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-207", + "wgpubkey": "mdYjW/giLeamWPUuHxLAIcornNrH/2HQrixhBpQZmHA=", + "ips": [ + "199.229.250.58", + "2607:f7a0:c:4::f601" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "100TB", + "hostname": "us-sea-wg-208", + "wgpubkey": "k4ah0qvHgn5IsalvehE7GPiDC4BOE9botvd+KITdtyg=", + "ips": [ + "199.229.250.59", + "2607:f7a0:c:4::f701" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Quadranet", + "hostname": "us-sea-wg-301", + "wgpubkey": "ekaodfDtCmMmHBPWT04FObtHi9uxCn9mI2NB6WAsS0U=", + "ips": [ + "104.129.57.66", + "2607:fcd0:cd00:a00::b27f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Seattle WA", + "isp": "Quadranet", + "hostname": "us-sea-wg-302", + "wgpubkey": "Plbre6XhYWgXzdAUD94/gqSy6C9z/nD40U2gIt+MAGQ=", + "ips": [ + "173.205.93.2", + "2607:fcd0:cd00:a01::b28f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Secaucus NJ", + "isp": "Quadranet", + "hostname": "us-uyk-wg-102", + "wgpubkey": "fD/JDsMLFxEZ7awcJJB9h0mjfRlcEvwF8e7arB2fHhU=", + "ips": [ + "104.223.118.34", + "2607:fcd0:ccc0:1d03::b38f" + ] + }, + { + "vpn": "wireguard", + "country": "USA", + "city": "Secaucus NJ", + "isp": "Quadranet", + "hostname": "us-uyk-wg-103", + "wgpubkey": "Tysz0Ii2m+DsyhcWoQWxsXUdJxu1lKln4F7ML+nWPXA=", + "ips": [ + "173.205.85.34", + "2607:fcd0:ccc0:1d05::c41f" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "DataPacket", + "hostname": "ua-iev-wg-001", + "wgpubkey": "PO2o3ewguPP24wLy8bbDqx1xuAnTOIVzdzVGVT0d8kU=", + "ips": [ + "149.102.240.79", + "2a02:6ea0:e109:2::a01f" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "isp": "DataPacket", + "hostname": "ua-iev-wg-002", + "wgpubkey": "HUj/J8Rxx7QVGh3kJsFgPZoqtm2BQIX03vKJSIyTOSo=", + "ips": [ + "149.102.240.66", + "2a02:6ea0:e109:1::a02f" + ] + } + ] + }, + "nordvpn": { + "version": 5, + "timestamp": 1711034061, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.3" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.3" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.19" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.19" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.51" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.51" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.67" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.67" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "ar50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.48" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "ar50.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.48" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ar51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.64" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ar51.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.64" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ar52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.74" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ar52.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.74" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ar53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.84" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ar53.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.84" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ar54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.94" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ar54.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.94" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ar55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.111" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ar55.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.111" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ar56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.121" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ar56.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.121" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ar57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.149" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ar57.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.149" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ar58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.50.33.159" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ar58.nordvpn.com", + "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", + "ips": [ + "103.50.33.159" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "au638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "au638.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "au639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "au639.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "au658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "au658.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "au659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "au659.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "au660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "au660.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "au661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "au661.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "au680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "au680.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "au681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "au681.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "au682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "au682.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "au733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.72.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "au733.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "116.90.72.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 785, + "hostname": "au785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.178" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 785, + "hostname": "au785.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.178" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 786, + "hostname": "au786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.182" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 786, + "hostname": "au786.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.182" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 787, + "hostname": "au787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.186" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 787, + "hostname": "au787.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.186" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 788, + "hostname": "au788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.154" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 788, + "hostname": "au788.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.154" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "au789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.250" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "au789.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.250" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "au801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.106" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "au801.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "au802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.114" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "au802.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.114" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "au803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.79.119" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "au803.nordvpn.com", + "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", + "ips": [ + "45.248.79.119" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "au585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "au585.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "au586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "au586.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "au587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "au587.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "au588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "au588.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "au610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "au610.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "au611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "au611.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "au612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "au612.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "au613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "au613.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "au614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "au614.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "au615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "au615.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "au640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "au640.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "au641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "au641.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "au642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "au642.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "au643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "au643.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "au684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "au684.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "au685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "au685.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "au734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "au734.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 735, + "hostname": "au735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 735, + "hostname": "au735.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 736, + "hostname": "au736.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 736, + "hostname": "au736.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 737, + "hostname": "au737.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 737, + "hostname": "au737.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "au738.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "au738.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "au739.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.39.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "au739.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "144.48.39.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "au740.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "au740.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "au741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "au741.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "au742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "au742.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "au743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "au743.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "au744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "au744.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "au745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.77.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "au745.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "45.248.77.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "au797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "au797.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "au798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "au798.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "au799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "au799.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "au800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "au800.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "au569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "au569.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "au570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "au570.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "au595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "au595.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "au596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "au596.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "au644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "au644.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "au645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "au645.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "au646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "au646.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "au647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "au647.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "au665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "au665.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "au666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "au666.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "au667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "au667.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "au668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "au668.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "au669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "au669.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "au686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.14.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "au686.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.14.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "au688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "au688.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 689, + "hostname": "au689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 689, + "hostname": "au689.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "au690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "au690.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "au691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "au691.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 753, + "hostname": "au753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.192.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 753, + "hostname": "au753.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.192.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 754, + "hostname": "au754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 754, + "hostname": "au754.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "au755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "au755.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "au756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "au756.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "au757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "au757.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "au758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "au758.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "au759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "au759.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "au760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "au760.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "au761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "au761.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "au762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.38.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "au762.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.38.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "au763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "au763.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "au764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "144.48.37.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "au764.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "144.48.37.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "au765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "au765.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "au766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "au766.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "au767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "au767.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "au768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "au768.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "au769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "au769.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "au770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.15.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "au770.nordvpn.com", + "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", + "ips": [ + "103.137.15.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 599, + "hostname": "au599.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 599, + "hostname": "au599.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 600, + "hostname": "au600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 600, + "hostname": "au600.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 601, + "hostname": "au601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 601, + "hostname": "au601.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "au602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "au602.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "au648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "au648.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "au649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "au649.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "au650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "au650.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "au651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "au651.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "au670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "au670.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "au671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "au671.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "au673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "au673.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "au692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.235" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "au692.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.235" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "au693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.196.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "au693.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.196.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "au694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "au694.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "au695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "au695.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "au772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.2" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "au772.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.2" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "au773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.6" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "au773.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.6" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "au774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.10" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "au774.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "au775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.226" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "au775.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "au777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.236" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "au777.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.236" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "au778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.241" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "au778.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.241" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "au779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.178" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "au779.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.178" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "au780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.185" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "au780.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.185" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "au781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.194" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "au781.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.194" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 782, + "hostname": "au782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.201" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 782, + "hostname": "au782.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.201" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 783, + "hostname": "au783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.248.78.26" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 783, + "hostname": "au783.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "45.248.78.26" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "au790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "au790.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "au791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "au791.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 792, + "hostname": "au792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 792, + "hostname": "au792.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "au793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "au793.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "au794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "au794.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "au795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "au795.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "au796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.197.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "au796.nordvpn.com", + "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", + "ips": [ + "103.107.197.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "au529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.91" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "au529.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.91" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "au530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.99" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "au530.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.99" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "au531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.107" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "au531.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.107" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "au532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "au532.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "au533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.123" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "au533.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.123" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "au534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.131" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "au534.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.131" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "au535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "au535.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "au536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "au536.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "au537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "au537.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "au538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "au538.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "au576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.179" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "au576.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.179" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "au605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.155" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "au605.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.155" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "au606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "au606.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "au607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.171" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "au607.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.171" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "au623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.147" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "au623.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.147" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "au624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.115" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "au624.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.115" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "au652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.227.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "au652.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.227.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "au653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "au653.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "au654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.203" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "au654.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "au655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "au655.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "au656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.219" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "au656.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.219" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "au657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.212.224.227" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "au657.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.212.224.227" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "au700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "au700.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "au701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.27" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "au701.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.27" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "au702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.35" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "au702.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "au703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.43" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "au703.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.43" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 704, + "hostname": "au704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.51" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 704, + "hostname": "au704.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 705, + "hostname": "au705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.59" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 705, + "hostname": "au705.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "au706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.67" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "au706.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.67" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "au707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.75" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "au707.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.75" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "au711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.213.139" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "au711.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.213.139" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "au712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.213.163" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "au712.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.213.163" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "au713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.195" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "au713.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.195" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 714, + "hostname": "au714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.187" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 714, + "hostname": "au714.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.187" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "au725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.1" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "au725.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.1" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "au726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.3" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "au726.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.3" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "au727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.5" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "au727.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.5" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "au728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.7" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "au728.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.7" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "au729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.9" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "au729.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.9" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "au730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.11" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "au730.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.11" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "au731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.13" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "au731.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.13" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "au732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.15" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "au732.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.15" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "au746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.77" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "au746.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.77" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "au747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.79" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "au747.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.79" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "au748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.81" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "au748.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "au749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "au749.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "au750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.85" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "au750.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.85" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "au751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.87" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "au751.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.87" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "au752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.218.127.89" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "au752.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "185.218.127.89" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 784, + "hostname": "au784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.1.212.83" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 784, + "hostname": "au784.nordvpn.com", + "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", + "ips": [ + "103.1.212.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 804, + "hostname": "au804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 805, + "hostname": "au805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 806, + "hostname": "au806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 807, + "hostname": "au807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.23" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 808, + "hostname": "au808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.26" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 809, + "hostname": "au809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.41" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 810, + "hostname": "au810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.38" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 811, + "hostname": "au811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "au812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "au813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "au814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.104" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 815, + "hostname": "au815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 816, + "hostname": "au816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.109" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 817, + "hostname": "au817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.111" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 818, + "hostname": "au818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.114" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 819, + "hostname": "au819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.116" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 820, + "hostname": "au820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.119" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 821, + "hostname": "au821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.121" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 822, + "hostname": "au822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 823, + "hostname": "au823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 824, + "hostname": "au824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.88" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "at80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.203" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "at80.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "at86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.100" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "at86.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.100" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "at88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.64.127.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "at88.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "217.64.127.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "at89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.75" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "at89.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "at90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.83" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "at90.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.83" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "at94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "at94.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "at95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.34.171" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "at95.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.216.34.171" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "at96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.202.83" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "at96.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.236.202.83" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "at97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.202.88" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "at97.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.236.202.88" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "at98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.227" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "at98.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.227" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "at99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.232" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "at99.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.232" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "at100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.211" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "at100.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.211" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "at101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.216" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "at101.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.155.216" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "at105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.139.59" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "at105.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "91.132.139.59" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "at106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.212.51" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "at106.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.244.212.51" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "at107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.19" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "at107.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.19" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "at108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.195" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "at108.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.195" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "at109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.211" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "at109.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.211" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "at110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.207.219" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "at110.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "5.253.207.219" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "at111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.3" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "at111.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.3" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "at112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.11" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "at112.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.11" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "at113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.212.19" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "at113.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.120.212.19" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "at116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.248" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "at116.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.248" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "at117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.242" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "at117.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.242" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "at118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.180.12.245" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "at118.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "185.180.12.245" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "at119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.75" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "at119.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.75" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "at120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.80" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "at120.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.80" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "at121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.85" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "at121.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.85" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "at122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "at122.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "at123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.7" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "at123.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.7" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "at124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.12" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "at124.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.12" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "at125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.17" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "at125.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.17" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "at126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.22" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "at126.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.22" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "at127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.27" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "at127.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.27" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "at128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.32" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "at128.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.32" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "at129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.37" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "at129.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.37" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "at130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.129" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "at130.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.129" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "at131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.133" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "at131.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.133" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "at132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.137" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "at132.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.137" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "at133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.141" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "at133.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.141" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "at134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.145" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "at134.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.145" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "at135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.149" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "at135.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.149" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "at136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.153" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "at136.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.153" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "at137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.218" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "at137.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.218" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "at138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.213" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "at138.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.213" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "at139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.208" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "at139.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.208" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "at140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.203" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "at140.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.203" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "at141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.198" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "at141.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.198" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "at142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.193" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "at142.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.193" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "at143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.115" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "at143.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.115" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "at144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.120" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "at144.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.120" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "at145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.81.195" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "at145.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "146.70.81.195" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "at146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.81.163" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "at146.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "146.70.81.163" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "at147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.162" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "at147.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.162" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "at148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.66" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "at148.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.66" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "at149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.195.158" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "at149.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.195.158" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "at150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.130" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "at150.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "at151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.223.71" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "at151.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "37.19.223.71" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "at152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.135" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "at152.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.135" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "at153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.139" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "at153.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.139" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "at154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.143" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "at154.nordvpn.com", + "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", + "ips": [ + "87.249.133.143" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 155, + "hostname": "at155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.148" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 156, + "hostname": "at156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.150" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 157, + "hostname": "at157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.162" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 158, + "hostname": "at158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.164" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "be148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.137" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "be148.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.137" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "be149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.250" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "be149.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.250" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "be150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.115" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "be150.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.115" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "be151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.120" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "be151.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.120" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "be152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.131" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "be152.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.131" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "be153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "be153.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "be154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.216" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "be154.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.216" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "be155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.51" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "be155.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.51" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "be156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.21.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "be156.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.232.21.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "be157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.243" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "be157.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.243" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "be158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "be158.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "be159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.219" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "be159.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.219" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "be160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.227" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "be160.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.227" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "be161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "be161.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "be162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.123" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "be162.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.123" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "be163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "be163.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "be164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.203" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "be164.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.203" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "be165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.51" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "be165.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.51" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "be166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.56" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "be166.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "be167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.187.251.61" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "be167.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "194.187.251.61" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "be168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.57.251" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "be168.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.207.57.251" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "be169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.83" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "be169.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.83" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "be170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.107" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "be170.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.107" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "be171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.191.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "be171.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "77.243.191.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "be172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.99" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "be172.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.99" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "be173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.131" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "be173.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.131" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "be174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.139" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "be174.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.139" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "be175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.146" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "be175.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.146" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "be176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.165" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "be176.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.165" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "be177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.217.170" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "be177.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.210.217.170" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "be178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "be178.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "be179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.11" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "be179.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.11" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "be180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.19" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "be180.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.19" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "be181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.27" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "be181.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.27" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "be182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.143.35" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "be182.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "37.120.143.35" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "be183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.19.141" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "be183.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "82.102.19.141" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "be184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "be184.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "be185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.8" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "be185.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.8" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "be186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.13" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "be186.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.13" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "be187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.18" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "be187.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.18" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "be188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.23" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "be188.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.23" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "be189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.28" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "be189.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.28" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "be190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.33" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "be190.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.33" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "be191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.38" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "be191.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.38" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "be192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.43" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "be192.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "be193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.48" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "be193.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.48" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "be194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.53" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "be194.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.53" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "be195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.58" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "be195.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.58" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "be196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.63" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "be196.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.63" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "be197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.68" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "be197.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.68" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "be198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.73" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "be198.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.73" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "be199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.78" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "be199.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.78" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "be200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.83" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "be200.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.83" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "be201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.88" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "be201.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.88" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "be202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.93" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "be202.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.93" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "be203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.95.55.98" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "be203.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "188.95.55.98" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "be204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.90.123.171" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "be204.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.90.123.171" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "be205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.90.123.195" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "be205.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "91.90.123.195" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "be206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.205.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "be206.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "5.253.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "be207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.55.43" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "be207.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "146.70.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.14" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.14" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.27" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.27" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.40" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.40" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.52" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.52" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.64" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.64" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.76" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.76" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.88" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.88" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.100" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.100" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.112" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.112" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.129" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.129" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.142" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.142" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.155" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.155" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.168" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.168" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.180" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.180" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.192" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.192" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.204" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.204" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.216" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.216" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.228" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.228" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.255.240" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", + "ips": [ + "185.245.255.240" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 228, + "hostname": "be228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.22" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 229, + "hostname": "be229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.24" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 230, + "hostname": "be230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.27.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 231, + "hostname": "be231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.211.214.26" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 232, + "hostname": "be232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.27.56" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.162.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", + "ips": [ + "45.95.162.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.162.3" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", + "ips": [ + "45.95.162.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.163.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", + "ips": [ + "45.95.163.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.163.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bermuda", + "region": "The Americas", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", + "ips": [ + "45.95.163.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.188.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", + "ips": [ + "45.134.188.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.188.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", + "ips": [ + "45.134.188.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.189.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", + "ips": [ + "45.134.189.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.189.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", + "ips": [ + "45.134.189.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.183" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.183" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.3.195" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.99.3.195" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.159" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.159" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.147" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.111.171" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "ips": [ + "185.212.111.171" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.170.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.170.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.168.146" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.168.146" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "189.1.168.154" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "189.1.168.154" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.1" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.1" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.17" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.17" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.33" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.33" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.49" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.49" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.64" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.64" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.79" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.79" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.94" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.94" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.109" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.109" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.147" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.147" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.165" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.165" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.183" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.183" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.201" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.201" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.218" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.218" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.235" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.235" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.176.145" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.145" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.145" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.145" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.161" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.161" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.177" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.177" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.193" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.193" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.209" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.209" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.156.194" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "177.54.156.194" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.156.207" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "177.54.156.207" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.205.129" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "193.19.205.129" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.190.1" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", + "ips": [ + "45.134.190.1" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.190.3" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", + "ips": [ + "45.134.190.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.147" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.147" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.91" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.91" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.99" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.99" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.107" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.107" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.115" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.115" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.123" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.123" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.131" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.131" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.139" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.139" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.75" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.75" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.202.83" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "217.138.202.83" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.2" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.2" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.14" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.14" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.26" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.26" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.38" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.38" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.50" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.50" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.62" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.62" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.74" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.74" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.86" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.86" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.98" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.98" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.55.110" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "156.146.55.110" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.96" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.96" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.112" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.112" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.128" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.128" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.144" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.144" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.160" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.160" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.176" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.176" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.192" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.192" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.208" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.208" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.224" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.224" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.117.240" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.240" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.191.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", + "ips": [ + "45.134.191.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.191.3" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", + "ips": [ + "45.134.191.3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.90.243" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "86.106.90.243" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.218.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "139.28.218.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.47.234.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "89.47.234.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.115" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.115" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.59" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.233.43" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "5.181.233.43" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.83" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.91" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.115" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.115" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.123" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.123" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.131" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.139" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.139" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.155" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.155" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.163" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.163" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.171" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.171" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.203" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.203" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.75.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.75.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.80.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "185.213.80.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.88.190.136" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "45.88.190.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.139" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.139" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.131" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "37.120.237.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.112.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "146.70.112.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.74.35" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "ips": [ + "176.113.74.35" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.83" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.83" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.84" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.84" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.91" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.91" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.179" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.179" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.180" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.180" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.188" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.120.138.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.211" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.212" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.212" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.220" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "176.113.72.220" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.22.75" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.232.22.75" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.22.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.232.22.76" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.195" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.244.215.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.196" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.244.215.196" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.33" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "154.47.22.33" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.34" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "154.47.22.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.12" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.17" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.22" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.22" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.27" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.27" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.32" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.37" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.47" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.57" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.67" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.67" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.72" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.87" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.87" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.117" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.117" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.127" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.127" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.137" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.137" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.157" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.157" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.167" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.167" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.172" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.172" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.192" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.192" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.202" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.207" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.207" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.212" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.212" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.217" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.217" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.222" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.222" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.227" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.227" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.232" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.232" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.237" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.237" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.242" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.242" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.213.247" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.213.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.7" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.7" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.12" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.17" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.22" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.22" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.27" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.27" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.32" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.32" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.37" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.37" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.47" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.47" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.57" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.62" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.62" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.67" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.67" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.72" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.87" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.87" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.107" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.117" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.117" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.127" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.127" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.137" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.137" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.147" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.147" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.157" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.157" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.167" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.167" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.247" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.172" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.172" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.182" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.182" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.187" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.187" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.192" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.192" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.202" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "37.19.212.202" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "153.92.40.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "153.92.40.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.118.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "ips": [ + "185.212.118.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1690, + "hostname": "ca1690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.51" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1691, + "hostname": "ca1691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1692, + "hostname": "ca1692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1693, + "hostname": "ca1693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1694, + "hostname": "ca1694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1695, + "hostname": "ca1695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.249.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1696, + "hostname": "ca1696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.17" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1697, + "hostname": "ca1697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.19" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1698, + "hostname": "ca1698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1699, + "hostname": "ca1699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.8" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1700, + "hostname": "ca1700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.23" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1701, + "hostname": "ca1701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.25" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1702, + "hostname": "ca1702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1703, + "hostname": "ca1703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1704, + "hostname": "ca1704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1705, + "hostname": "ca1705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.46" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1706, + "hostname": "ca1706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1707, + "hostname": "ca1707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.17.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "ca1708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.247" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "ca1709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.249" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "ca1710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "ca1711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1712, + "hostname": "ca1712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.194" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "ca1713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.196" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "ca1714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1715, + "hostname": "ca1715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.57" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1716, + "hostname": "ca1716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.199" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1717, + "hostname": "ca1717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.201" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1718, + "hostname": "ca1718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.204" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1719, + "hostname": "ca1719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.206" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1720, + "hostname": "ca1720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.214" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1721, + "hostname": "ca1721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.216" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1722, + "hostname": "ca1722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.209" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1723, + "hostname": "ca1723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.16.211" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.100" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.100" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.102" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.102" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.104" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.104" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.106" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.106" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.108" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.108" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.112" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.112" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.114" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.114" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.116" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.116" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.118" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.118" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.120" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.124" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.124" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.126" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.126" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.128" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.128" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.132" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.134" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.134" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.136" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.138" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.138" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.140" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.140" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.142" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.144" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.144" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.146" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.146" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.148" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.148" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.150" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.150" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.152" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.152" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.154" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.154" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.156" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.156" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.158" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.158" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.160" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.160" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.179.162" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "185.153.179.162" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.4" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.4" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.16" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.16" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.40" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.40" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.52" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.52" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.64" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.64" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.100.43.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.76" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.112.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", + "ips": [ + "95.214.112.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.112.3" + ] + }, + { + "vpn": "wireguard", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", + "ips": [ + "95.214.112.3" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.4" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.4" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.24" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.24" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.44" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.44" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.64" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.64" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.229.84" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "85.190.229.84" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.21" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.21" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.41" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.41" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.61" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.61" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.220.78.81" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "ips": [ + "158.220.78.81" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.1" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.1" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.26" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.26" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.51" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.51" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.76" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.76" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.100" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.100" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.129" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.129" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.154" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.154" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.179" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.179" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.204" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.204" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.73.228" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "ips": [ + "185.216.73.228" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.195" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.195" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.203" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.203" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.211" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.211" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.219" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.219" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.227" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.227" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.249.235" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.249.235" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.3" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.3" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.11" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.11" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.19" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.19" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.27" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.27" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.35" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.35" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "179.48.248.43" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "ips": [ + "179.48.248.43" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.1" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.1" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.3" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.3" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.5" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.5" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.7" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.7" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.9" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.9" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.11" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.11" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.13" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.13" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.15" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.15" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.17" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.17" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.19" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.19" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.21" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.21" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.23" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.23" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.25" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.25" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.27" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.27" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.29" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.29" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.160.118.31" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "ips": [ + "193.160.118.31" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.161" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.161" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.129" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.129" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.177" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.177" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.193" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.193" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.209" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.209" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.225" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.225" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.1" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.1" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.17" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.17" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.33" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.33" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.65" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.65" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.81" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.81" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.19.204.145" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "193.19.204.145" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.47.194.49" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.49" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.27" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.27" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.38.149" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "212.102.38.149" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.38.146" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "212.102.38.146" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.186.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "89.238.186.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.3" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.156.174.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.91" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.156.174.91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.186.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "89.238.186.235" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.115" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.115" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.35.120" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "185.216.35.120" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.91" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.91" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.75" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.75" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.83" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.83" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.19" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.19" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.11" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.11" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.3" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.3" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.251" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.251" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.243" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.243" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.112.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "193.9.112.235" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.51" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.43" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.43" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.199.35" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "217.138.199.35" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.8" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.8" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.14" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.14" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.26" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.32" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.32" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.38" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.38" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.44" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.44" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.50" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.50" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.56" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.56" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.62" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.62" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.68" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.68" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.74" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.74" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.80" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.80" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.86" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.86" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.2" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.2" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.20" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.20" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.92" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.92" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.56.104" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "138.199.56.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.14" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.14" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.2" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.2" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.26" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.77" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.77" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.247" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.247" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.89" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.89" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.223" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.223" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.20" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.20" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.8" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.8" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.209.32" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "178.249.209.32" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.211" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.211" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.65" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.65" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.135.235" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "ips": [ + "87.249.135.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.3" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.3" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.20.212" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "82.102.20.212" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.203" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.203" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.227" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.227" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.20.35" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "82.102.20.35" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.131" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.131" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.136" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.136" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.141" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.141" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.149" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.149" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.154" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.154" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.227" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.227" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.235" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.235" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.243" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.243" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.251" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.251" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.131.219" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.219" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.19" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.19" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.27" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "2.58.46.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.83" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.83" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.179" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.84.187" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "185.245.84.187" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.43" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.43" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.51" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.51" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.59" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.59" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.67" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.67" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.187" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.187" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.194.75" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.194.75" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.195" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.195" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.65.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "95.174.65.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.65.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "95.174.65.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.145.83" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.145.83" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.145.91" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.145.91" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.163" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.163" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.171" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.171" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.80.179" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "146.70.80.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.1" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.1" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.3" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.3" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.5" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.5" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.7" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.7" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.9" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.9" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.11" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.11" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.13" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.13" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.15" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.15" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.17" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.17" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.19" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.19" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.21" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.21" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.23" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.23" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.25" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.25" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.27" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.27" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.29" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.29" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.31" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.31" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.33" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.33" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.35" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.35" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.37" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.37" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.238.39" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "85.190.238.39" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 276, + "hostname": "dk276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.246" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 277, + "hostname": "dk277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.248" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 278, + "hostname": "dk278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.114" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 279, + "hostname": "dk279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.217.250" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.113.1" + ] + }, + { + "vpn": "wireguard", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", + "ips": [ + "95.214.113.1" + ] + }, + { + "vpn": "openvpn", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.113.3" + ] + }, + { + "vpn": "wireguard", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", + "ips": [ + "95.214.113.3" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.114.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", + "ips": [ + "95.214.114.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.114.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", + "ips": [ + "95.214.114.3" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.66.1" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", + "ips": [ + "212.97.66.1" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.66.3" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Africa the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", + "ips": [ + "212.97.66.3" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.115.1" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", + "ips": [ + "95.214.115.1" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.214.115.3" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", + "ips": [ + "95.214.115.3" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.100" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.100" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.102" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.102" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.104" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.104" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.106" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.106" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.108" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.108" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.110" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.110" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.112" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.112" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.114" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.114" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.116" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.116" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.239.118" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "ips": [ + "85.190.239.118" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.124" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.124" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.126" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.126" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.133" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.133" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.135" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.135" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.137" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.137" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.139" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.139" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.141" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.141" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.143" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.143" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.145" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.145" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.147" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.147" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.149" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.149" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.151" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.151" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.153" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.153" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.155" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.155" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.157" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.157" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.159" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.159" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.161" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.161" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.163" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.163" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.165" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.165" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.167" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.167" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.202.81.169" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "ips": [ + "85.202.81.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.7" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.7" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.32" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.37" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.37" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.42" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.42" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.47" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.47" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.57" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.57" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.62" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.62" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.67" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.67" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.72" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.72" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.77" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.77" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.82" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.87" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.87" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.92" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.92" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.97" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.97" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.102" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.102" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.107" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.107" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.112" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.112" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.117" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.117" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.194" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.199" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.204" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.209" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.209" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.214" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.214" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.228" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.228" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.233" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.233" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.241" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.241" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.245" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.245" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.224" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.224" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.237" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.237" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.5" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.5" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.10" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.10" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.45" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.50" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.55" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.55" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.66" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.66" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.76" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.76" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.81" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.81" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.40" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.40" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.71" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.71" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.86" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.86" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.15.89" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.15.89" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "178.249.212.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.16.177" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "138.199.16.177" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.69" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.69" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.86" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.86" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.103" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.119" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.119" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.140" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.140" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.156" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.156" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.188" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.188" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.204" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.220" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.220" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.139.236" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.236" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 949, + "hostname": "fr949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.204" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 950, + "hostname": "fr950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.206" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 951, + "hostname": "fr951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 952, + "hostname": "fr952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.212.201" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.35.30.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.164" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.35.30.164" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.146.90.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.146.90.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.197" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.238.191.197" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.198" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.238.191.198" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 439, + "hostname": "fr439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.2.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 440, + "hostname": "fr440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.2.206" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.6" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.6" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.9" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.9" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.29" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.29" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.18.252" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "82.102.18.252" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 577, + "hostname": "fr577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 578, + "hostname": "fr578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.119" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.35" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.35" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.185.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.104.185.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.213.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.244.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "139.28.219.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.59" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.59" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.113" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.113" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.108" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.108" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.103" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.42.98" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.42.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.204.251" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.120.204.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.89.174.115" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.89.174.115" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.89.174.123" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.89.174.123" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.11" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.43" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.43" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.147" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.147" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.171" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.171" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.181.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "45.152.181.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.43.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.17.43.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 753, + "hostname": "fr753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.157" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 754, + "hostname": "fr754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.158" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.160" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.160" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.169" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.175" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.175" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.178" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.178" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.181" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.181" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.184" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.184" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.56.186" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "143.244.56.186" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.130" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.130" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.133" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.133" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.136" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.136" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.139" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.139" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.142" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.142" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.145" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.145" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.148" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.148" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.151" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.151" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.154" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.154" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.157" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.157" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.160" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.160" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.163" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.163" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.169" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.169" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.172" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.172" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.175" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.175" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.178" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "138.199.47.178" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.207.131" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "217.138.207.131" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.183.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "89.40.183.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.3" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.3" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.6" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.6" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.9" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.9" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.33" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.33" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.36" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "37.19.217.36" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.18.11" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "82.102.18.11" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.59.249.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "194.59.249.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 850, + "hostname": "fr850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.44" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 851, + "hostname": "fr851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.195" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.195" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.203" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.203" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.211" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.211" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.227" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.227" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.235" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.235" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.243" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.243" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.251" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.251" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.105.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.105.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.99" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.107" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.107" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.155" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.155" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.179" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.179" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.68.187" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "146.70.68.187" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.12" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.12" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.45" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.45" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.56" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.56" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.67" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.67" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.78" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.78" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.89" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.89" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.187.69.100" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "31.187.69.100" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.14" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.16" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.16" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.22" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.22" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "fr907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.61.156.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "fr907.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "185.61.156.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "fr908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.14" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "fr908.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.14" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "fr909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.16" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "fr909.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.16" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "fr910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "fr910.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "fr911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.20" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "fr911.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "fr912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.22" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "fr912.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.22" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "fr913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.24" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "fr913.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.24" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "fr914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.26" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "fr914.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.26" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "fr915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.28" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "fr915.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.28" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "fr916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.30" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "fr916.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.30" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "fr917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.32" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "fr917.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.32" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "fr918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "fr918.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "fr919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.36" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "fr919.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.36" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 920, + "hostname": "fr920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.99" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 921, + "hostname": "fr921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.100" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 922, + "hostname": "fr922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.108" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 923, + "hostname": "fr923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.110" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 924, + "hostname": "fr924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.103" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 925, + "hostname": "fr925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.105" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 941, + "hostname": "fr941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.116" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 942, + "hostname": "fr942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.118" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 943, + "hostname": "fr943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.120" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 944, + "hostname": "fr944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.122" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "fr945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "fr946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.63.84" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 947, + "hostname": "fr947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.18" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 948, + "hostname": "fr948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.20" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 953, + "hostname": "fr953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 954, + "hostname": "fr954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.28.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.15" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.15" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.17" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.17" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.19" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.19" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.21" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.21" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.23" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.23" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.25" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.29" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.29" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.0.27" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "84.247.0.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.104.248.170" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "ips": [ + "86.104.248.170" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.100" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.100" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.102" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.102" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.104" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.104" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.106" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.106" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.108" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.108" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.110" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.110" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.112" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.112" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.123.114" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "ips": [ + "81.17.123.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.17" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.17" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.24" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.31" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.31" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.45" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.52" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.52" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.59" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.59" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.66" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.73" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.73" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.80" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.80" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.87" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.87" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.94" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.94" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.101" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.101" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.108" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.115" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.122" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.122" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.129" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.136" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.143" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.143" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.149" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.149" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.155" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.155" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.161" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.161" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.167" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.167" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.185" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.185" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.191" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.191" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.197" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.241" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.241" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.96.248" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.248" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 507, + "hostname": "de507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 508, + "hostname": "de508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.116" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 509, + "hostname": "de509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.117" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 510, + "hostname": "de510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.130.184.118" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 654, + "hostname": "de654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.31.54.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 655, + "hostname": "de655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.31.54.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 675, + "hostname": "de675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.223.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 676, + "hostname": "de676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.223.116" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 677, + "hostname": "de677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "de678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "de679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "de680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.217" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "de681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.162" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "de682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.163" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "de683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.165" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "de684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "de685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.169" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "de686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.171" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "de687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "de688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "de689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.193" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 690, + "hostname": "de690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 691, + "hostname": "de691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.197" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 692, + "hostname": "de692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 693, + "hostname": "de693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 694, + "hostname": "de694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.203" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 695, + "hostname": "de695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 696, + "hostname": "de696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.201.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 697, + "hostname": "de697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.209" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 698, + "hostname": "de698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.211" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 699, + "hostname": "de699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.19.149" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "de700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.19.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 706, + "hostname": "de706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.214" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 707, + "hostname": "de707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.230.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 710, + "hostname": "de710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 712, + "hostname": "de712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 713, + "hostname": "de713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 714, + "hostname": "de714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.207" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Dedicated IP" + ], + "number": 715, + "hostname": "de715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.43.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.120" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.123" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.123" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.126" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.129" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.129" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.132" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.132" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.135" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.135" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.50.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "212.103.50.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.50.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "212.103.50.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.204" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.204" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.194" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.194" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.181.170.199" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "195.181.170.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.138" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.138" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.141" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.141" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.144" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.147" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.147" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.150" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.150" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.153" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.153" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.156" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.156" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.187" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "83.143.245.187" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.184" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.232.23.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.232.23.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.13" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.13" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.33.23" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.216.33.23" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.195" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.200" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.205" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.205" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.210" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.210" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.215" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.215" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.225" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.225" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.230" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.230" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.131" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.131" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.136" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.72" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.77" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.77" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.85" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.85" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.172.90" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "91.207.172.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.141" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.141" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.146" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.146" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.219" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.219" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.151" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.151" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.104.184.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.227" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.75" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.75" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.83" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.83" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.99" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.99" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.107" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.107" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.115" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.115" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.181.195" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "77.243.181.195" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.15" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.15" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.21" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.24" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.27" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.27" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.30" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.33" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.33" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.36" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.39" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.39" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.42" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.42" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.45" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.45" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.48" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.54" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.54" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.57" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.57" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.60" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.60" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.63" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.63" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.66" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.66" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.69" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.69" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.72" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.72" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.75" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.75" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.78" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.78" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.81" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.81" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.84" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.84" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.87" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.87" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.90" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.90" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.93" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.93" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.96" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.99" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.99" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.102" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.102" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.105" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.105" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.108" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.108" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.111" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.111" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.114" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.114" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.117" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.117" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.143.245.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "83.143.245.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.16.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "82.102.16.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.220" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.220" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.65.91" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "89.249.65.91" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.174" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.174" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.175" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.175" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.176" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.177" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.177" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.178" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.181" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.182" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.182" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.1" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.1" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.4" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.5" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.11" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.11" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.159" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.159" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.166" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.166" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.173" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.173" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.187" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.187" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.194" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.194" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.201" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.201" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.208" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.196.22.215" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.196.22.215" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.184.211" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.104.184.211" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.220.70.240" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "185.220.70.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.212.3" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.87.212.3" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.212.11" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.87.212.11" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.227" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.227" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.235" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.235" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.243" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.243" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.62.251" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "146.70.62.251" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.197.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "37.120.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.59" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.59" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.51" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.51" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.141.152.43" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "45.141.152.43" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.26" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.26" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.50" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.50" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.62" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.62" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.74" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.74" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.86" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.253.115.86" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.2" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.2" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.4" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.8" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.10" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.12" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.12" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.16" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.16" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.18" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.18" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.67.85.20" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "156.67.85.20" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.176.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", + "ips": [ + "176.53.176.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.176.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Africa the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", + "ips": [ + "176.53.176.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.2" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.2" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.28" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.28" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.54" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.54" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.80" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.80" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.105" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.105" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.130" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.130" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.155" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.155" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.180" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.180" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.205" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.205" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.132.104.230" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "178.132.104.230" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.16" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.16" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.18" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.18" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.20" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.20" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.22" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.22" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.24" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.24" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.26" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.26" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.28" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.28" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.30" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.30" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.32" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.32" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.34" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.34" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.116.208.36" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "ips": [ + "194.116.208.36" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.177.1" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", + "ips": [ + "176.53.177.1" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.177.3" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", + "ips": [ + "176.53.177.3" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.178.1" + ] + }, + { + "vpn": "wireguard", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", + "ips": [ + "176.53.178.1" + ] + }, + { + "vpn": "openvpn", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.178.3" + ] + }, + { + "vpn": "wireguard", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", + "ips": [ + "176.53.178.3" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.179.1" + ] + }, + { + "vpn": "wireguard", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", + "ips": [ + "176.53.179.1" + ] + }, + { + "vpn": "openvpn", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.53.179.3" + ] + }, + { + "vpn": "wireguard", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", + "ips": [ + "176.53.179.3" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.32.1" + ] + }, + { + "vpn": "wireguard", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", + "ips": [ + "193.9.32.1" + ] + }, + { + "vpn": "openvpn", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.32.3" + ] + }, + { + "vpn": "wireguard", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", + "ips": [ + "193.9.32.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.213.82.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.226" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.226" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.229" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.229" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.232" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.232" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.235" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.238" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.238" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.241" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.241" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.244" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.244" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.247" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.247" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.250" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.250" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.86" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.86" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.34" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.34" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.44" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.44" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.54" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.54" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.49" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.49" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.39" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.57.39" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.66" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.66" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.71" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.71" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.76" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.76" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.81" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "84.17.37.81" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.1" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.1" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.3" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.3" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.5" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.5" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.7" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.7" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.9" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.9" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.11" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.11" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.13" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.15" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.15" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.17" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.17" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.19" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.21" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.21" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.234.23" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "185.225.234.23" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.8" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.8" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.13" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.13" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.18" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.18" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.23" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "156.146.45.23" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.19" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.27" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.35" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.35" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.43" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.43" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "202.165.70.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "202.165.70.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.100" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.100" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.102" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.102" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.104" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.104" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.106" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.106" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.108" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.108" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.110" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.110" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.112" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.112" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.116" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.116" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.118" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.118" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.120" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.120" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.122" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.122" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.124" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.124" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.126" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.126" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.128" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.128" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.132" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.132" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.134" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.134" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.136" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.136" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.244.138" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.138" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 311, + "hostname": "hk311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 312, + "hostname": "hk312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.56" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 313, + "hostname": "hk313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.37" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 314, + "hostname": "hk314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.57.42" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 315, + "hostname": "hk315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.226" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 316, + "hostname": "hk316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.228" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 317, + "hostname": "hk317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.233" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 318, + "hostname": "hk318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.45.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.99" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.99" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.28" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.28" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.83" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.83" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.171" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.171" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.243" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.243" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.114.235" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.189.114.235" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.128.26.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.128.26.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.104.187.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "185.104.187.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.115" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.115" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.123" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.123" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.27" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.27" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.35" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.35" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.43" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.43" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.51" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.51" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.59" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.59" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.67" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.67" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.75" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.75" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.192.91" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "217.138.192.91" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.243" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "ips": [ + "37.120.144.243" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.100" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.100" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.102" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.102" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.104" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.104" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.106" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.106" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.108" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.108" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.110" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.110" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.112" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.112" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.114" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.114" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.116" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.116" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.234.68.118" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "ips": [ + "185.234.68.118" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.1" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.1" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.2" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.3" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.3" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.4" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.4" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.5" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.5" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.6" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.6" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.7" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.7" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.8" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.8" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.9" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.9" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.17.122.10" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Africa the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", + "ips": [ + "81.17.122.10" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.100" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.100" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.102" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.102" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.104" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.104" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.106" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.106" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.108" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.108" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.110" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.110" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.112" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.112" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.114" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.114" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.116" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.116" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.83.118" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "ips": [ + "185.213.83.118" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.48.83" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "84.247.48.83" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.131" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.115" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.115" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.123" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.195" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.195" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.203" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.203" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.211" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.211" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.219" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.219" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.227" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.227" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.235" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "217.138.222.235" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "77.81.139.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.75" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.75" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.83" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.83" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.91" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.91" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.99" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.99" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.107" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.107" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.115" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.115" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.123" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.123" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.131" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.139" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.139" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.179" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.179" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.187" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.187" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.56.252.195" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.195" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.3" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.3" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.11" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.11" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.19" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.19" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.90.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "146.70.90.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.1" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.14" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.14" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.27" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.27" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.40" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.40" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.52" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.52" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.64" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.64" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.76" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.76" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.88" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.88" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.100" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.100" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.112" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.112" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.129" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.129" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.142" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.168" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.168" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.180" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.180" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.192" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.192" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.204" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.204" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.216" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.216" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.228" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.228" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.240" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "194.32.235.240" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 174, + "hostname": "ie174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.137.215" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 175, + "hostname": "ie175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.137.217" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 176, + "hostname": "ie176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.243.34" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 177, + "hostname": "ie177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.243.36" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.33.1" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", + "ips": [ + "193.9.33.1" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.33.3" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", + "ips": [ + "193.9.33.3" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.21" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.21" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.32" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.32" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.44" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.44" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.56" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.56" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.68" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.68" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.80" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.80" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.91" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.91" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.102" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.102" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.113" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.113" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.22" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.22" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.23" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.23" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.24" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.24" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.25" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.25" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.26" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.26" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.27" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.27" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.28" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.28" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.30" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.30" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.31" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.31" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.33" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.33" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.226.39" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Africa the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "ips": [ + "169.150.226.39" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.75" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.108" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.108" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.98" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.98" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.118" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.103" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.103" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.54.113" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "212.102.54.113" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.171" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.171" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.163" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.163" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.127.179" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "192.145.127.179" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.211" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.211" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.219" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.219" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.227" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.227" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.243" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.243" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.171" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.171" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.179" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.179" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.187" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.187" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.195" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.195" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.201.203" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "37.120.201.203" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.43" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.43" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.51" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.51" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.59" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.59" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.67" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.67" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.243" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.243" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.197.251" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.197.251" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.219.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "217.138.219.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.236" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.236" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.231" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.231" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.226" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.226" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.75" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.83" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.83" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.27" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "45.9.251.27" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "45.9.251.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.43" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.43" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.123" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.123" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.21.195" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "82.102.21.195" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.64.35" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "95.174.64.35" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.73.91" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "146.70.73.91" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.242" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.242" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.54.247" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "138.199.54.247" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.42" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.42" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.37" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.37" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.32" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.32" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.27" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.27" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.22" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.22" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.17" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.17" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.7" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.7" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.2" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.2" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.58" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.58" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.53" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.53" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.48" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.48" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.181" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "ips": [ + "178.249.211.181" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 241, + "hostname": "it241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.11" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 242, + "hostname": "it242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.13" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 243, + "hostname": "it243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.65" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "it244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.67" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 246, + "hostname": "it246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.80" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 247, + "hostname": "it247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.82" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 248, + "hostname": "it248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.75" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 249, + "hostname": "it249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.77" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 287, + "hostname": "it287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.85" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 288, + "hostname": "it288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.237.87" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 289, + "hostname": "it289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.4" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 290, + "hostname": "it290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.211.8" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.100" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.100" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.102" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.102" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.104" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.104" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.106" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.106" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.108" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.108" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.110" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.110" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.112" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.112" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.114" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.114" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.116" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.116" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.118" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.118" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.120" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.120" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.122" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.122" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.124" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.124" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.126" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.126" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.128" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.128" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.130" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.130" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.132" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.132" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.134" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.134" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.136" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.136" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.138" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.138" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.140" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.140" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.142" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.142" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.144" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.146" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.146" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.148" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.150" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.150" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.152" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.152" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.154" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.154" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.156" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.156" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.158" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.158" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.160" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.160" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.162" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.162" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.164" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.164" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.166" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.166" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.168" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.168" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.170" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.170" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "85.190.232.172" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.172" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.34.1" + ] + }, + { + "vpn": "wireguard", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", + "ips": [ + "193.9.34.1" + ] + }, + { + "vpn": "openvpn", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.34.3" + ] + }, + { + "vpn": "wireguard", + "country": "Jamaica", + "region": "The Americas", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", + "ips": [ + "193.9.34.3" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.100" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.100" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.102" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.104" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.104" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.106" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.108" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.110" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.110" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.112" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.112" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.114" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.114" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.116" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.118" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.118" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.120" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.120" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.122" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.124" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.124" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.126" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.126" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.128" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.128" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.130" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.130" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.132" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.132" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.134" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.134" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.136" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.136" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.138" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.138" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.140" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.140" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.142" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.142" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.144" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.144" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.146" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.146" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.148" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.148" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.150" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.150" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.152" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.152" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.154" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.154" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.156" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.156" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.158" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.158" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.160" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.160" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.162" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.162" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.164" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.164" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.166" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.166" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.168" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.168" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.247.170" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.170" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.54" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.54" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.211" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.211" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.116" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.119" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.119" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.122" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.122" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.206" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.206" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.209" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.209" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.194" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.194" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.197" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.200" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.194" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.194" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.197" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.200" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.212" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.218" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.218" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.215" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.215" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.212" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.206" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.206" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.51.209" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.209" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.154.235" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.154.235" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.93" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.90" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.90" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.87" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.87" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.84" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.84" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.78" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.78" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.75" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.75" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.72" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.72" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.69" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.69" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.19" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.19" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "5.181.235.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "82.102.28.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.28.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "82.102.28.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.147" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.147" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.174.163" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "91.207.174.163" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.96" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.102" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.102" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.105" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.105" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.35.108" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "156.146.35.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.71" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.71" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.76" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.59" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.59" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.210.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "jp678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "jp679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.113" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "jp680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.121" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "jp681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.193" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "jp682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "jp683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "jp684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.205" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "jp685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.207" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "jp686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "jp687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.202" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "jp688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "jp689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.118" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "jp700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 701, + "hostname": "jp701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.103" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 702, + "hostname": "jp702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 703, + "hostname": "jp703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.98" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 704, + "hostname": "jp704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 705, + "hostname": "jp705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 716, + "hostname": "jp716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.220" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 717, + "hostname": "jp717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.222" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 718, + "hostname": "jp718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.215" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 719, + "hostname": "jp719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.217" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 720, + "hostname": "jp720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 721, + "hostname": "jp721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 722, + "hostname": "jp722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.233" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 723, + "hostname": "jp723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.235" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 724, + "hostname": "jp724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.239" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 725, + "hostname": "jp725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.241" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 726, + "hostname": "jp726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.246" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 727, + "hostname": "jp727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.248" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 408, + "hostname": "nl408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 409, + "hostname": "nl409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 757, + "hostname": "nl757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "nl945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "nl946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 957, + "hostname": "nl957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 958, + "hostname": "nl958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1020, + "hostname": "nl1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1021, + "hostname": "nl1021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1022, + "hostname": "nl1022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1023, + "hostname": "nl1023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1024, + "hostname": "nl1024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1025, + "hostname": "nl1025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1036, + "hostname": "nl1036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1037, + "hostname": "nl1037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1038, + "hostname": "nl1038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.55" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1039, + "hostname": "nl1039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1043, + "hostname": "nl1043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1044, + "hostname": "nl1044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1045, + "hostname": "nl1045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1046, + "hostname": "nl1046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.217" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1048, + "hostname": "nl1048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.210" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 222, + "hostname": "pl222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.21" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 223, + "hostname": "pl223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.23" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 224, + "hostname": "pl224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.34" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 225, + "hostname": "pl225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.36" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 126, + "hostname": "pt126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.243" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 127, + "hostname": "pt127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.245" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 128, + "hostname": "pt128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 129, + "hostname": "pt129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.196" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 556, + "hostname": "sg556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.41" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 557, + "hostname": "sg557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.43" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 558, + "hostname": "sg558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.36" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 559, + "hostname": "sg559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.38" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 600, + "hostname": "sg600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 601, + "hostname": "sg601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 602, + "hostname": "sg602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.107.210" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.27" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.27" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.40" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.40" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.52" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.52" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.64" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.64" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.76" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.76" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.88" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.88" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.100" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.100" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.112" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.112" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.129" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.129" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.142" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.142" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.155" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.155" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.168" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.168" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.180" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.180" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.192" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.204" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.204" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.216" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.216" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 148, + "hostname": "za148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.151" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 149, + "hostname": "za149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.153" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 150, + "hostname": "za150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.194" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 151, + "hostname": "za151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.196" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.72" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.72" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.66" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.66" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.5" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.5" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.10" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.10" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "211.197.11.14" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "211.197.11.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.75" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "210.217.18.75" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.44" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.44" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.49" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.49" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.54" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.54" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.59" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.59" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.104" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.104" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "39.115.246.99" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "39.115.246.99" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.0" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.0" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.26" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.26" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.32" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.32" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.48" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.48" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.64" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.64" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.80" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.80" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.96" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.96" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.112" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.112" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.128" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.128" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "160.238.37.144" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "160.238.37.144" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.50.243" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.50.243" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.42" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.42" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.211" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.211" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.219" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.219" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.50.251" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.50.251" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.114" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.114" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.51.234" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.51.234" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.53.3" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.53.3" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.53.83" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.53.83" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.211" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.211" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.179" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.179" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.181.52.227" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "ips": [ + "108.181.52.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.100" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.100" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.102" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.102" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.104" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.104" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.106" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.106" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.108" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.108" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.110" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.110" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.112" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.112" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.114" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.114" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.116" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.116" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.118" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.118" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.120" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.120" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.122" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.122" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.124" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.124" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.126" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.126" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.128" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.128" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.130" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.130" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.132" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.132" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.134" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.134" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.136" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.136" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.138" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.138" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.140" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.140" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.142" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.142" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.144" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.144" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.214.97.146" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", + "ips": [ + "185.214.97.146" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.243" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.243" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.75" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.75" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.72" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.72" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.69" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.69" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.48.66" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "212.102.48.66" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.115" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.115" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.218.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "217.138.218.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.227" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.232" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.232" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.12.50.237" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.12.50.237" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.107.117" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "195.206.107.117" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.131" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.131" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.139" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.139" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.147" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.147" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.227" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.227" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.19" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.19" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.183.106.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.171" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.148.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.148.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.124.123" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "192.145.124.123" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.251" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.251" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.188.155" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "31.13.188.155" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.11" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.11" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.3" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.235" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.203" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.203" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.199.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "37.120.199.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.171" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.171" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.179" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.179" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.187" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.187" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.195" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.195" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.183.203" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "45.152.183.203" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.182.251" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.93.182.251" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.178.211" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "89.238.178.211" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.1" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.3" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.3" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.5" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.5" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.7" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.7" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.9" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.9" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.11" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.11" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.13" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.13" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.15" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.15" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.17" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.17" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.19" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.19" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.21" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.21" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.23" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.23" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.25" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.25" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.27" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.27" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.29" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.29" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.31" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.31" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.33" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.33" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.199.100.35" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "185.199.100.35" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.22.99" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "146.70.22.99" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.22.107" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "ips": [ + "146.70.22.107" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 214, + "hostname": "es214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.33" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 215, + "hostname": "es215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.35" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 216, + "hostname": "es216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.43" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 217, + "hostname": "es217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.45" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 218, + "hostname": "es218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.38" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 219, + "hostname": "es219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.40" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "es244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.236.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", + "ips": [ + "82.149.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", + "ips": [ + "82.149.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.173.34" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "194.127.173.34" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.174" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.174" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.175" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.175" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.148" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "195.242.213.148" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.145" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "213.232.87.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.153" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "195.242.213.153" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.125.108" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.230.125.108" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.132" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.236.201.132" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.219" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.219" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.209.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "37.120.209.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.75" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.75" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.123" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.123" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.145" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.145" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.130" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.130" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.150" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.150" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.140" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.140" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.135" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.135" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "84.17.36.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.171" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.171" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.203" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.203" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.219" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.219" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.227" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.227" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.91.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.83.91.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.195" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.195" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.235" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.235" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.243" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.243" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.103.251" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "86.106.103.251" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.220.211" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "45.12.220.211" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.163" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.163" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.179" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.179" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.187" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "91.132.138.187" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.71.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.247.71.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.3" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.3" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.5" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.5" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.7" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.7" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.9" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.9" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.13" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.13" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.15" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.15" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.17" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.17" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.21" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.23" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.23" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.25" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.25" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.29" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.29" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.31" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.31" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.33" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.33" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.37" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.37" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.39" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.39" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.41" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.41" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.45" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.45" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.47" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.47" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.49" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.49" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.219.140.53" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "185.219.140.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.11" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.11" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.19" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.19" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.27" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.27" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.35" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.35" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.43" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.43" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.51" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.51" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.59" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.59" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.67" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.67" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.115" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.115" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.131" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.131" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.139" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.139" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.147" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.147" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.191.155" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "31.13.191.155" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.21.107" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "146.70.21.107" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.240" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.240" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.96" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.96" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.112" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.112" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.128" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.128" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.144" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.144" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.160" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.160" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.176" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.176" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.192" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.192" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.208" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.208" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "79.142.77.224" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "ips": [ + "79.142.77.224" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 598, + "hostname": "se598.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.186" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 599, + "hostname": "se599.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.188" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 600, + "hostname": "se600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.248" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 601, + "hostname": "se601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.250" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 602, + "hostname": "se602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.152" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 603, + "hostname": "se603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.157" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 604, + "hostname": "se604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.138" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 605, + "hostname": "se605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.143" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "categories": [ + "Dedicated IP" + ], + "number": 606, + "hostname": "se606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.36.156" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.137.172" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.137.172" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.170" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.170" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.173.35" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "194.127.173.35" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.146" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "213.232.87.146" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.196" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.196" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.228" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.228" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.220" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.220" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.212" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.138.212" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.131" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.131" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.132" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.132" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.39.112.20" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "84.39.112.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.84" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.84" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.136.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "91.132.136.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.163" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.163" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.150" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.150" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.145" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.145" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.140" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.140" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.135" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.36.130" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "212.102.36.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.236.201.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.175.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.156.175.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.147" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.236.201.147" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.67" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.75" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.75" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.83" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.83" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.91" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.91" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.99" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.99" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.107" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.107" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "37.120.213.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.121" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.121" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.129" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.129" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.131" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.131" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.133" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.133" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.135" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.137" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.137" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.139" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.139" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.141" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.141" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.143" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.143" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.145" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.145" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.147" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.147" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.149" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.149" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.151" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.153" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.153" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.216.219.155" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.216.219.155" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.14" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.14" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.16" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.16" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.18" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.18" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.20" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.20" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.22" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.22" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.24" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.24" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.26" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.26" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.28" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.28" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.30" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.30" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.32" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.32" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.34" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.34" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.36" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.36" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.142" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.151" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.161" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.161" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.181" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.181" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.190" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.190" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.199" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.199" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.208" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.208" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.226" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.226" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.245" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.245" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.165.217" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "178.239.165.217" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.203.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "217.138.203.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.9.18.171" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.9.18.171" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.75" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.75" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.83" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.83" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.91" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.91" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.115" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.206.105.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.105.123" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "195.206.105.123" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.212.170.195" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.212.170.195" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.35" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.35" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.51" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.51" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.71.59" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.71.59" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.43" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.43" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.51" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.51" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.59" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.59" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.26.67" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "146.70.26.67" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.142" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.142" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.152" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.152" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.162" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.162" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.172" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.172" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.182" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.182" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.192" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.192" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.201" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.201" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.210" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.210" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.228" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.228" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.237" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.237" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.37.173.246" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "89.37.173.246" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.245" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.245" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.247" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.247" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.249" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.249" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.148.251" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "82.180.148.251" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.240" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.240" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.224" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.224" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.208" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.208" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.192" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.192" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.176" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.176" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.160" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.160" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.144" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.144" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 413, + "hostname": "ch413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.118" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 414, + "hostname": "ch414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.120" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 415, + "hostname": "ch415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.113" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 416, + "hostname": "ch416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.238.115" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.96" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.96" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.112" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.112" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.7.34.128" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "ips": [ + "185.7.34.128" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 420, + "hostname": "ch420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.6.151" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 421, + "hostname": "ch421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.6.153" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 422, + "hostname": "ch422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 423, + "hostname": "ch423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.68" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 424, + "hostname": "ch424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.98" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 425, + "hostname": "ch425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.100" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 426, + "hostname": "ch426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.103" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 427, + "hostname": "ch427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.105" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 428, + "hostname": "ch428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.111" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 430, + "hostname": "ch430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.116" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 431, + "hostname": "ch431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.118" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.79" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "84.17.37.79" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.100" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.100" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.102" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.102" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.104" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.104" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.106" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.106" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.108" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.108" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.110" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.110" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.112" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.112" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.116" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.116" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.118" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.118" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.120" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.120" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.122" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.122" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.124" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.124" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.126" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.126" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.128" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.128" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.130" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.130" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.132" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.132" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.134" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.134" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.136" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.136" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.213.82.138" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "ips": [ + "185.213.82.138" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.64" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.64" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.66" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.66" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.68" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.68" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.70" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.70" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.72" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.72" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.96" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.96" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.99" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.99" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.47" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.47" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.102" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.102" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "122.155.174.105" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "122.155.174.105" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.134.20" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.134.20" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.134.67" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.134.67" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.170.99" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.170.99" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "27.131.170.163" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "ips": [ + "27.131.170.163" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", + "ips": [ + "82.149.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", + "ips": [ + "82.149.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.62" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.62" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.50" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.50" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.38" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.38" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.26" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.26" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.14" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.14" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.2" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.2" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.74" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.74" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.86" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.86" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.98" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.98" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.139.110" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "87.249.139.110" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.136.155.130" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "45.136.155.130" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.136.155.142" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Africa the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "ips": [ + "45.136.155.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.139" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.139" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.143" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.143" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.147" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.147" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.151" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.151" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.155" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.155" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.159" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.159" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.163" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.163" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.167" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.167" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.171" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.171" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.175" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.175" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.172" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.172" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.166" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.166" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.46.161" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "143.244.46.161" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.218.180" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "ips": [ + "37.19.218.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.238.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.238.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.155.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Africa the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", + "ips": [ + "146.70.155.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.64" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.77" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.77" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.103" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.168" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.194" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.194" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.246" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.246" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.71" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.71" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.84" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.97" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.188" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.201" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.56.241" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.240.56.241" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.212.154.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", + "ips": [ + "188.212.154.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.44" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.54" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.56" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.60" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.62" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.64" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.64" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.70" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.74" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.74" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.76" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.78" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.80" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.80" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.88" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.94" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.96" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "188.241.157.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", + "ips": [ + "188.241.157.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.180" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.47.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.141" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.47.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.47.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.49" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "213.232.87.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.19.217.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.217.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.19.217.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "139.28.219.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.219.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "139.28.219.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 765, + "hostname": "uk765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.28.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 766, + "hostname": "uk766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.28.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "uk812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.191.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "uk813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "uk814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.121.139.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 870, + "hostname": "uk870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.191.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 871, + "hostname": "uk871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.99.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 873, + "hostname": "uk873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 874, + "hostname": "uk874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 875, + "hostname": "uk875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 876, + "hostname": "uk876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.180.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 877, + "hostname": "uk877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.217.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 878, + "hostname": "uk878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.217.5" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 879, + "hostname": "uk879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.223.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 880, + "hostname": "uk880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.223.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 884, + "hostname": "uk884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.169.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 885, + "hostname": "uk885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.169.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 886, + "hostname": "uk886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.44.79.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 887, + "hostname": "uk887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.44.79.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 888, + "hostname": "uk888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 889, + "hostname": "uk889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 890, + "hostname": "uk890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 891, + "hostname": "uk891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.205.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 892, + "hostname": "uk892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 893, + "hostname": "uk893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 894, + "hostname": "uk894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 895, + "hostname": "uk895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.170.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 896, + "hostname": "uk896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 897, + "hostname": "uk897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.65" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 898, + "hostname": "uk898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 899, + "hostname": "uk899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.164.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1602, + "hostname": "uk1602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.214.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1603, + "hostname": "uk1603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.19.214.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1604, + "hostname": "uk1604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.223.233.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1605, + "hostname": "uk1605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.223.233.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1606, + "hostname": "uk1606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.151.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1607, + "hostname": "uk1607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.151.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1608, + "hostname": "uk1608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.234.127.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1609, + "hostname": "uk1609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.234.127.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1610, + "hostname": "uk1610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1611, + "hostname": "uk1611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1612, + "hostname": "uk1612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.139" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1613, + "hostname": "uk1613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1614, + "hostname": "uk1614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1615, + "hostname": "uk1615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1616, + "hostname": "uk1616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1617, + "hostname": "uk1617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1618, + "hostname": "uk1618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1619, + "hostname": "uk1619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.153" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1620, + "hostname": "uk1620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1621, + "hostname": "uk1621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1622, + "hostname": "uk1622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1623, + "hostname": "uk1623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1624, + "hostname": "uk1624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.168" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1625, + "hostname": "uk1625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1626, + "hostname": "uk1626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1627, + "hostname": "uk1627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1628, + "hostname": "uk1628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1629, + "hostname": "uk1629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1630, + "hostname": "uk1630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1631, + "hostname": "uk1631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1632, + "hostname": "uk1632.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1633, + "hostname": "uk1633.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1634, + "hostname": "uk1634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1635, + "hostname": "uk1635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.171.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1636, + "hostname": "uk1636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.23" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1637, + "hostname": "uk1637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1638, + "hostname": "uk1638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1639, + "hostname": "uk1639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1640, + "hostname": "uk1640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.31" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1641, + "hostname": "uk1641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1642, + "hostname": "uk1642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1643, + "hostname": "uk1643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1644, + "hostname": "uk1644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1645, + "hostname": "uk1645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.41" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1646, + "hostname": "uk1646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1647, + "hostname": "uk1647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1648, + "hostname": "uk1648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1649, + "hostname": "uk1649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.49" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1650, + "hostname": "uk1650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1651, + "hostname": "uk1651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1652, + "hostname": "uk1652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1653, + "hostname": "uk1653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1654, + "hostname": "uk1654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1655, + "hostname": "uk1655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.114.129.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1657, + "hostname": "uk1657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1658, + "hostname": "uk1658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1659, + "hostname": "uk1659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1660, + "hostname": "uk1660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.95" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1661, + "hostname": "uk1661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.97" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1662, + "hostname": "uk1662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1663, + "hostname": "uk1663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1664, + "hostname": "uk1664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1665, + "hostname": "uk1665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.105" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.8" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.10" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.14" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.16" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.16" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.28" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.28" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.17.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "155.133.17.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "uk1708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "uk1709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "uk1710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "uk1711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.209" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "uk1713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "uk1714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.114.129.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.11" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.75" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.75" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.205" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.208" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.208" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.113.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "193.9.113.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.217" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.217" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.226" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.238" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.238" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.241" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.241" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.250" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.250" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.253" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.253" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.9" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.248" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.248" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.242" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.242" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.27" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.27" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.255.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.255.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.176.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.176.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.191.212" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.191.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.253.98.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.253.98.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.253.98.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.253.98.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.25" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.25" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.121" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.165" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.74.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "93.177.74.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.133.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.120.133.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.73.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.73.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.75.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.75.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.9.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.9.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.109.168.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.109.168.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.109.170.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.109.170.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.252.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.99.252.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.5.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.5.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.6.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.6.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.7.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.7.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.136.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.136.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.137.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.137.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.138.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.138.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.174.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.174.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.120.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.120.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.193.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.193.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.216.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.216.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.69.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.69.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.132.6.11" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "31.132.6.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.223.19" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.223.19" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.99.252.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.99.252.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.58.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.58.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.59.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.59.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.197.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.74.197.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.37" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.29" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.29" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.100.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "141.98.100.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.250" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.250" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.240" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.240" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.220" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.220" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.206" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.201" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.201" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.196" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.161" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.161" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.156" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.141" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.141" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.126" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.126" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.121" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.121" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.96" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.96" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.81" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.81" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.76" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.76" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.71" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.71" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.61" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.61" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.56" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.56" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.144.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.144.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.58" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.58" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.53" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.53" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.160.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.160.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.160.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.160.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.202.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.202.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.36.110.213" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.36.110.213" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.200.117" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.200.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.16.207.43" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.16.207.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.183.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.206.183.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.215.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.215.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.9" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.9" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.15" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.15" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.21" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.27" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.27" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.39" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.39" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.45" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.45" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.48" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.54" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.54" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.60" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.60" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.63" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.63" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.69" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.69" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.94" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.94" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.86" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.86" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.34.98.78" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.34.98.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.113" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.113" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.119" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.119" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.125" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.125" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.128" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.128" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.137" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.137" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.140" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.140" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.143" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.143" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.148" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.148" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.157" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.157" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.160" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.169" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.169" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.75" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.75" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.161.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.161.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.181" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.181" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.184" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.190" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.233.196" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.233.196" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.92.203.47" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "81.92.203.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.37" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.37" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.53" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.53" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.243.177.117" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.243.177.117" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.150.149" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.238.150.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.164" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.164" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.174" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.176" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.176" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.180" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.180" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.3.184" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.3.184" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.100" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.100" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.108" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.108" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.110" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.110" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.114" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.114" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.116" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.116" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.120" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.120" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.183" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.171" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.171" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.162.160" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.239.162.160" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.214" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.218" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.218" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.226" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.210" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.210" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.206" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.206" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.198" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.198" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.194" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.194" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.190" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.190" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.174" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.170" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.170" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.166" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.166" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.158" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.158" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.154" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.154" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.92.150" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "217.146.92.150" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.226.142.3" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.226.142.3" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.183" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.183" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.30.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.30.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.247" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.247" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.239" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.239" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.219" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.219" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.207" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.207" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.203" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.203" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.199" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.199" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.191" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.191" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.159" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.159" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.151" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.151" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.138" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.89" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.89" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.81" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.81" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.77" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "109.70.150.77" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.59.221.251" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.59.221.251" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.13" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.145" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.155" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.165" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.175" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.185" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.185" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.205" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.205" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.235" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.235" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.35.232.245" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "194.35.232.245" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.159.9.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "178.159.9.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.58.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.58.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.138.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.138.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.143.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.143.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.101.171.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "5.101.171.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.195.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.195.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.195.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.195.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.192.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.192.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.187.179" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.187.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.163" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.163" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.185.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.185.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.194.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.194.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.245.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.245.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.73.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.73.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.229.76.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.229.76.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.35.25.231" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "89.35.25.231" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.161.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.161.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.163.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.163.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.164.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.164.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.165.243" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.165.243" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.165.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.165.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.169.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.169.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.170.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.170.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.175.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.175.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.175.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.175.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.194.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.194.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.194.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.194.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.200.195" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.200.195" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.200.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.200.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.121.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.121.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.222.67" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "94.46.222.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.17.27.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.17.27.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.56.115" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.56.115" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.9.56.131" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "37.9.56.131" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.209.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.209.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.75.121.147" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.75.121.147" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.157.221.51" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.157.221.51" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.110.166.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "78.110.166.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.7" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.7" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.33" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.33" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.59" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.59" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.85" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.85" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.169.235.111" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "185.169.235.111" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.192.227" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "77.74.192.227" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.230" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.230" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.234" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.63.236" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "138.199.63.236" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.140.213.47" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "ips": [ + "195.140.213.47" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.4" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.4" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.6" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.8" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.10" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.10" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.14" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.16" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.16" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.20" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.20" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.26" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.26" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.28" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.28" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.30" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.30" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.36" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.36" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.38" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.38" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.40" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.40" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.12" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.22" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.32" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.32" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.42" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.42" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.52" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.52" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.62" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.62" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.72" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.72" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.82" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.82" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.102" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.132" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.142" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.142" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.152" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.172" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.172" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.182" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.182" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.192" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.192" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.202" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.202" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.212" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.212" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.214.45.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.214.45.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.2" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.2" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.13" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.13" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.24" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.24" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.35" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.35" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.46" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.46" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.57" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.57" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.68" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.68" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.79" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.79" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.101" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.112" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.112" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.145" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.145" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.156" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.156" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.167" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.167" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.189" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.189" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.200" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.200" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.211" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.211" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.222" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.222" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.233" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.219.20.244" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "103.219.20.244" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.130" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.132" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.132" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.134" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.134" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.136" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.136" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.138" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.138" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.207.140" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", + "ips": [ + "152.89.207.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Europe", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10562, + "hostname": "us10562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Europe", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10563, + "hostname": "us10563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.93.0.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.93.0.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.159" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.177" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.183" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.17.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.17.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.233.98.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "194.233.98.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.119.19.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "92.119.19.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.47.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "156.146.47.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.215.181.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "185.215.181.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.5.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "155.133.5.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2920, + "hostname": "us2920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2921, + "hostname": "us2921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2924, + "hostname": "us2924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.247.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2925, + "hostname": "us2925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.247.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2929, + "hostname": "us2929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2930, + "hostname": "us2930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.147.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2939, + "hostname": "us2939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.237.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2940, + "hostname": "us2940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.237.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2949, + "hostname": "us2949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2950, + "hostname": "us2950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4959, + "hostname": "us4959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4960, + "hostname": "us4960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4965, + "hostname": "us4965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4966, + "hostname": "us4966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4971, + "hostname": "us4971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4972, + "hostname": "us4972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4973, + "hostname": "us4973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4974, + "hostname": "us4974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4977, + "hostname": "us4977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4978, + "hostname": "us4978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4979, + "hostname": "us4979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4984, + "hostname": "us4984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4985, + "hostname": "us4985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.146.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4992, + "hostname": "us4992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4993, + "hostname": "us4993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4994, + "hostname": "us4994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.245.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4995, + "hostname": "us4995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.245.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.42.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "64.44.42.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.230.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "172.93.230.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.40.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.40.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.105.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.105.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.175.104.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.175.104.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.174.17.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.174.17.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.73.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.73.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.59.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.59.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.173.69.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "107.173.69.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.14.195.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "ips": [ + "45.14.195.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10106, + "hostname": "us10106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10107, + "hostname": "us10107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10108, + "hostname": "us10108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.153.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10109, + "hostname": "us10109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10159, + "hostname": "us10159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10160, + "hostname": "us10160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10161, + "hostname": "us10161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.147.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10162, + "hostname": "us10162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10163, + "hostname": "us10163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.32.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10164, + "hostname": "us10164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.9.251.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.117.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "192.145.117.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.182.32.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "ips": [ + "5.182.32.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.93.177.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "172.93.177.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.177" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.167" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.140.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "64.44.140.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.182.121" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.182.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.183.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "89.187.183.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.229" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.232" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.42.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "138.199.42.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.61.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "143.244.61.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.219.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "185.203.219.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.172.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.172.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.195.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "181.215.195.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "ips": [ + "169.150.232.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10291, + "hostname": "us10291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10292, + "hostname": "us10292.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10293, + "hostname": "us10293.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10294, + "hostname": "us10294.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10303, + "hostname": "us10303.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10304, + "hostname": "us10304.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10305, + "hostname": "us10305.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10306, + "hostname": "us10306.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10367, + "hostname": "us10367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10368, + "hostname": "us10368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10375, + "hostname": "us10375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10376, + "hostname": "us10376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10377, + "hostname": "us10377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10378, + "hostname": "us10378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10403, + "hostname": "us10403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10404, + "hostname": "us10404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10460, + "hostname": "us10460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10461, + "hostname": "us10461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10464, + "hostname": "us10464.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10465, + "hostname": "us10465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10488, + "hostname": "us10488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10489, + "hostname": "us10489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10496, + "hostname": "us10496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10497, + "hostname": "us10497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10515, + "hostname": "us10515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10516, + "hostname": "us10516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10522, + "hostname": "us10522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10524, + "hostname": "us10524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10525, + "hostname": "us10525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10526, + "hostname": "us10526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10527, + "hostname": "us10527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.240.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10574, + "hostname": "us10574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10575, + "hostname": "us10575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10576, + "hostname": "us10576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10577, + "hostname": "us10577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2943, + "hostname": "us2943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2944, + "hostname": "us2944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4953, + "hostname": "us4953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4954, + "hostname": "us4954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4961, + "hostname": "us4961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4962, + "hostname": "us4962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4967, + "hostname": "us4967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4968, + "hostname": "us4968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4980, + "hostname": "us4980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4981, + "hostname": "us4981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4986, + "hostname": "us4986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4987, + "hostname": "us4987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4996, + "hostname": "us4996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4997, + "hostname": "us4997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4998, + "hostname": "us4998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4999, + "hostname": "us4999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.40.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "212.102.40.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.175.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "89.187.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.247.70.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.247.70.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.112.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "194.110.112.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.185" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.206" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.220" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.234" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.190.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.190.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.226.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.226.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "2.56.191.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "2.56.191.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.196.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "181.214.196.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "145.14.135.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "145.14.135.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10110, + "hostname": "us10110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10111, + "hostname": "us10111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10112, + "hostname": "us10112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10113, + "hostname": "us10113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.109" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.121" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.125" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.125" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.127" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.127" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.157" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.157" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.159" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.167" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.169" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.255.130.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "ips": [ + "185.255.130.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10167, + "hostname": "us10167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10168, + "hostname": "us10168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10173, + "hostname": "us10173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10174, + "hostname": "us10174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10175, + "hostname": "us10175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10176, + "hostname": "us10176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.200.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10179, + "hostname": "us10179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10180, + "hostname": "us10180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10254, + "hostname": "us10254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10255, + "hostname": "us10255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10256, + "hostname": "us10256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10257, + "hostname": "us10257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10269, + "hostname": "us10269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10270, + "hostname": "us10270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10275, + "hostname": "us10275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10276, + "hostname": "us10276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10277, + "hostname": "us10277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10278, + "hostname": "us10278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10349, + "hostname": "us10349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10350, + "hostname": "us10350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.254.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10452, + "hostname": "us10452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10453, + "hostname": "us10453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10454, + "hostname": "us10454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10455, + "hostname": "us10455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10462, + "hostname": "us10462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10463, + "hostname": "us10463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10480, + "hostname": "us10480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10481, + "hostname": "us10481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10482, + "hostname": "us10482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10483, + "hostname": "us10483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10538, + "hostname": "us10538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10539, + "hostname": "us10539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10540, + "hostname": "us10540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10541, + "hostname": "us10541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10542, + "hostname": "us10542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10543, + "hostname": "us10543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10572, + "hostname": "us10572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10573, + "hostname": "us10573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.100.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10578, + "hostname": "us10578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 10579, + "hostname": "us10579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.223.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.87" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.45.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.45.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.137" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.44.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "212.102.44.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "83.136.182.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "83.136.182.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.80.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "ips": [ + "64.44.80.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.59.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "185.229.59.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.133" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.189" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.156.136.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "ips": [ + "194.156.136.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2945, + "hostname": "us2945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.185.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2946, + "hostname": "us2946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.185.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4950, + "hostname": "us4950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.121" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4951, + "hostname": "us4951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4957, + "hostname": "us4957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4958, + "hostname": "us4958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4963, + "hostname": "us4963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4964, + "hostname": "us4964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4969, + "hostname": "us4969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4970, + "hostname": "us4970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4975, + "hostname": "us4975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4976, + "hostname": "us4976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4982, + "hostname": "us4982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4983, + "hostname": "us4983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4988, + "hostname": "us4988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4989, + "hostname": "us4989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4990, + "hostname": "us4990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.49.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4991, + "hostname": "us4991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.149" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.207.175.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.207.175.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.45.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.45.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.184" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.188" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.200.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.236.200.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.87.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.245.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.216.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "139.28.216.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.132.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "37.120.132.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.83.89.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "45.83.89.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.204.253" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "152.89.204.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.220.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "91.196.220.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.74.184" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.216.74.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.44.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "84.17.44.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.9.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "138.199.9.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.221.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.202.221.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.187", + "2a0d:5600:8:26a::3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.187", + "2a0d:5600:8:26a::3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.126.155", + "2a0d:5600:8:27a::3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "185.230.126.155", + "2a0d:5600:8:27a::3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.206.104.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "195.206.104.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.100.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "146.70.100.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.70.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.214.70.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.215.169.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "ips": [ + "181.215.169.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10100, + "hostname": "us10100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10101, + "hostname": "us10101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10102, + "hostname": "us10102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10103, + "hostname": "us10103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10104, + "hostname": "us10104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10105, + "hostname": "us10105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10114, + "hostname": "us10114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10115, + "hostname": "us10115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10153, + "hostname": "us10153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10154, + "hostname": "us10154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10155, + "hostname": "us10155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10156, + "hostname": "us10156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10169, + "hostname": "us10169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10170, + "hostname": "us10170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10171, + "hostname": "us10171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10172, + "hostname": "us10172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.247.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10177, + "hostname": "us10177.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10178, + "hostname": "us10178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10193, + "hostname": "us10193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10194, + "hostname": "us10194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10252, + "hostname": "us10252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10253, + "hostname": "us10253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10260, + "hostname": "us10260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10261, + "hostname": "us10261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10262, + "hostname": "us10262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10263, + "hostname": "us10263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10271, + "hostname": "us10271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10272, + "hostname": "us10272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10279, + "hostname": "us10279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10280, + "hostname": "us10280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10347, + "hostname": "us10347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10348, + "hostname": "us10348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.243.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10405, + "hostname": "us10405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10406, + "hostname": "us10406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10456, + "hostname": "us10456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.177" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10457, + "hostname": "us10457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10458, + "hostname": "us10458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10459, + "hostname": "us10459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10466, + "hostname": "us10466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10467, + "hostname": "us10467.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.31.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10476, + "hostname": "us10476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10477, + "hostname": "us10477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.53.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10478, + "hostname": "us10478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10479, + "hostname": "us10479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10500, + "hostname": "us10500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10501, + "hostname": "us10501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10513, + "hostname": "us10513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10514, + "hostname": "us10514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10528, + "hostname": "us10528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10529, + "hostname": "us10529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10530, + "hostname": "us10530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10531, + "hostname": "us10531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10556, + "hostname": "us10556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10557, + "hostname": "us10557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10568, + "hostname": "us10568.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10570, + "hostname": "us10570.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.183" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10582, + "hostname": "us10582.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10583, + "hostname": "us10583.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.30.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10584, + "hostname": "us10584.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 10585, + "hostname": "us10585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.203.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "37.19.212.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.208" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "37.19.212.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.116.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "192.145.116.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.202" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.202" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.114.38.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "217.114.38.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.144.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.144.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.85.145.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "45.85.145.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "154.47.22.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.196.69.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "91.196.69.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.22.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "ips": [ + "154.47.22.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.157.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.157.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.49" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.86.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.245.86.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.200" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.197" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.206" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "156.146.43.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.87.214.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "45.87.214.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.215.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "37.120.215.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.27.12.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "193.27.12.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "138.199.50.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "94.140.11.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "94.140.11.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.218.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "185.203.218.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.150.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.150.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.214.151.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "ips": [ + "181.214.151.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10295, + "hostname": "us10295.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10296, + "hostname": "us10296.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.50.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10297, + "hostname": "us10297.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10298, + "hostname": "us10298.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10299, + "hostname": "us10299.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10300, + "hostname": "us10300.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.43.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10301, + "hostname": "us10301.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10302, + "hostname": "us10302.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10307, + "hostname": "us10307.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10308, + "hostname": "us10308.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10355, + "hostname": "us10355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10356, + "hostname": "us10356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10379, + "hostname": "us10379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10380, + "hostname": "us10380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.224.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10407, + "hostname": "us10407.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10408, + "hostname": "us10408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10440, + "hostname": "us10440.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.209" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10441, + "hostname": "us10441.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10442, + "hostname": "us10442.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10443, + "hostname": "us10443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10444, + "hostname": "us10444.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10445, + "hostname": "us10445.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10492, + "hostname": "us10492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10493, + "hostname": "us10493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10532, + "hostname": "us10532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10534, + "hostname": "us10534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10535, + "hostname": "us10535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10550, + "hostname": "us10550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10551, + "hostname": "us10551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10580, + "hostname": "us10580.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10581, + "hostname": "us10581.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.204.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "169.150.204.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.249.214.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "178.249.214.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.215" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.212.224" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.212.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.245" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.55.253" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "86.107.55.253" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.103.48.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.103.48.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.103.48.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.33.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "212.102.33.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "156.146.36.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.88" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.206.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.206.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.206.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.206.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.234.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "5.181.234.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.178.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.178.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "89.187.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.243" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.243" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.152.180.251" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.152.180.251" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.198.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.198.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "84.17.35.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.196.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.196.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.95" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.52.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "138.199.52.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.199.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.199.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.218" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.220" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.220" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.224" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.232" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.234" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.234" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.244" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.244" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.250" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.250" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.252" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.252" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "62.182.99.254" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "62.182.99.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.37" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.39" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.43" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.43" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.49" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.243.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.187.243.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.196.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.19.196.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.91" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.91" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.179" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.208.187" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "217.138.208.187" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.202.220.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.202.220.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.219" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.219" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.113.72.75" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "176.113.72.75" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.13.189.123" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "31.13.189.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.138.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "37.120.138.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.163" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.163" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.137.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "91.132.137.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "191.101.160.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "191.101.160.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.180" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.180" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.16.157.240" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "154.16.157.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.45" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.45" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.67" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.140.184.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "45.140.184.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.79" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.216.201.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.216.201.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10157, + "hostname": "us10157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.49" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10158, + "hostname": "us10158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10165, + "hostname": "us10165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10166, + "hostname": "us10166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.36.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10181, + "hostname": "us10181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10182, + "hostname": "us10182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10183, + "hostname": "us10183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10184, + "hostname": "us10184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10185, + "hostname": "us10185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10186, + "hostname": "us10186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10187, + "hostname": "us10187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10188, + "hostname": "us10188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10189, + "hostname": "us10189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10190, + "hostname": "us10190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10191, + "hostname": "us10191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10192, + "hostname": "us10192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10195, + "hostname": "us10195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10196, + "hostname": "us10196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10197, + "hostname": "us10197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10198, + "hostname": "us10198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10258, + "hostname": "us10258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10259, + "hostname": "us10259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.26.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10264, + "hostname": "us10264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10265, + "hostname": "us10265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10266, + "hostname": "us10266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10267, + "hostname": "us10267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10273, + "hostname": "us10273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10274, + "hostname": "us10274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10281, + "hostname": "us10281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.177.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10282, + "hostname": "us10282.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10283, + "hostname": "us10283.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10284, + "hostname": "us10284.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10285, + "hostname": "us10285.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10286, + "hostname": "us10286.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10313, + "hostname": "us10313.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10314, + "hostname": "us10314.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10315, + "hostname": "us10315.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10316, + "hostname": "us10316.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.79" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10351, + "hostname": "us10351.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10352, + "hostname": "us10352.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.206" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10353, + "hostname": "us10353.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10354, + "hostname": "us10354.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.37.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.181" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.221" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.184.228.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.184.228.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "66.111.61.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "66.111.61.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10381, + "hostname": "us10381.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10382, + "hostname": "us10382.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "152.89.206.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "152.89.206.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10401, + "hostname": "us10401.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10402, + "hostname": "us10402.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10410, + "hostname": "us10410.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.21.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10411, + "hostname": "us10411.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.21.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.215.203" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "ips": [ + "185.244.215.203" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10448, + "hostname": "us10448.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10449, + "hostname": "us10449.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10450, + "hostname": "us10450.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10451, + "hostname": "us10451.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.252.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10468, + "hostname": "us10468.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10469, + "hostname": "us10469.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10470, + "hostname": "us10470.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10471, + "hostname": "us10471.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10472, + "hostname": "us10472.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10473, + "hostname": "us10473.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.217" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10474, + "hostname": "us10474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10475, + "hostname": "us10475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10490, + "hostname": "us10490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10491, + "hostname": "us10491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.35.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10494, + "hostname": "us10494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10495, + "hostname": "us10495.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10511, + "hostname": "us10511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10512, + "hostname": "us10512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.249.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10536, + "hostname": "us10536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.47.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10537, + "hostname": "us10537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.47.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10552, + "hostname": "us10552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10553, + "hostname": "us10553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10554, + "hostname": "us10554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.167" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10555, + "hostname": "us10555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10558, + "hostname": "us10558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10559, + "hostname": "us10559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10560, + "hostname": "us10560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10561, + "hostname": "us10561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10564, + "hostname": "us10564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10565, + "hostname": "us10565.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10566, + "hostname": "us10566.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10567, + "hostname": "us10567.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.11.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.119.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "192.145.119.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.86.210.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "ips": [ + "45.86.210.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.172.52.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "ips": [ + "185.172.52.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.222.254.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "31.222.254.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.13.235.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "ips": [ + "45.13.235.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.124" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.124" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.126" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.126" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.128" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.134" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.136" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.148" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.152" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.145.118.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "192.145.118.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.187.168.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.187.168.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.207" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.207" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.176" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.144" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.31" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.31" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.211.32.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "185.211.32.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.3" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.7" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.7" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.9" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.13" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.13" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.15" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.93.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "ips": [ + "194.195.93.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.140" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.165" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.5" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.5" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.11" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.11" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.35" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.41" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.41" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.59" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.95" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.95" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.119" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.47.122" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.47.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "212.102.46.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "156.146.51.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "156.146.51.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.41.182" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "84.17.41.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.6" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.10" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.12" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.16" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.16" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.20" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.20" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.24" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.30" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.32" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.36" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.36" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.38" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.38" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.42" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.42" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.44" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.48" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.52" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.52" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.58" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.60" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.68" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.76" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.76" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.80" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.80" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.86" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.88" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.88" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.94" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.94" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.158" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.158" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.160" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.164" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.164" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.168" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.29.61.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "ips": [ + "193.29.61.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10287, + "hostname": "us10287.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10288, + "hostname": "us10288.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10289, + "hostname": "us10289.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10290, + "hostname": "us10290.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "156.146.51.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10309, + "hostname": "us10309.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10310, + "hostname": "us10310.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10311, + "hostname": "us10311.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10312, + "hostname": "us10312.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10438, + "hostname": "us10438.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10439, + "hostname": "us10439.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10484, + "hostname": "us10484.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10485, + "hostname": "us10485.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.119" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10486, + "hostname": "us10486.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10487, + "hostname": "us10487.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10498, + "hostname": "us10498.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10499, + "hostname": "us10499.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.137" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10544, + "hostname": "us10544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10545, + "hostname": "us10545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10546, + "hostname": "us10546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10547, + "hostname": "us10547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10548, + "hostname": "us10548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.140" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "categories": [ + "Dedicated IP" + ], + "number": 10549, + "hostname": "us10549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.51.142" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", + "ips": [ + "82.149.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", + "ips": [ + "82.149.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.64.1" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", + "ips": [ + "212.97.64.1" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.64.3" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", + "ips": [ + "212.97.64.3" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.65.1" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", + "ips": [ + "212.97.65.1" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.65.3" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", + "ips": [ + "212.97.65.3" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "vn18.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.220.51" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "vn18.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.51" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "vn19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.54" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "vn19.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.54" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "vn20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.57" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "vn20.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.57" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "vn21.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.220.6" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "vn21.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.6" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "vn22.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.41" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "vn22.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.41" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "vn27.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.220.47" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "vn27.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.220.47" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.241.132" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.241.132" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.241.148" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.241.148" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "125.212.217.212" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.217.212" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.43" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.43" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.121" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.121" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.48" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.48" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.53" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.53" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.163.218.58" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "103.163.218.58" + ] + } + ] + }, + "perfect privacy": { + "version": 1, + "timestamp": 1682032240, + "servers": [ + { + "vpn": "openvpn", + "city": "Amsterdam", + "tcp": true, + "udp": true, + "ips": [ + "37.48.94.1", + "37.48.94.1", + "37.48.94.1", + "95.211.95.233", + "85.17.28.145", + "95.168.167.236", + "85.17.64.131", + "95.211.95.244" + ] + }, + { + "vpn": "openvpn", + "city": "Basel", + "tcp": true, + "udp": true, + "ips": [ + "82.199.134.162", + "82.199.134.162", + "82.199.134.162", + "80.255.7.66" + ] + }, + { + "vpn": "openvpn", + "city": "Belgrade", + "tcp": true, + "udp": true, + "ips": [ + "152.89.160.98", + "152.89.160.98", + "152.89.160.98" + ] + }, + { + "vpn": "openvpn", + "city": "Berlin", + "tcp": true, + "udp": true, + "ips": [ + "80.255.7.98", + "80.255.7.98", + "80.255.7.98" + ] + }, + { + "vpn": "openvpn", + "city": "Bucharest", + "tcp": true, + "udp": true, + "ips": [ + "185.57.82.25", + "185.57.82.25", + "185.57.82.25" + ] + }, + { + "vpn": "openvpn", + "city": "Calais", + "tcp": true, + "udp": true, + "ips": [ + "149.202.77.77", + "149.202.77.77", + "149.202.77.77" + ] + }, + { + "vpn": "openvpn", + "city": "Chicago", + "tcp": true, + "udp": true, + "ips": [ + "104.237.193.26", + "104.237.193.26", + "104.237.193.26" + ] + }, + { + "vpn": "openvpn", + "city": "Copenhagen", + "tcp": true, + "udp": true, + "ips": [ + "185.152.32.66", + "185.152.32.66", + "185.152.32.66" + ] + }, + { + "vpn": "openvpn", + "city": "Dallas", + "tcp": true, + "udp": true, + "ips": [ + "138.128.136.164", + "138.128.136.164", + "138.128.136.164" + ] + }, + { + "vpn": "openvpn", + "city": "Erfurt", + "tcp": true, + "udp": true, + "ips": [ + "217.114.218.18", + "217.114.218.18", + "217.114.218.18" + ] + }, + { + "vpn": "openvpn", + "city": "Frankfurt", + "tcp": true, + "udp": true, + "ips": [ + "37.58.58.239", + "37.58.58.239", + "37.58.58.239", + "178.162.194.30" + ] + }, + { + "vpn": "openvpn", + "city": "Hamburg", + "tcp": true, + "udp": true, + "ips": [ + "80.255.7.114", + "80.255.7.114", + "80.255.7.114" + ] + }, + { + "vpn": "openvpn", + "city": "Hongkong", + "tcp": true, + "udp": true, + "ips": [ + "209.58.188.129", + "209.58.188.129", + "209.58.188.129" + ] + }, + { + "vpn": "openvpn", + "city": "Jerusalem", + "tcp": true, + "udp": true, + "ips": [ + "82.81.85.231", + "82.81.85.231", + "82.81.85.231" + ] + }, + { + "vpn": "openvpn", + "city": "London", + "tcp": true, + "udp": true, + "ips": [ + "82.199.130.34", + "82.199.130.34", + "82.199.130.34", + "5.187.21.98" + ] + }, + { + "vpn": "openvpn", + "city": "LosAngeles", + "tcp": true, + "udp": true, + "ips": [ + "162.245.206.242", + "162.245.206.242", + "162.245.206.242" + ] + }, + { + "vpn": "openvpn", + "city": "Madrid", + "tcp": true, + "udp": true, + "ips": [ + "185.183.106.146", + "185.183.106.146", + "185.183.106.146" + ] + }, + { + "vpn": "openvpn", + "city": "Malmoe", + "tcp": true, + "udp": true, + "ips": [ + "194.68.170.51", + "194.68.170.51", + "194.68.170.51" + ] + }, + { + "vpn": "openvpn", + "city": "Manchester", + "tcp": true, + "udp": true, + "ips": [ + "217.138.196.98", + "217.138.196.98", + "217.138.196.98" + ] + }, + { + "vpn": "openvpn", + "city": "Miami", + "tcp": true, + "udp": true, + "ips": [ + "38.132.118.66", + "38.132.118.66", + "38.132.118.66" + ] + }, + { + "vpn": "openvpn", + "city": "Milan", + "tcp": true, + "udp": true, + "ips": [ + "192.145.127.210", + "192.145.127.210", + "192.145.127.210" + ] + }, + { + "vpn": "openvpn", + "city": "Montreal", + "tcp": true, + "udp": true, + "ips": [ + "167.114.209.103", + "167.114.209.103", + "167.114.209.103" + ] + }, + { + "vpn": "openvpn", + "city": "Moscow", + "tcp": true, + "udp": true, + "ips": [ + "192.162.100.240", + "192.162.100.240", + "192.162.100.240" + ] + }, + { + "vpn": "openvpn", + "city": "NewYork", + "tcp": true, + "udp": true, + "ips": [ + "96.9.246.194", + "96.9.246.194", + "96.9.246.194" + ] + }, + { + "vpn": "openvpn", + "city": "Nuremberg", + "tcp": true, + "udp": true, + "ips": [ + "80.255.10.194", + "80.255.10.194", + "80.255.10.194", + "81.95.5.34" + ] + }, + { + "vpn": "openvpn", + "city": "Oslo", + "tcp": true, + "udp": true, + "ips": [ + "91.205.187.186", + "91.205.187.186", + "91.205.187.186" + ] + }, + { + "vpn": "openvpn", + "city": "Paris", + "tcp": true, + "udp": true, + "ips": [ + "5.135.143.84", + "5.135.143.84", + "5.135.143.84" + ] + }, + { + "vpn": "openvpn", + "city": "Prague", + "tcp": true, + "udp": true, + "ips": [ + "195.138.249.2", + "195.138.249.2", + "195.138.249.2" + ] + }, + { + "vpn": "openvpn", + "city": "Reykjavik", + "tcp": true, + "udp": true, + "ips": [ + "82.221.111.10", + "82.221.111.10", + "82.221.111.10" + ] + }, + { + "vpn": "openvpn", + "city": "Riga", + "tcp": true, + "udp": true, + "ips": [ + "46.183.221.194", + "46.183.221.194", + "46.183.221.194" + ] + }, + { + "vpn": "openvpn", + "city": "Rotterdam", + "tcp": true, + "udp": true, + "ips": [ + "31.204.150.106", + "31.204.150.106", + "31.204.150.106", + "31.204.150.138", + "31.204.152.189", + "31.204.152.102", + "31.204.153.106" + ] + }, + { + "vpn": "openvpn", + "city": "Singapore", + "tcp": true, + "udp": true, + "ips": [ + "103.254.153.202", + "103.254.153.202", + "103.254.153.202", + "209.58.162.197" + ] + }, + { + "vpn": "openvpn", + "city": "Stockholm", + "tcp": true, + "udp": true, + "ips": [ + "185.217.1.2", + "185.217.1.2", + "185.217.1.2", + "185.41.240.18" + ] + }, + { + "vpn": "openvpn", + "city": "Sydney", + "tcp": true, + "udp": true, + "ips": [ + "66.203.112.47", + "66.203.112.47", + "66.203.112.47", + "66.203.112.50" + ] + }, + { + "vpn": "openvpn", + "city": "Tokyo", + "tcp": true, + "udp": true, + "ips": [ + "31.204.145.166", + "31.204.145.166", + "31.204.145.166" + ] + }, + { + "vpn": "openvpn", + "city": "Vienna", + "tcp": true, + "udp": true, + "ips": [ + "146.70.28.34", + "146.70.28.34", + "146.70.28.34" + ] + }, + { + "vpn": "openvpn", + "city": "Warsaw", + "tcp": true, + "udp": true, + "ips": [ + "146.70.85.162", + "146.70.85.162", + "146.70.85.162" + ] + }, + { + "vpn": "openvpn", + "city": "Zurich", + "tcp": true, + "udp": true, + "ips": [ + "37.120.213.210", + "37.120.213.210", + "37.120.213.210", + "152.89.162.226", + "37.120.213.194" + ] + } + ] + }, + "privado": { + "version": 6, + "timestamp": 1724023161, + "servers": [ + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "arn-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "arn-007.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.216" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ath-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.232" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ber-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.128" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ber-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bts-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bud-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bud-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.10" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cdg-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cgk-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.16" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "cgk-011.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.24" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "eze-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "fra-011.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.237.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "gru-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.48" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "iev-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ist-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.80" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "kul-014.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.96" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lis-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.112" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lis-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.120" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "lju-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.136" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "mxp-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.144" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "osl-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.160" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "otp-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.176" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "otp-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "rix-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.192" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "rix-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.200" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "sin-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.64" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "sof-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.208" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "tia-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.232" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "vie-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.32" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "waw-065.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.240" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "waw-066.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.239.247" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "zrh-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "zrh-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.238.11" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "bud-001.vpn.privado.io", + "udp": true, + "ips": [ + "185.128.26.194" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "bud-002.vpn.privado.io", + "udp": true, + "ips": [ + "185.128.26.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-025.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-026.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-027.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-028.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-029.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-030.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.45" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-031.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.53" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-032.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-033.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.241.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-034.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-035.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-036.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ams-037.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.245.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "beg-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "beg-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.152" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.64" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-007.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.64" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bom-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bru-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "bru-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "cph-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "cph-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "dub-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "dub-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.168" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "hel-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.176" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "hel-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jnb-008.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jnb-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.246.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jrs-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "jrs-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-061.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.37" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-062.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.44" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-063.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.51" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-064.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.58" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "lhr-065.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.74.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mad-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mad-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.247.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "man-009.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "man-010.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "prg-003.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "prg-004.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.243.232" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "rkv-007.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.72.15" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "svo-005.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "svo-006.vpn.privado.io", + "udp": true, + "ips": [ + "91.148.242.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "akl-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "akl-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.184" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "bkk-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "bkk-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "den-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "den-016.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-055.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-056.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-059.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.60.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-061.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-062.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "dfw-063.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "hkg-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "hkg-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.200" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "icn-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "icn-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.168" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-014.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "lax-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.5.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mex-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mnl-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "mnl-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "nrt-011.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "nrt-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "pdx-031.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "pdx-032.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sea-021.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sea-022.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.208" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sfo-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sfo-008.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sjc-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "sjc-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "syd-012.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "syd-013.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.6.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "tsa-015.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "tsa-016.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.7.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-088.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-089.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "District of Columbia", + "city": "Washington", + "hostname": "dca-090.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-091.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-092.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Maryland", + "city": "North Potomac", + "hostname": "dca-093.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.29.204" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "atl-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.32" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "atl-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.48" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dca-086.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.61.9" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dtw-007.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.31.240" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "dtw-008.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.31.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-059.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.30" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-060.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.37" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-061.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.44" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-062.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-063.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-064.vpn.privado.io", + "udp": true, + "ips": [ + "81.171.75.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-065.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "jfk-066.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "mia-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "mia-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-087.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.128" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-088.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-089.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-090.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-091.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.148" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "ord-092.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "stl-003.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.160" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "stl-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.176" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yul-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yul-006.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yyz-004.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.224" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "yyz-005.vpn.privado.io", + "udp": true, + "ips": [ + "85.12.30.240" + ] + } + ] + }, + "private internet access": { + "version": 1, + "timestamp": 1723811974, + "servers": [ + { + "vpn": "openvpn", + "region": "AU Adelaide", + "server_name": "adelaide401", + "hostname": "au-adelaide-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.62.8", + "173.244.62.16", + "173.244.62.26", + "173.244.62.12", + "173.244.62.18", + "173.244.62.25", + "173.244.62.27" + ] + }, + { + "vpn": "openvpn", + "region": "AU Adelaide", + "server_name": "adelaide402", + "hostname": "au-adelaide-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.62.51", + "173.244.62.60", + "173.244.62.57", + "173.244.62.43", + "173.244.62.56", + "173.244.62.46", + "173.244.62.44", + "173.244.62.41", + "173.244.62.36", + "173.244.62.54", + "173.244.62.45" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane401", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "223.252.34.45", + "223.252.34.50", + "223.252.34.37", + "223.252.34.47", + "223.252.34.41", + "223.252.34.39", + "223.252.34.48", + "223.252.34.36", + "223.252.34.51", + "223.252.34.56" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane402", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "202.125.43.73", + "202.125.43.79", + "202.125.43.90", + "202.125.43.92", + "202.125.43.93", + "202.125.43.84", + "202.125.43.75", + "202.125.43.70", + "202.125.43.80" + ] + }, + { + "vpn": "openvpn", + "region": "AU Brisbane", + "server_name": "brisbane403", + "hostname": "au-brisbane-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "202.125.43.16", + "202.125.43.21", + "202.125.43.6", + "202.125.43.18", + "202.125.43.4", + "202.125.43.8", + "202.125.43.7", + "202.125.43.24", + "202.125.43.25", + "202.125.43.22", + "202.125.43.19" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne423", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.75", + "173.239.194.89" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne425", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.146", + "173.239.194.139", + "173.239.194.150", + "173.239.194.133", + "173.239.194.134", + "173.239.194.159", + "173.239.194.152", + "173.239.194.138", + "173.239.194.142", + "173.239.194.155" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne426", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.194.160", + "173.239.194.181", + "173.239.194.171", + "173.239.194.162", + "173.239.194.173", + "173.239.194.174", + "173.239.194.169", + "173.239.194.180", + "173.239.194.170", + "173.239.194.178" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne429", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.61", + "173.239.203.57", + "173.239.203.68", + "173.239.203.44" + ] + }, + { + "vpn": "openvpn", + "region": "AU Melbourne", + "server_name": "melbourne430", + "hostname": "aus-melbourne.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.76", + "173.239.203.95", + "173.239.203.82", + "173.239.203.90", + "173.239.203.77", + "173.239.203.73" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth403", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.61", + "179.61.228.56", + "179.61.228.46", + "179.61.228.62", + "179.61.228.41", + "179.61.228.22", + "179.61.228.25", + "179.61.228.9", + "179.61.228.16", + "179.61.228.58", + "179.61.228.3" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth404", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.91", + "179.61.228.121", + "179.61.228.87", + "179.61.228.119", + "179.61.228.113", + "179.61.228.114", + "179.61.228.101", + "179.61.228.67", + "179.61.228.81", + "179.61.228.78", + "179.61.228.110" + ] + }, + { + "vpn": "openvpn", + "region": "AU Perth", + "server_name": "perth405", + "hostname": "aus-perth.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.228.183", + "179.61.228.149", + "179.61.228.165", + "179.61.228.180", + "179.61.228.168", + "179.61.228.184", + "179.61.228.181", + "179.61.228.133", + "179.61.228.138", + "179.61.228.136" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney420", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "117.120.9.25", + "117.120.9.21", + "117.120.9.27", + "117.120.9.22", + "117.120.9.30", + "117.120.9.29" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney421", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "117.120.9.37", + "117.120.9.41", + "117.120.9.45", + "117.120.9.43", + "117.120.9.35", + "117.120.9.44", + "117.120.9.39", + "117.120.9.38" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney431", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.16.81.92", + "154.16.81.96", + "154.16.81.71", + "154.16.81.81", + "154.16.81.94", + "154.16.81.76", + "154.16.81.86", + "154.16.81.91", + "154.16.81.70", + "154.16.81.88", + "154.16.81.78" + ] + }, + { + "vpn": "openvpn", + "region": "AU Sydney", + "server_name": "sydney432", + "hostname": "au-sydney.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.16.81.120", + "154.16.81.107", + "154.16.81.111", + "154.16.81.117", + "154.16.81.129", + "154.16.81.116" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana401", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.141", + "31.171.154.135", + "31.171.154.139", + "31.171.154.131", + "31.171.154.134", + "31.171.154.133", + "31.171.154.138", + "31.171.154.137", + "31.171.154.132" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana402", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.121", + "31.171.154.124", + "31.171.154.119", + "31.171.154.125", + "31.171.154.117", + "31.171.154.123", + "31.171.154.126" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "server_name": "tirana403", + "hostname": "al.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "31.171.154.74", + "31.171.154.78", + "31.171.154.77", + "31.171.154.72", + "31.171.154.70", + "31.171.154.76", + "31.171.154.73" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers403", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.10", + "176.125.228.8", + "176.125.228.9", + "176.125.228.6", + "176.125.228.3", + "176.125.228.4", + "176.125.228.5", + "176.125.228.12" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers404", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.16", + "176.125.228.23", + "176.125.228.20", + "176.125.228.22", + "176.125.228.21", + "176.125.228.17", + "176.125.228.24", + "176.125.228.18" + ] + }, + { + "vpn": "openvpn", + "region": "Algeria", + "server_name": "algiers405", + "hostname": "dz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.228.35", + "176.125.228.32", + "176.125.228.38", + "176.125.228.37", + "176.125.228.33", + "176.125.228.31", + "176.125.228.28", + "176.125.228.39" + ] + }, + { + "vpn": "openvpn", + "region": "Andorra", + "server_name": "andorra406", + "hostname": "ad.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.217.167", + "173.239.217.177", + "173.239.217.132", + "173.239.217.175", + "173.239.217.135", + "173.239.217.141", + "173.239.217.131", + "173.239.217.134", + "173.239.217.130" + ] + }, + { + "vpn": "openvpn", + "region": "Andorra", + "server_name": "andorra407", + "hostname": "ad.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.217.162", + "173.239.217.161", + "173.239.217.146", + "173.239.217.166", + "173.239.217.148", + "173.239.217.154", + "173.239.217.152", + "173.239.217.164", + "173.239.217.157", + "173.239.217.160", + "173.239.217.155" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires408", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.50", + "146.70.38.60", + "146.70.38.53", + "146.70.38.56", + "146.70.38.52", + "146.70.38.44", + "146.70.38.51", + "146.70.38.59" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires409", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.86", + "146.70.38.77", + "146.70.38.82" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires410", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.97", + "146.70.38.94", + "146.70.38.89", + "146.70.38.93", + "146.70.38.95", + "146.70.38.100", + "146.70.38.92", + "146.70.38.99" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "server_name": "buenosaires411", + "hostname": "ar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.38.112", + "146.70.38.113", + "146.70.38.102", + "146.70.38.107", + "146.70.38.111", + "146.70.38.103", + "146.70.38.114" + ] + }, + { + "vpn": "openvpn", + "region": "Armenia", + "server_name": "armenia403", + "hostname": "yerevan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.160.11", + "185.253.160.3", + "185.253.160.13", + "185.253.160.12", + "185.253.160.7", + "185.253.160.4", + "185.253.160.5" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Streaming Optimized", + "server_name": "melbourne434", + "hostname": "au-australia-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.203.192", + "173.239.203.213", + "173.239.203.209", + "173.239.203.197", + "173.239.203.218", + "173.239.203.194", + "173.239.203.216", + "173.239.203.191" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna401", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.138", + "156.146.60.133", + "156.146.60.139", + "156.146.60.140", + "156.146.60.136", + "156.146.60.134", + "156.146.60.131" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna402", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.26", + "156.146.60.22", + "156.146.60.30", + "156.146.60.4", + "156.146.60.2", + "156.146.60.9", + "156.146.60.18", + "156.146.60.21" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "server_name": "vienna403", + "hostname": "austria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.60.84", + "156.146.60.66", + "156.146.60.76", + "156.146.60.73", + "156.146.60.90", + "156.146.60.65", + "156.146.60.85", + "156.146.60.80", + "156.146.60.74" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas401", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.90", + "95.181.238.96", + "95.181.238.91", + "95.181.238.97", + "95.181.238.88", + "95.181.238.98" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas402", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.109", + "95.181.238.107", + "95.181.238.103", + "95.181.238.105", + "95.181.238.108", + "95.181.238.101", + "95.181.238.100" + ] + }, + { + "vpn": "openvpn", + "region": "Bahamas", + "server_name": "bahamas407", + "hostname": "bahamas.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.238.61", + "95.181.238.53", + "95.181.238.60", + "95.181.238.58", + "95.181.238.62", + "95.181.238.51" + ] + }, + { + "vpn": "openvpn", + "region": "Bangladesh", + "server_name": "bangladesh404", + "hostname": "bangladesh.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "64.64.112.140", + "64.64.112.150", + "64.64.112.157", + "64.64.112.154", + "64.64.112.134", + "64.64.112.145", + "64.64.112.147", + "64.64.112.138", + "64.64.112.139", + "64.64.112.131" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels419", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.218.58", + "181.214.218.54", + "181.214.218.49", + "181.214.218.47", + "181.214.218.50" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels420", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.218.76", + "181.214.218.75", + "181.214.218.70", + "181.214.218.64", + "181.214.218.71", + "181.214.218.66", + "181.214.218.68", + "181.214.218.74", + "181.214.218.72" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels423", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.27.43", + "149.22.90.236", + "149.22.90.224", + "154.47.27.40", + "149.22.90.235", + "149.22.90.243", + "149.22.90.231", + "149.22.90.240", + "149.22.90.234", + "149.22.90.229" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "server_name": "brussels424", + "hostname": "brussels.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.90.211", + "149.22.90.213", + "149.22.90.216", + "149.22.90.199", + "149.22.90.220", + "149.22.90.218" + ] + }, + { + "vpn": "openvpn", + "region": "Bolivia", + "server_name": "bolivia401", + "hostname": "bo-bolivia-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.91.13", + "84.247.91.16", + "84.247.91.24", + "84.247.91.9", + "84.247.91.28", + "84.247.91.12", + "84.247.91.7", + "84.247.91.20", + "84.247.91.26" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia and Herzegovina", + "server_name": "sarajevo403", + "hostname": "ba.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.36.138", + "98.159.36.130", + "98.159.36.129", + "98.159.36.139", + "98.159.36.134", + "98.159.36.136", + "98.159.36.132", + "98.159.36.137" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia and Herzegovina", + "server_name": "sarajevo404", + "hostname": "ba.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.36.142", + "98.159.36.143", + "98.159.36.150", + "98.159.36.153", + "98.159.36.149", + "98.159.36.144", + "98.159.36.151", + "98.159.36.145" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo401", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.253", + "188.241.177.252", + "188.241.177.243", + "188.241.177.249", + "188.241.177.246", + "188.241.177.254" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo402", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.56", + "188.241.177.62", + "188.241.177.53", + "188.241.177.59", + "188.241.177.52", + "188.241.177.51", + "188.241.177.61" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo404", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.177.180", + "188.241.177.110", + "188.241.177.109", + "188.241.177.181", + "188.241.177.108", + "188.241.177.107", + "188.241.177.178", + "188.241.177.182" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "server_name": "saopaolo407", + "hostname": "br.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.98.43", + "146.70.98.41", + "146.70.98.39", + "146.70.98.42", + "146.70.98.46" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "server_name": "sofia405", + "hostname": "sofia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "94.156.14.19", + "94.156.14.27", + "94.156.14.11", + "94.156.14.9", + "94.156.14.2", + "94.156.14.7", + "94.156.14.16", + "94.156.14.21", + "94.156.14.28", + "94.156.14.14" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal424", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.105.32", + "84.247.105.36" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal431", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "140.228.24.106", + "140.228.24.224", + "140.228.24.91", + "140.228.24.112" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal433", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.120.205.30", + "37.120.205.15", + "37.120.205.24", + "37.120.205.17", + "37.120.205.26", + "37.120.205.27", + "37.120.205.21", + "37.120.205.14", + "37.120.205.19", + "37.120.205.16" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal435", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.193.6.153", + "91.193.6.135", + "91.193.6.144", + "91.193.6.150", + "91.193.6.148" + ] + }, + { + "vpn": "openvpn", + "region": "CA Montreal", + "server_name": "montreal436", + "hostname": "ca-montreal.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.193.6.163", + "91.193.6.171", + "91.193.6.183", + "91.193.6.186", + "91.193.6.167", + "91.193.6.175", + "91.193.6.174", + "91.193.6.169", + "91.193.6.170" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario415", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.36.49.216", + "149.36.49.231", + "149.36.49.228", + "149.36.49.224", + "149.36.49.215", + "149.36.49.236", + "149.36.49.235", + "149.36.49.233", + "149.36.49.227", + "149.36.49.226", + "149.36.49.232" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario418", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.50.218.32", + "149.50.218.31", + "149.50.218.52", + "149.50.218.38", + "149.50.218.29", + "149.50.218.34", + "149.50.218.51", + "149.50.218.47", + "149.50.218.45", + "149.50.218.40", + "149.50.218.37" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario", + "server_name": "ontario443", + "hostname": "ca-ontario.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.50.218.75", + "149.50.218.71", + "149.50.218.74", + "149.50.218.60", + "149.50.218.78", + "149.50.218.56", + "149.50.218.72", + "149.50.218.57", + "149.50.218.64", + "149.50.218.68" + ] + }, + { + "vpn": "openvpn", + "region": "CA Ontario Streaming Optimized", + "server_name": "ontario416", + "hostname": "ca-ontario-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.214.118", + "178.249.214.106", + "178.249.214.116", + "178.249.214.123", + "178.249.214.107", + "178.249.214.101", + "178.249.214.110", + "178.249.214.108", + "178.249.214.100" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto401", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.36.49.159", + "149.36.49.158" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto415", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.37", + "191.96.36.43" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto416", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.66", + "191.96.36.65", + "191.96.36.70", + "191.96.36.68" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto420", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.96.36.190", + "191.96.36.188", + "191.96.36.202", + "191.96.36.186" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto422", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.9", + "179.61.197.7", + "179.61.197.11", + "179.61.197.32", + "179.61.197.10", + "179.61.197.14", + "179.61.197.16", + "179.61.197.6" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto423", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.56", + "179.61.197.57", + "179.61.197.39", + "179.61.197.40", + "179.61.197.34", + "179.61.197.59" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto424", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.73", + "179.61.197.87" + ] + }, + { + "vpn": "openvpn", + "region": "CA Toronto", + "server_name": "toronto426", + "hostname": "ca-toronto.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.197.181", + "179.61.197.168" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver422", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.153.78", + "181.214.153.83", + "181.214.153.73", + "181.214.153.93", + "181.214.153.74", + "181.214.153.97", + "181.214.153.72", + "181.214.153.75" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver423", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.214.153.128", + "181.214.153.123", + "181.214.153.129", + "181.214.153.110", + "181.214.153.117", + "181.214.153.104" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver432", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.137", + "181.41.202.142", + "181.41.202.153", + "181.41.202.147", + "181.41.202.136", + "181.41.202.159", + "181.41.202.145" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver433", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.165", + "181.41.202.183", + "181.41.202.175", + "181.41.202.160", + "181.41.202.173", + "181.41.202.168" + ] + }, + { + "vpn": "openvpn", + "region": "CA Vancouver", + "server_name": "vancouver434", + "hostname": "ca-vancouver.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.41.202.202", + "181.41.202.219", + "181.41.202.218", + "181.41.202.209", + "181.41.202.203", + "181.41.202.216", + "181.41.202.193" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "server_name": "cambodia401", + "hostname": "cambodia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.104", + "188.215.235.107", + "188.215.235.102", + "188.215.235.101", + "188.215.235.109", + "188.215.235.110", + "188.215.235.106", + "188.215.235.108", + "188.215.235.100" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "server_name": "cambodia402", + "hostname": "cambodia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.116", + "188.215.235.122", + "188.215.235.118", + "188.215.235.115", + "188.215.235.126", + "188.215.235.124", + "188.215.235.119" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "server_name": "chile401", + "hostname": "santiago.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.11.25", + "146.70.11.23", + "146.70.11.27", + "146.70.11.19", + "146.70.11.18", + "146.70.11.24" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "server_name": "chile402", + "hostname": "santiago.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.11.38", + "146.70.11.32", + "146.70.11.39", + "146.70.11.37", + "146.70.11.40", + "146.70.11.30", + "146.70.11.35" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china403", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.58", + "188.241.80.57", + "188.241.80.65", + "188.241.80.66", + "188.241.80.69", + "188.241.80.59", + "188.241.80.68", + "188.241.80.67" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china406", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.31", + "188.241.80.41", + "188.241.80.37", + "188.241.80.40", + "188.241.80.32", + "188.241.80.30", + "188.241.80.33", + "188.241.80.34" + ] + }, + { + "vpn": "openvpn", + "region": "China", + "server_name": "china407", + "hostname": "china.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.241.80.52", + "188.241.80.44", + "188.241.80.51", + "188.241.80.49", + "188.241.80.46", + "188.241.80.55", + "188.241.80.50" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "server_name": "colombia403", + "hostname": "bogota.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.16.101", + "154.47.16.106", + "154.47.16.102", + "154.47.16.99", + "154.47.16.104", + "154.47.16.109", + "154.47.16.122", + "154.47.16.120", + "154.47.16.108", + "154.47.16.105" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "server_name": "colombia404", + "hostname": "bogota.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.16.206", + "154.47.16.207", + "154.47.16.201", + "154.47.16.216", + "154.47.16.219", + "154.47.16.209", + "154.47.16.204", + "154.47.16.208", + "154.47.16.217", + "154.47.16.195", + "154.47.16.200" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica401", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.18", + "146.70.10.24", + "146.70.10.23", + "146.70.10.22", + "146.70.10.21", + "146.70.10.20", + "146.70.10.25" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica402", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.33", + "146.70.10.35", + "146.70.10.31", + "146.70.10.34", + "146.70.10.38", + "146.70.10.36" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "server_name": "costarica403", + "hostname": "sanjose.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.10.62", + "146.70.10.61", + "146.70.10.55", + "146.70.10.64", + "146.70.10.54" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "server_name": "zagreb403", + "hostname": "zagreb.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.29.154", + "154.47.29.139", + "154.47.29.147", + "154.47.29.146", + "154.47.29.144", + "154.47.29.130", + "154.47.29.134", + "154.47.29.153", + "154.47.29.135", + "154.47.29.136" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "server_name": "zagreb404", + "hostname": "zagreb.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.247.237", + "149.102.247.236", + "149.102.247.234", + "149.102.247.245", + "149.102.247.229", + "149.102.247.246", + "149.102.247.235", + "149.102.247.250", + "149.102.247.248" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "server_name": "cyprus403", + "hostname": "cyprus.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.162.14", + "185.253.162.9", + "185.253.162.4", + "185.253.162.7", + "185.253.162.12", + "185.253.162.11", + "185.253.162.5", + "185.253.162.3", + "185.253.162.8" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "server_name": "cyprus404", + "hostname": "cyprus.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.253.162.17", + "185.253.162.24", + "185.253.162.23", + "185.253.162.22", + "185.253.162.26", + "185.253.162.19", + "185.253.162.25", + "185.253.162.27" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague401", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.84", + "212.102.38.213", + "212.102.39.95", + "212.102.39.78", + "212.102.39.91", + "212.102.39.98", + "212.102.38.214", + "212.102.38.217", + "212.102.39.75", + "212.102.39.77" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague402", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.140", + "212.102.39.143", + "212.102.39.148", + "212.102.39.138", + "212.102.39.151", + "212.102.39.147", + "212.102.39.139", + "212.102.39.146", + "212.102.39.159", + "212.102.39.158", + "212.102.39.157" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "server_name": "prague403", + "hostname": "czech.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.39.204", + "212.102.39.207", + "212.102.39.212", + "212.102.39.205", + "212.102.39.215", + "212.102.39.214", + "212.102.39.200", + "212.102.39.203", + "212.102.39.209", + "212.102.39.219", + "212.102.39.69" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin416", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.10", + "191.101.157.28", + "191.101.157.4", + "191.101.157.6", + "191.101.157.19", + "191.101.157.24", + "191.101.157.5", + "191.101.157.7", + "191.101.157.3" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin417", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.59", + "191.101.157.33", + "191.101.157.56", + "191.101.157.43", + "191.101.157.46", + "191.101.157.44", + "191.101.157.49", + "191.101.157.35", + "191.101.157.38", + "191.101.157.51" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin418", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.86", + "191.101.157.67", + "191.101.157.82", + "191.101.157.77", + "191.101.157.73", + "191.101.157.80", + "191.101.157.65", + "191.101.157.76" + ] + }, + { + "vpn": "openvpn", + "region": "DE Berlin", + "server_name": "berlin419", + "hostname": "de-berlin.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.105", + "191.101.157.92", + "191.101.157.115", + "191.101.157.100" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt402", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.181.170.228", + "212.102.57.206", + "212.102.57.204", + "195.181.170.232", + "195.181.170.231" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt405", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.57.11", + "212.102.57.2", + "212.102.57.19", + "212.102.57.7", + "212.102.57.26", + "212.102.57.10", + "212.102.57.27", + "212.102.57.31", + "212.102.57.14", + "212.102.57.12", + "212.102.57.25" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt406", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.57.80", + "212.102.57.95", + "212.102.57.77", + "212.102.57.75", + "212.102.57.90", + "212.102.57.88" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt413", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "216.24.213.37", + "216.24.213.13" + ] + }, + { + "vpn": "openvpn", + "region": "DE Frankfurt", + "server_name": "frankfurt415", + "hostname": "de-frankfurt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.88.97.237", + "45.88.97.223", + "45.88.97.228", + "45.88.97.241" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "berlin423", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.157.229", + "191.101.157.239", + "191.101.157.234", + "191.101.157.241", + "191.101.157.226", + "191.101.157.252", + "191.101.157.235", + "191.101.157.242", + "191.101.157.253" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "frankfurt408", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.18.69", + "138.199.18.79", + "138.199.18.88", + "138.199.18.83", + "138.199.18.68", + "138.199.18.82", + "138.199.18.73", + "138.199.18.78", + "138.199.18.70", + "138.199.18.66" + ] + }, + { + "vpn": "openvpn", + "region": "DE Germany Streaming Optimized", + "server_name": "frankfurt419", + "hostname": "de-germany-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "216.24.216.215", + "216.24.216.210", + "216.24.216.182", + "216.24.216.198", + "216.24.216.200", + "216.24.216.206", + "216.24.216.213", + "216.24.216.189", + "216.24.216.199", + "216.24.216.176", + "216.24.216.203" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen402", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.67", + "188.126.94.84", + "188.126.94.69", + "188.126.94.73", + "188.126.94.79", + "188.126.94.81", + "188.126.94.85" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen403", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.118", + "188.126.94.102", + "188.126.94.104", + "188.126.94.105" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen404", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.186", + "188.126.94.179", + "188.126.94.169", + "188.126.94.180", + "188.126.94.166", + "188.126.94.190", + "188.126.94.189", + "188.126.94.187", + "188.126.94.177" + ] + }, + { + "vpn": "openvpn", + "region": "DK Copenhagen", + "server_name": "copenhagen408", + "hostname": "denmark.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.106.40", + "46.246.106.35", + "46.246.106.42", + "46.246.106.38", + "46.246.106.43", + "46.246.106.37", + "46.246.106.41" + ] + }, + { + "vpn": "openvpn", + "region": "DK Streaming Optimized", + "server_name": "copenhagen405", + "hostname": "denmark-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.94.61", + "188.126.94.42", + "188.126.94.36", + "188.126.94.62", + "188.126.94.40", + "188.126.94.56", + "188.126.94.58", + "188.126.94.59", + "188.126.94.39", + "188.126.94.60" + ] + }, + { + "vpn": "openvpn", + "region": "DK Streaming Optimized", + "server_name": "copenhagen410", + "hostname": "denmark-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.109.146", + "149.88.109.138", + "149.88.109.144", + "149.88.109.150", + "149.88.109.151", + "149.88.109.157", + "149.88.109.145", + "149.88.109.139", + "149.88.109.155" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid401", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.67", + "212.102.49.76", + "195.181.167.36", + "195.181.167.41", + "212.102.49.86", + "195.181.167.34", + "195.181.167.37", + "212.102.49.77", + "212.102.49.70", + "212.102.49.88" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid402", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.9", + "212.102.49.24", + "212.102.49.6", + "212.102.49.16", + "212.102.49.3", + "212.102.49.23", + "212.102.49.31", + "212.102.49.22", + "212.102.49.27" + ] + }, + { + "vpn": "openvpn", + "region": "ES Madrid", + "server_name": "madrid403", + "hostname": "spain.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.49.186", + "212.102.49.203", + "212.102.49.195", + "212.102.49.212", + "212.102.49.215", + "212.102.49.192", + "212.102.49.201", + "212.102.49.211", + "212.102.49.205", + "212.102.49.217" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia401", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.132", + "196.245.54.135", + "196.245.54.143", + "196.245.54.142", + "196.245.54.134", + "196.245.54.131", + "196.245.54.133", + "196.245.54.137", + "196.245.54.138" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia402", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.154", + "196.245.54.151", + "196.245.54.150", + "196.245.54.158", + "196.245.54.153", + "196.245.54.148", + "196.245.54.155" + ] + }, + { + "vpn": "openvpn", + "region": "ES Valencia", + "server_name": "valencia403", + "hostname": "es-valencia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.245.54.168", + "196.245.54.171", + "196.245.54.170", + "196.245.54.172", + "196.245.54.161", + "196.245.54.165", + "196.245.54.166", + "196.245.54.169" + ] + }, + { + "vpn": "openvpn", + "region": "Ecuador", + "server_name": "ecuador401", + "hostname": "ec-ecuador-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.93.3", + "84.247.93.19", + "84.247.93.5", + "84.247.93.8", + "84.247.93.18", + "84.247.93.27", + "84.247.93.25", + "84.247.93.6" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "server_name": "cairo401", + "hostname": "egypt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.102", + "188.214.122.99", + "188.214.122.106", + "188.214.122.107", + "188.214.122.108", + "188.214.122.105", + "188.214.122.103", + "188.214.122.104" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "server_name": "cairo402", + "hostname": "egypt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.124", + "188.214.122.115", + "188.214.122.126", + "188.214.122.118", + "188.214.122.125", + "188.214.122.116" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn402", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.70", + "165.231.182.76", + "165.231.182.77", + "165.231.182.72", + "165.231.182.71" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn405", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.7", + "165.231.182.12", + "165.231.182.3", + "165.231.182.14", + "165.231.182.8", + "165.231.182.11", + "165.231.182.13", + "165.231.182.9", + "165.231.182.5" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn406", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.26", + "165.231.182.24", + "165.231.182.23", + "165.231.182.22" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn407", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.33", + "165.231.182.36" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn408", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.53", + "165.231.182.54", + "165.231.182.49", + "165.231.182.43", + "165.231.182.45", + "165.231.182.44" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "server_name": "talinn410", + "hostname": "ee.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "165.231.182.125", + "165.231.182.126", + "165.231.182.123" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki402", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.39", + "188.126.89.56", + "188.126.89.48", + "188.126.89.49", + "188.126.89.50", + "188.126.89.35", + "188.126.89.54", + "188.126.89.36", + "188.126.89.42", + "188.126.89.46" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki403", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.139", + "188.126.89.148", + "188.126.89.157", + "188.126.89.150", + "188.126.89.144", + "188.126.89.133", + "188.126.89.153", + "188.126.89.145", + "188.126.89.138" + ] + }, + { + "vpn": "openvpn", + "region": "FI Helsinki", + "server_name": "helsinki404", + "hostname": "fi.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.89", + "188.126.89.91", + "188.126.89.79", + "188.126.89.67", + "188.126.89.88", + "188.126.89.87", + "188.126.89.86", + "188.126.89.73", + "188.126.89.85" + ] + }, + { + "vpn": "openvpn", + "region": "FI Streaming Optimized", + "server_name": "helsinki401", + "hostname": "fi-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.126.89.7", + "188.126.89.6", + "188.126.89.9", + "188.126.89.12", + "188.126.89.16", + "188.126.89.29", + "188.126.89.27", + "188.126.89.17", + "188.126.89.18" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris402", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.63.139", + "156.146.63.143", + "156.146.63.147", + "156.146.63.135", + "156.146.63.150", + "156.146.63.160", + "156.146.63.141" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris410", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.217.38", + "191.101.217.12", + "191.101.217.32", + "191.101.217.40" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris412", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "191.101.31.66", + "191.101.31.53", + "191.101.31.55", + "191.101.31.47", + "191.101.31.41", + "191.101.31.68", + "191.101.31.49", + "191.101.31.65", + "191.101.31.50", + "191.101.31.61", + "191.101.31.42" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "server_name": "paris415", + "hostname": "france.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.63.204", + "156.146.63.210", + "156.146.63.196", + "156.146.63.206", + "156.146.63.188", + "156.146.63.213", + "156.146.63.207", + "156.146.63.187", + "156.146.63.202", + "156.146.63.186" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "server_name": "georgia403", + "hostname": "georgia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.236.13", + "95.181.236.12", + "95.181.236.4", + "95.181.236.9", + "95.181.236.11", + "95.181.236.5", + "95.181.236.10", + "95.181.236.3", + "95.181.236.7" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "server_name": "georgia404", + "hostname": "georgia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.236.25", + "95.181.236.16", + "95.181.236.19", + "95.181.236.18", + "95.181.236.17", + "95.181.236.24", + "95.181.236.20", + "95.181.236.15", + "95.181.236.22" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens401", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.6.76", + "195.146.6.85", + "195.146.6.78", + "195.146.6.71", + "195.146.6.73", + "195.146.6.80", + "195.146.6.83", + "195.146.6.75", + "195.146.6.72" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens402", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.6.64", + "195.146.6.60", + "195.146.6.54", + "195.146.6.59", + "195.146.6.58", + "195.146.6.63", + "195.146.6.52", + "195.146.6.56" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "server_name": "athens403", + "hostname": "gr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.146.4.74", + "195.146.4.85", + "195.146.4.75", + "195.146.4.77", + "195.146.4.81", + "195.146.4.78", + "195.146.4.76", + "195.146.4.72" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland403", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.143", + "91.90.120.135", + "91.90.120.139", + "91.90.120.136", + "91.90.120.137", + "91.90.120.144", + "91.90.120.138" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland404", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.151", + "91.90.120.152", + "91.90.120.147", + "91.90.120.149", + "91.90.120.159", + "91.90.120.150", + "91.90.120.153", + "91.90.120.155" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland405", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.168", + "91.90.120.173", + "91.90.120.162", + "91.90.120.163", + "91.90.120.166", + "91.90.120.171", + "91.90.120.164" + ] + }, + { + "vpn": "openvpn", + "region": "Greenland", + "server_name": "greenland407", + "hostname": "greenland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.120.201", + "91.90.120.198", + "91.90.120.196", + "91.90.120.202", + "91.90.120.200" + ] + }, + { + "vpn": "openvpn", + "region": "Guatemala", + "server_name": "guatemala401", + "hostname": "gt-guatemala-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.95.24", + "84.247.95.11", + "84.247.95.6", + "84.247.95.16", + "84.247.95.7", + "84.247.95.10", + "84.247.95.14", + "84.247.95.3" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "server_name": "hongkong402", + "hostname": "hk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.107.104.234", + "86.107.104.229", + "86.107.104.233", + "86.107.104.231", + "86.107.104.236", + "86.107.104.232", + "86.107.104.235", + "86.107.104.228" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "server_name": "hongkong404", + "hostname": "hk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.107.104.250", + "86.107.104.246", + "86.107.104.244", + "86.107.104.251", + "86.107.104.248", + "86.107.104.242", + "86.107.104.247", + "86.107.104.243" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest401", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.192.219", + "217.138.192.220", + "217.138.192.222", + "217.138.192.218", + "217.138.192.221" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest402", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "86.106.74.124", + "86.106.74.125", + "86.106.74.114", + "86.106.74.117", + "86.106.74.118", + "86.106.74.126", + "86.106.74.119", + "86.106.74.120", + "86.106.74.122" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "server_name": "budapest405", + "hostname": "hungary.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.94.190.203", + "185.94.190.195", + "185.94.190.201", + "185.94.190.204", + "185.94.190.198", + "185.94.190.200", + "185.94.190.206", + "185.94.190.202" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano402", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.29", + "156.146.41.14", + "156.146.41.26", + "156.146.41.7", + "156.146.41.22", + "156.146.41.27", + "156.146.41.21", + "156.146.41.3" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano403", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.78", + "156.146.41.70", + "156.146.41.75", + "156.146.41.66", + "156.146.41.67", + "156.146.41.94", + "156.146.41.77", + "156.146.41.80", + "156.146.41.81", + "156.146.41.68" + ] + }, + { + "vpn": "openvpn", + "region": "IT Milano", + "server_name": "milano404", + "hostname": "italy.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.41.198", + "156.146.41.209", + "156.146.41.222", + "156.146.41.219", + "156.146.41.215", + "156.146.41.211", + "156.146.41.207", + "156.146.41.194", + "156.146.41.218", + "156.146.41.201" + ] + }, + { + "vpn": "openvpn", + "region": "IT Streaming Optimized", + "server_name": "milano405", + "hostname": "italy-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.54.47", + "138.199.54.39", + "138.199.54.44", + "138.199.54.46", + "138.199.54.34", + "138.199.54.38", + "138.199.54.36", + "138.199.54.48", + "138.199.54.42" + ] + }, + { + "vpn": "openvpn", + "region": "IT Streaming Optimized", + "server_name": "milano406", + "hostname": "italy-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.54.55", + "138.199.54.50", + "138.199.54.56", + "138.199.54.61", + "138.199.54.52", + "138.199.54.59", + "138.199.54.63", + "138.199.54.54" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "server_name": "reykjavik401", + "hostname": "is.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.193.35", + "45.133.193.44", + "45.133.193.37", + "45.133.193.36", + "45.133.193.46", + "45.133.193.38", + "45.133.193.42", + "45.133.193.45", + "45.133.193.40", + "45.133.193.43" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "server_name": "reykjavik402", + "hostname": "is.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.193.87", + "45.133.193.88", + "45.133.193.89", + "45.133.193.84", + "45.133.193.83", + "45.133.193.93", + "45.133.193.94" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "server_name": "mumbai414", + "hostname": "in.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "23.26.221.5", + "23.26.221.28", + "23.26.221.31", + "23.26.221.20", + "23.26.221.16", + "23.26.221.22", + "23.26.221.26", + "23.26.221.19", + "23.26.221.29", + "23.26.221.18" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "server_name": "indonesia403", + "hostname": "jakarta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "192.142.226.152", + "192.142.226.154", + "192.142.226.143", + "192.142.226.145", + "192.142.226.151", + "192.142.226.149", + "192.142.226.150", + "192.142.226.144" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin404", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.130.23", + "146.70.130.21", + "146.70.130.26", + "146.70.130.19", + "146.70.130.25", + "146.70.130.29", + "146.70.130.22" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin405", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.4", + "193.56.252.3" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin406", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.213", + "193.56.252.212", + "193.56.252.219", + "193.56.252.218", + "193.56.252.220", + "193.56.252.214" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin408", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.56.252.243", + "193.56.252.245", + "193.56.252.248", + "193.56.252.244", + "193.56.252.246", + "193.56.252.249" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "server_name": "dublin421", + "hostname": "ireland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.34.242.146", + "149.34.242.130", + "149.34.242.139", + "149.34.242.147", + "149.34.242.133" + ] + }, + { + "vpn": "openvpn", + "region": "Isle of Man", + "server_name": "douglas403", + "hostname": "man.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.124.5", + "91.90.124.19", + "91.90.124.6", + "91.90.124.13", + "91.90.124.10", + "91.90.124.14", + "91.90.124.8", + "91.90.124.17", + "91.90.124.7" + ] + }, + { + "vpn": "openvpn", + "region": "Isle of Man", + "server_name": "douglas404", + "hostname": "man.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.124.26", + "91.90.124.24", + "91.90.124.32", + "91.90.124.31", + "91.90.124.21", + "91.90.124.30", + "91.90.124.28", + "91.90.124.22" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "server_name": "jerusalem414", + "hostname": "israel.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.26.165", + "149.88.26.159", + "149.88.26.136", + "149.88.26.162", + "149.88.26.140", + "149.88.26.161", + "149.88.26.173", + "149.88.26.148", + "149.88.26.176", + "149.88.26.152", + "149.88.26.146" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "server_name": "jerusalem415", + "hostname": "israel.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.26.184", + "149.88.26.216", + "149.88.26.215", + "149.88.26.201", + "149.88.26.200", + "149.88.26.183", + "149.88.26.226", + "149.88.26.220", + "149.88.26.192", + "149.88.26.204" + ] + }, + { + "vpn": "openvpn", + "region": "JP Streaming Optimized", + "server_name": "tokyo401", + "hostname": "japan-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.133", + "149.22.87.146", + "149.22.87.132", + "149.22.87.141", + "149.22.87.144", + "149.22.87.138", + "149.22.87.134", + "149.22.87.152", + "149.22.87.151", + "149.22.87.137" + ] + }, + { + "vpn": "openvpn", + "region": "JP Streaming Optimized", + "server_name": "tokyo418", + "hostname": "japan-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.88.103.74", + "149.88.103.90", + "149.88.103.93", + "149.88.103.76", + "149.88.103.87", + "149.88.103.91", + "149.88.103.80", + "149.88.103.94", + "149.88.103.79", + "149.88.103.89" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo402", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.169", + "149.22.87.181", + "149.22.87.185", + "149.22.87.173", + "149.22.87.184", + "149.22.87.176", + "149.22.87.175", + "149.22.87.178", + "149.22.87.172" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo403", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.22", + "149.22.87.20", + "149.22.87.48", + "149.22.87.51" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo405", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.22.87.121", + "149.22.87.73", + "149.22.87.63", + "149.22.87.64", + "149.22.87.85", + "149.22.87.112", + "149.22.87.67", + "149.22.87.69" + ] + }, + { + "vpn": "openvpn", + "region": "JP Tokyo", + "server_name": "tokyo410", + "hostname": "japan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.39.3", + "138.199.39.4", + "138.199.39.8", + "138.199.39.13", + "138.199.39.22", + "138.199.39.10", + "138.199.39.29", + "138.199.39.15", + "138.199.39.24", + "138.199.39.20" + ] + }, + { + "vpn": "openvpn", + "region": "Kazakhstan", + "server_name": "kazakhstan402", + "hostname": "kazakhstan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "62.133.47.15", + "62.133.47.24", + "62.133.47.20", + "62.133.47.26", + "62.133.47.19", + "62.133.47.23", + "62.133.47.22" + ] + }, + { + "vpn": "openvpn", + "region": "Kazakhstan", + "server_name": "kazakhstan403", + "hostname": "kazakhstan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "62.133.47.9", + "62.133.47.4", + "62.133.47.12", + "62.133.47.3", + "62.133.47.10", + "62.133.47.6", + "62.133.47.11" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga405", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.85", + "196.196.53.91", + "196.196.53.92", + "196.196.53.89", + "196.196.53.83", + "196.196.53.87" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga406", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.109", + "196.196.53.99", + "196.196.53.108", + "196.196.53.102", + "196.196.53.106" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga407", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.58", + "196.196.53.62", + "196.196.53.61", + "196.196.53.57" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "server_name": "riga408", + "hostname": "lv.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "196.196.53.132", + "196.196.53.137", + "196.196.53.136", + "196.196.53.133", + "196.196.53.139", + "196.196.53.135", + "196.196.53.141", + "196.196.53.142" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "server_name": "liechtenstein401", + "hostname": "liechtenstein.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.122.31", + "91.90.122.30", + "91.90.122.23", + "91.90.122.29", + "91.90.122.24", + "91.90.122.22", + "91.90.122.28", + "91.90.122.21" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "server_name": "liechtenstein403", + "hostname": "liechtenstein.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.122.7", + "91.90.122.8", + "91.90.122.13", + "91.90.122.17", + "91.90.122.4", + "91.90.122.9", + "91.90.122.10", + "91.90.122.12" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius401", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.50", + "194.32.122.58", + "194.32.122.59", + "194.32.122.47", + "194.32.122.48", + "194.32.122.52", + "194.32.122.49" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius402", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.41", + "194.32.122.40" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius403", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.63", + "194.32.122.72", + "194.32.122.64", + "194.32.122.62", + "194.32.122.61", + "194.32.122.70", + "194.32.122.65", + "194.32.122.69", + "194.32.122.73", + "194.32.122.68" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "server_name": "vilnius404", + "hostname": "lt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.32.122.81", + "194.32.122.84", + "194.32.122.80", + "194.32.122.77", + "194.32.122.85", + "194.32.122.79", + "194.32.122.83" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "server_name": "luxembourg410", + "hostname": "lu.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.113.213", + "37.46.113.208", + "37.46.113.194", + "37.46.113.207", + "37.46.113.216", + "37.46.113.205", + "37.46.113.197", + "37.46.113.192", + "37.46.113.215", + "37.46.113.202", + "37.46.113.220" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "server_name": "luxembourg412", + "hostname": "lu.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.113.158", + "37.46.113.167", + "37.46.113.166", + "37.46.113.169", + "37.46.113.154", + "37.46.113.159", + "37.46.113.168", + "37.46.113.165", + "37.46.113.174" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "server_name": "macau403", + "hostname": "macau.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.252.92.3", + "84.252.92.10", + "84.252.92.5", + "84.252.92.6", + "84.252.92.11", + "84.252.92.8", + "84.252.92.7" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "server_name": "macau404", + "hostname": "macau.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.252.92.18", + "84.252.92.21", + "84.252.92.19", + "84.252.92.27", + "84.252.92.26", + "84.252.92.17", + "84.252.92.20" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "server_name": "malaysia401", + "hostname": "kualalumpur.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.15.33", + "146.70.15.26", + "146.70.15.31", + "146.70.15.25", + "146.70.15.28", + "146.70.15.32", + "146.70.15.18", + "146.70.15.29", + "146.70.15.22" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "server_name": "malaysia402", + "hostname": "kualalumpur.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.15.36", + "146.70.15.45", + "146.70.15.43", + "146.70.15.40", + "146.70.15.42", + "146.70.15.46" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta403", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.11", + "176.125.230.3", + "176.125.230.5", + "176.125.230.8", + "176.125.230.9", + "176.125.230.4", + "176.125.230.7", + "176.125.230.15", + "176.125.230.6" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta404", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.24", + "176.125.230.20", + "176.125.230.18", + "176.125.230.22", + "176.125.230.25", + "176.125.230.17", + "176.125.230.19", + "176.125.230.23", + "176.125.230.21", + "176.125.230.28" + ] + }, + { + "vpn": "openvpn", + "region": "Malta", + "server_name": "malta405", + "hostname": "malta.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.230.31", + "176.125.230.34", + "176.125.230.38", + "176.125.230.40", + "176.125.230.39", + "176.125.230.37", + "176.125.230.36" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico403", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.15", + "77.81.142.11", + "77.81.142.5", + "77.81.142.14", + "77.81.142.4" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico408", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.85", + "77.81.142.84", + "77.81.142.80", + "77.81.142.81", + "77.81.142.88", + "77.81.142.83" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico409", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.100", + "77.81.142.104", + "77.81.142.99", + "77.81.142.93", + "77.81.142.92", + "77.81.142.102", + "77.81.142.103", + "77.81.142.98", + "77.81.142.101" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "server_name": "mexico413", + "hostname": "mexico.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "77.81.142.246", + "77.81.142.247", + "77.81.142.243" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "server_name": "chisinau401", + "hostname": "md.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.175.129.44", + "178.175.129.37", + "178.175.129.45", + "178.175.129.41", + "178.175.129.36", + "178.175.129.42", + "178.175.129.35", + "178.175.129.39", + "178.175.129.46" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "server_name": "chisinau402", + "hostname": "md.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.175.128.44", + "178.175.128.42", + "178.175.128.39", + "178.175.128.43", + "178.175.128.45", + "178.175.128.35", + "178.175.128.38", + "178.175.128.41", + "178.175.128.37" + ] + }, + { + "vpn": "openvpn", + "region": "Monaco", + "server_name": "monaco403", + "hostname": "monaco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.233.9", + "95.181.233.4", + "95.181.233.6", + "95.181.233.7", + "95.181.233.10", + "95.181.233.13" + ] + }, + { + "vpn": "openvpn", + "region": "Monaco", + "server_name": "monaco404", + "hostname": "monaco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.233.17", + "95.181.233.21", + "95.181.233.16", + "95.181.233.15", + "95.181.233.25", + "95.181.233.18", + "95.181.233.23", + "95.181.233.22" + ] + }, + { + "vpn": "openvpn", + "region": "Mongolia", + "server_name": "mongolia405", + "hostname": "mongolia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "192.142.227.19", + "192.142.227.17", + "192.142.227.21", + "192.142.227.23", + "192.142.227.15", + "192.142.227.18", + "192.142.227.20", + "192.142.227.14", + "192.142.227.24" + ] + }, + { + "vpn": "openvpn", + "region": "Montenegro", + "server_name": "montenegro403", + "hostname": "montenegro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.229.6", + "176.125.229.15", + "176.125.229.13", + "176.125.229.12", + "176.125.229.11", + "176.125.229.4", + "176.125.229.3", + "176.125.229.14" + ] + }, + { + "vpn": "openvpn", + "region": "Montenegro", + "server_name": "montenegro404", + "hostname": "montenegro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "176.125.229.21", + "176.125.229.20", + "176.125.229.27", + "176.125.229.18", + "176.125.229.24", + "176.125.229.26", + "176.125.229.22", + "176.125.229.19", + "176.125.229.25" + ] + }, + { + "vpn": "openvpn", + "region": "Morocco", + "server_name": "morocco403", + "hostname": "morocco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.232.8", + "95.181.232.6", + "95.181.232.3", + "95.181.232.9", + "95.181.232.10", + "95.181.232.13", + "95.181.232.5" + ] + }, + { + "vpn": "openvpn", + "region": "Morocco", + "server_name": "morocco404", + "hostname": "morocco.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.232.39", + "95.181.232.37", + "95.181.232.36", + "95.181.232.35", + "95.181.232.33", + "95.181.232.32", + "95.181.232.29" + ] + }, + { + "vpn": "openvpn", + "region": "NL Netherlands Streaming Optimized", + "server_name": "amsterdam404", + "hostname": "nl-netherlands-so.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.173", + "143.244.41.165", + "143.244.41.159", + "143.244.41.160", + "143.244.41.158", + "143.244.41.162", + "143.244.41.182", + "143.244.41.175", + "143.244.41.167", + "143.244.41.166" + ] + }, + { + "vpn": "openvpn", + "region": "Nepal", + "server_name": "kathmandu401", + "hostname": "np-nepal-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.97.9", + "84.247.97.12", + "84.247.97.16", + "84.247.97.7", + "84.247.97.14", + "84.247.97.8", + "84.247.97.15", + "84.247.97.13", + "84.247.97.5" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam403", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.155", + "143.244.41.146", + "143.244.41.154", + "143.244.41.132", + "143.244.41.137", + "143.244.41.131", + "143.244.41.152", + "143.244.41.139" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam412", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.41.208", + "143.244.41.218", + "143.244.41.213", + "143.244.41.193" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam429", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.78.54.173", + "195.78.54.206", + "195.78.54.207", + "195.78.54.161", + "195.78.54.185", + "195.78.54.180", + "195.78.54.192", + "195.78.54.171", + "195.78.54.205", + "195.78.54.165", + "195.78.54.193" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "server_name": "amsterdam441", + "hostname": "nl-amsterdam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.35.104", + "212.102.35.100", + "212.102.35.107", + "212.102.35.91", + "212.102.35.97", + "212.102.35.93", + "212.102.35.101", + "212.102.35.84" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand403", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.43", + "179.61.240.57", + "179.61.240.51", + "179.61.240.17", + "179.61.240.25", + "179.61.240.2", + "179.61.240.22", + "179.61.240.18", + "179.61.240.61", + "179.61.240.47" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand404", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.110", + "179.61.240.77", + "179.61.240.89", + "179.61.240.120", + "179.61.240.85", + "179.61.240.95", + "179.61.240.74", + "179.61.240.99", + "179.61.240.73", + "179.61.240.92", + "179.61.240.90", + "179.61.240.125" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "server_name": "newzealand405", + "hostname": "nz.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "179.61.240.137", + "179.61.240.162", + "179.61.240.164", + "179.61.240.153", + "179.61.240.170", + "179.61.240.144", + "179.61.240.163", + "179.61.240.181", + "179.61.240.150", + "179.61.240.167", + "179.61.240.132", + "179.61.240.184" + ] + }, + { + "vpn": "openvpn", + "region": "Nigeria", + "server_name": "nigeria405", + "hostname": "nigeria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.65.137", + "146.70.65.138", + "146.70.65.133", + "146.70.65.134", + "146.70.65.142", + "146.70.65.131" + ] + }, + { + "vpn": "openvpn", + "region": "Nigeria", + "server_name": "nigeria406", + "hostname": "nigeria.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.65.148", + "146.70.65.153", + "146.70.65.154", + "146.70.65.151", + "146.70.65.152", + "146.70.65.155", + "146.70.65.156" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "server_name": "macedonia401", + "hostname": "mk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.225.28.232", + "185.225.28.231", + "185.225.28.234", + "185.225.28.233", + "185.225.28.237", + "185.225.28.238" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "server_name": "macedonia402", + "hostname": "mk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.225.31.21", + "185.225.31.29", + "185.225.31.19", + "185.225.31.25", + "185.225.31.24", + "185.225.31.26", + "185.225.31.27" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo401", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.49", + "46.246.122.40", + "46.246.122.43", + "46.246.122.51", + "46.246.122.41", + "46.246.122.55", + "46.246.122.38", + "46.246.122.50", + "46.246.122.56", + "46.246.122.44", + "46.246.122.46", + "46.246.122.57" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo402", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.81", + "46.246.122.78", + "46.246.122.93", + "46.246.122.94", + "46.246.122.75", + "46.246.122.70", + "46.246.122.73", + "46.246.122.83" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo403", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.100", + "46.246.122.114", + "46.246.122.105", + "46.246.122.112" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "server_name": "oslo404", + "hostname": "no.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.122.169", + "46.246.122.178", + "46.246.122.171", + "46.246.122.174", + "46.246.122.182", + "46.246.122.172", + "46.246.122.163", + "46.246.122.187", + "46.246.122.189" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama405", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.49", + "91.90.126.43", + "91.90.126.46", + "91.90.126.36", + "91.90.126.37", + "91.90.126.44", + "91.90.126.38", + "91.90.126.40" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama407", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.66", + "91.90.126.67", + "91.90.126.72", + "91.90.126.74", + "91.90.126.73", + "91.90.126.79", + "91.90.126.78" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "server_name": "panama408", + "hostname": "panama.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "91.90.126.93", + "91.90.126.82", + "91.90.126.86", + "91.90.126.85", + "91.90.126.90", + "91.90.126.84", + "91.90.126.91", + "91.90.126.89", + "91.90.126.94" + ] + }, + { + "vpn": "openvpn", + "region": "Peru", + "server_name": "peru401", + "hostname": "pe-peru-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.99.21", + "84.247.99.19", + "84.247.99.27", + "84.247.99.7", + "84.247.99.9", + "84.247.99.22", + "84.247.99.30", + "84.247.99.13", + "84.247.99.11", + "84.247.99.20", + "84.247.99.5" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines401", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.142", + "188.214.125.139", + "188.214.125.135", + "188.214.125.132", + "188.214.125.134", + "188.214.125.141", + "188.214.125.137", + "188.214.125.136" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines402", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.149", + "188.214.125.147", + "188.214.125.156", + "188.214.125.151", + "188.214.125.153" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "server_name": "philippines403", + "hostname": "philippines.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.125.183", + "188.214.125.180", + "188.214.125.189", + "188.214.125.184", + "188.214.125.190", + "188.214.125.187", + "188.214.125.185" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw410", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.40", + "138.199.59.35", + "138.199.59.47", + "138.199.59.37", + "138.199.59.43", + "138.199.59.54", + "138.199.59.57", + "138.199.59.55", + "138.199.59.36", + "138.199.59.44", + "138.199.59.51" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw413", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.222", + "138.199.59.212", + "138.199.59.205", + "138.199.59.197", + "138.199.59.219", + "138.199.59.199", + "138.199.59.196", + "138.199.59.208", + "138.199.59.202", + "138.199.59.198", + "138.199.59.204" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "server_name": "warsaw414", + "hostname": "poland.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.59.236", + "138.199.59.243", + "138.199.59.238", + "138.199.59.239", + "138.199.59.240", + "138.199.59.244", + "138.199.59.241" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "server_name": "lisbon404", + "hostname": "pt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.59.43", + "146.70.59.47", + "146.70.59.42", + "146.70.59.41", + "146.70.59.40", + "146.70.59.36", + "146.70.59.39", + "146.70.59.45" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "server_name": "lisbon405", + "hostname": "pt.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.59.10", + "146.70.59.11", + "146.70.59.21", + "146.70.59.19", + "146.70.59.14", + "146.70.59.28", + "146.70.59.6", + "146.70.59.17", + "146.70.59.7", + "146.70.59.22", + "146.70.59.33" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "server_name": "qatar402", + "hostname": "qatar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.234.29", + "95.181.234.28", + "95.181.234.30", + "95.181.234.27", + "95.181.234.37", + "95.181.234.36", + "95.181.234.35" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "server_name": "qatar404", + "hostname": "qatar.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.234.25", + "95.181.234.19", + "95.181.234.15", + "95.181.234.24", + "95.181.234.16", + "95.181.234.21", + "95.181.234.22", + "95.181.234.18" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "server_name": "romania401", + "hostname": "ro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.52.44", + "143.244.52.62", + "143.244.52.51", + "143.244.52.39", + "143.244.52.45", + "143.244.52.33", + "143.244.52.40", + "143.244.52.46", + "143.244.52.54", + "143.244.52.64" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "server_name": "romania402", + "hostname": "ro.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "143.244.54.23", + "143.244.54.22", + "143.244.54.6", + "143.244.54.20", + "143.244.54.19", + "143.244.54.8", + "143.244.54.29", + "143.244.54.21", + "143.244.54.25" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm402", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.40", + "46.246.8.66", + "46.246.8.58", + "46.246.8.69", + "46.246.8.61" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm403", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.109", + "46.246.8.94", + "46.246.8.108", + "46.246.8.95", + "46.246.8.74" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm404", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.8.139", + "46.246.8.136", + "46.246.8.131", + "46.246.8.134", + "46.246.8.130", + "46.246.8.127", + "46.246.8.111", + "46.246.8.125", + "46.246.8.140", + "46.246.8.119" + ] + }, + { + "vpn": "openvpn", + "region": "SE Stockholm", + "server_name": "stockholm407", + "hostname": "sweden.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.112.19.25", + "212.112.19.24", + "212.112.19.26", + "212.112.19.20", + "212.112.19.27", + "212.112.19.30", + "212.112.19.29" + ] + }, + { + "vpn": "openvpn", + "region": "SE Streaming Optimized", + "server_name": "stockholm406", + "hostname": "sweden-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "46.246.3.223", + "46.246.3.250", + "46.246.3.221", + "46.246.3.238", + "46.246.3.247", + "46.246.3.232", + "46.246.3.242", + "46.246.3.235", + "46.246.3.239", + "46.246.3.249" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "server_name": "saudiarabia403", + "hostname": "saudiarabia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.235.17", + "95.181.235.6", + "95.181.235.9", + "95.181.235.11", + "95.181.235.8", + "95.181.235.4", + "95.181.235.3", + "95.181.235.16" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "server_name": "saudiarabia404", + "hostname": "saudiarabia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.235.153", + "95.181.235.149", + "95.181.235.158", + "95.181.235.151", + "95.181.235.148", + "95.181.235.150", + "95.181.235.157" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "server_name": "belgrade402", + "hostname": "rs.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.46.115.21", + "37.46.115.20", + "37.46.115.25", + "37.46.115.23", + "37.46.115.30", + "37.46.115.24", + "37.46.115.22", + "37.46.115.28" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore401", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.195", + "156.146.57.186", + "156.146.57.196", + "156.146.57.177", + "156.146.57.173", + "156.146.57.189", + "156.146.57.190", + "156.146.57.174" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore402", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.119", + "156.146.57.118", + "156.146.57.109", + "156.146.57.116", + "156.146.57.105", + "156.146.57.115", + "156.146.57.113" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore403", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "156.146.57.47", + "156.146.57.52", + "156.146.57.68", + "156.146.57.67", + "156.146.57.48", + "156.146.57.54", + "156.146.57.46", + "156.146.57.61", + "156.146.57.55" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "server_name": "singapore404", + "hostname": "sg.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.24.10", + "138.199.24.12", + "138.199.24.23", + "138.199.24.25", + "138.199.24.8", + "138.199.24.16", + "138.199.24.15", + "138.199.24.24" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "server_name": "bratislava403", + "hostname": "sk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.232.16", + "149.102.232.14", + "149.102.232.21", + "149.102.232.19", + "149.102.232.23", + "149.102.232.13", + "149.102.232.20", + "149.102.232.17", + "149.102.232.15", + "149.102.232.11", + "149.102.232.4" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "server_name": "bratislava404", + "hostname": "sk.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "149.102.232.51", + "149.102.232.42", + "149.102.232.44", + "149.102.232.31", + "149.102.232.38", + "149.102.232.46", + "149.102.232.45", + "149.102.232.34", + "149.102.232.37", + "149.102.232.53", + "149.102.232.35" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "server_name": "slovenia401", + "hostname": "slovenia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.185", + "195.80.150.189", + "195.80.150.190", + "195.80.150.181", + "195.80.150.187", + "195.80.150.182", + "195.80.150.188" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "server_name": "slovenia402", + "hostname": "slovenia.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.142", + "195.80.150.137", + "195.80.150.136", + "195.80.150.138", + "195.80.150.135", + "195.80.150.133", + "195.80.150.141", + "195.80.150.139" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "server_name": "johannesburg411", + "hostname": "za.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "154.47.30.54", + "154.47.30.43", + "154.47.30.45", + "154.47.30.57", + "154.47.30.33", + "154.47.30.38", + "154.47.30.34", + "154.47.30.49", + "154.47.30.53", + "154.47.30.52" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "server_name": "seoul401", + "hostname": "kr-south-korea-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.102.7", + "84.247.102.5", + "84.247.102.3", + "84.247.102.13", + "84.247.102.16", + "84.247.102.6", + "84.247.102.11", + "84.247.102.10", + "84.247.102.12" + ] + }, + { + "vpn": "openvpn", + "region": "Sri Lanka", + "server_name": "srilanka403", + "hostname": "srilanka.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.239.9", + "95.181.239.4", + "95.181.239.10", + "95.181.239.8", + "95.181.239.7", + "95.181.239.12", + "95.181.239.11" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich405", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.36.174", + "212.102.36.162", + "212.102.36.171", + "212.102.36.175", + "212.102.36.182", + "212.102.36.180", + "212.102.36.184", + "212.102.36.177", + "212.102.36.173", + "212.102.36.164" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich411", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "79.142.79.38", + "79.142.79.29", + "79.142.79.56", + "79.142.79.58", + "79.142.79.37", + "79.142.79.53", + "79.142.79.45", + "79.142.79.52", + "79.142.79.34", + "79.142.79.51" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "server_name": "zurich412", + "hostname": "swiss.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "79.142.79.87", + "79.142.79.65", + "79.142.79.89", + "79.142.79.66", + "79.142.79.75", + "79.142.79.79", + "79.142.79.64", + "79.142.79.67", + "79.142.79.62", + "79.142.79.88", + "79.142.79.90" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "server_name": "taiwan405", + "hostname": "taiwan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.49.52", + "173.244.49.51", + "173.244.49.62", + "173.244.49.54", + "173.244.49.73", + "173.244.49.59", + "173.244.49.65", + "173.244.49.66", + "173.244.49.70", + "173.244.49.61", + "173.244.49.57" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "server_name": "taiwan406", + "hostname": "taiwan.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.244.49.85", + "173.244.49.77", + "173.244.49.91", + "173.244.49.96", + "173.244.49.75", + "173.244.49.76", + "173.244.49.89" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul401", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.76", + "188.213.34.75", + "188.213.34.67", + "188.213.34.73", + "188.213.34.69", + "188.213.34.68", + "188.213.34.74", + "188.213.34.70", + "188.213.34.72" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul402", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.93", + "188.213.34.88", + "188.213.34.85", + "188.213.34.90" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul403", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.106", + "188.213.34.110", + "188.213.34.105", + "188.213.34.103", + "188.213.34.108" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "server_name": "istanbul404", + "hostname": "tr.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.213.34.142", + "188.213.34.139", + "188.213.34.141", + "188.213.34.140" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london402", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.63.146", + "212.102.63.147", + "212.102.63.151", + "212.102.63.145", + "212.102.63.152", + "212.102.63.149", + "212.102.63.153", + "212.102.63.134" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london408", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.110.13.26", + "194.110.13.32", + "194.110.13.15", + "194.110.13.12", + "194.110.13.29" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london409", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.215.176.50", + "181.215.176.59", + "181.215.176.49", + "181.215.176.56" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london410", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "181.215.176.81", + "181.215.176.76", + "181.215.176.80", + "181.215.176.95", + "181.215.176.66", + "181.215.176.77", + "181.215.176.67", + "181.215.176.94", + "181.215.176.89" + ] + }, + { + "vpn": "openvpn", + "region": "UK London", + "server_name": "london434", + "hostname": "uk-london.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "194.110.13.96", + "194.110.13.77", + "194.110.13.93", + "194.110.13.81", + "194.110.13.80" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester401", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.37", + "193.239.84.45", + "193.239.84.38", + "193.239.84.43" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester402", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.59", + "193.239.84.50", + "193.239.84.54", + "193.239.84.55", + "193.239.84.62" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester403", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "193.239.84.76", + "193.239.84.71" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester420", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.43", + "45.133.172.51", + "45.133.172.55", + "45.133.172.39", + "45.133.172.35", + "45.133.172.57" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester421", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.81", + "45.133.172.86", + "45.133.172.88", + "45.133.172.97" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester425", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.211", + "45.133.172.224", + "45.133.172.218", + "45.133.172.217", + "45.133.172.206", + "45.133.172.219" + ] + }, + { + "vpn": "openvpn", + "region": "UK Manchester", + "server_name": "manchester426", + "hostname": "uk-manchester.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "45.133.172.237", + "45.133.172.250", + "45.133.172.239", + "45.133.172.232", + "45.133.172.249" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton401", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.36", + "98.159.234.30", + "98.159.234.8", + "98.159.234.18", + "98.159.234.23", + "98.159.234.19", + "98.159.234.41" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton402", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.52", + "98.159.234.51", + "98.159.234.68", + "98.159.234.60", + "98.159.234.44", + "98.159.234.82", + "98.159.234.78", + "98.159.234.46", + "98.159.234.72", + "98.159.234.55" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton403", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.88", + "98.159.234.93", + "98.159.234.113", + "98.159.234.90", + "98.159.234.94", + "98.159.234.107", + "98.159.234.105", + "98.159.234.86", + "98.159.234.123", + "98.159.234.118" + ] + }, + { + "vpn": "openvpn", + "region": "UK Southampton", + "server_name": "southampton404", + "hostname": "uk-southampton.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "98.159.234.156", + "98.159.234.141", + "98.159.234.147", + "98.159.234.135" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london441", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.30.165", + "138.199.30.177", + "138.199.30.170", + "138.199.30.176", + "138.199.30.168", + "138.199.30.175", + "138.199.30.166", + "138.199.30.157", + "138.199.30.178", + "138.199.30.161" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london445", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "212.102.53.82", + "212.102.53.85", + "212.102.52.6", + "212.102.53.87", + "212.102.53.83", + "212.102.52.2", + "212.102.52.4", + "212.102.53.86" + ] + }, + { + "vpn": "openvpn", + "region": "UK Streaming Optimized", + "server_name": "london446", + "hostname": "uk-2.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.28.4", + "138.199.28.5", + "138.199.28.74", + "138.199.28.6", + "138.199.28.65", + "138.199.28.64", + "138.199.28.2", + "138.199.28.8", + "138.199.28.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Alabama", + "server_name": "alabama402", + "hostname": "us-alabama-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.6.4", + "84.239.6.17", + "84.239.6.12", + "84.239.6.5", + "84.239.6.14", + "84.239.6.16", + "84.239.6.20", + "84.239.6.13", + "84.239.6.10" + ] + }, + { + "vpn": "openvpn", + "region": "US Alaska", + "server_name": "alaska402", + "hostname": "us-alaska-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.52.21", + "84.239.52.4", + "84.239.52.17", + "84.239.52.10", + "84.239.52.5", + "84.239.52.19", + "84.239.52.11", + "84.239.52.18", + "84.239.52.20", + "84.239.52.9" + ] + }, + { + "vpn": "openvpn", + "region": "US Arkansas", + "server_name": "littlerock402", + "hostname": "us-arkansas-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.28.14", + "84.239.28.10", + "84.239.28.17", + "84.239.28.9", + "84.239.28.16", + "84.239.28.19", + "84.239.28.2", + "84.239.28.20", + "84.239.28.12" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta412", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.167.55", + "181.214.167.64", + "181.214.167.47", + "181.214.167.49" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta417", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.167.196", + "181.214.167.205", + "181.214.167.225", + "181.214.167.209", + "181.214.167.220", + "181.214.167.219", + "181.214.167.200" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta419", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "5.182.110.19", + "5.182.110.21", + "5.182.110.27", + "5.182.110.11", + "5.182.110.25", + "5.182.110.15", + "5.182.110.7", + "5.182.110.8" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta420", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "5.182.110.61", + "5.182.110.62", + "5.182.110.57", + "5.182.110.37", + "5.182.110.59", + "5.182.110.66", + "5.182.110.55" + ] + }, + { + "vpn": "openvpn", + "region": "US Atlanta", + "server_name": "atlanta426", + "hostname": "us-atlanta.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "156.146.46.154", + "156.146.46.222" + ] + }, + { + "vpn": "openvpn", + "region": "US Baltimore", + "server_name": "baltimore401", + "hostname": "us-baltimore.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.3", + "84.239.43.29", + "84.239.43.30", + "84.239.43.19", + "84.239.43.25", + "84.239.43.12", + "84.239.43.10", + "84.239.43.13", + "84.239.43.2", + "84.239.43.8", + "84.239.43.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Baltimore", + "server_name": "baltimore402", + "hostname": "us-baltimore.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.54", + "84.239.43.41", + "84.239.43.33", + "84.239.43.49", + "84.239.43.53", + "84.239.43.46", + "84.239.43.45", + "84.239.43.56", + "84.239.43.50", + "84.239.43.43", + "84.239.43.59" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles404", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.17.45.21", + "84.17.45.6", + "84.17.45.16", + "84.17.45.2" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles414", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.145.144", + "102.129.145.148", + "102.129.145.146", + "102.129.145.140", + "102.129.145.130", + "102.129.145.155", + "102.129.145.145", + "102.129.145.156", + "102.129.145.150" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles433", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.106.84", + "191.96.106.85", + "191.96.106.97", + "191.96.106.94", + "191.96.106.86", + "191.96.106.95", + "191.96.106.74", + "191.96.106.99", + "191.96.106.93", + "191.96.106.72", + "191.96.106.88" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles436", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.106.173", + "191.96.106.171", + "191.96.106.181", + "191.96.106.169" + ] + }, + { + "vpn": "openvpn", + "region": "US California", + "server_name": "losangeles446", + "hostname": "us-california.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.48.21", + "143.244.48.28", + "143.244.48.11", + "143.244.48.17" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago407", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.165.71", + "181.214.165.96", + "181.214.165.56", + "181.214.165.53" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago409", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.165.187", + "181.214.165.154", + "181.214.165.178", + "181.214.165.159", + "181.214.165.166", + "181.214.165.160", + "181.214.165.158" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago414", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.164.179", + "181.214.164.160", + "181.214.164.181", + "181.214.164.156", + "181.214.164.157" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago418", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.132", + "181.214.166.101", + "181.214.166.143", + "181.214.166.112", + "181.214.166.122", + "181.214.166.129", + "181.214.166.104" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago420", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.199", + "181.214.166.201" + ] + }, + { + "vpn": "openvpn", + "region": "US Chicago", + "server_name": "chicago421", + "hostname": "us-chicago.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.166.225", + "181.214.166.238", + "181.214.166.222", + "181.214.166.242", + "181.214.166.227", + "181.214.166.234", + "181.214.166.250", + "181.214.166.248" + ] + }, + { + "vpn": "openvpn", + "region": "US Connecticut", + "server_name": "connecticut402", + "hostname": "us-connecticut-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.9", + "84.239.47.24", + "84.239.47.10", + "84.239.47.11", + "84.239.47.21", + "84.239.47.4", + "84.239.47.14", + "84.239.47.15", + "84.239.47.3", + "84.239.47.29", + "84.239.47.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Connecticut", + "server_name": "connecticut404", + "hostname": "us-connecticut-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.64", + "84.239.47.70", + "84.239.47.83", + "84.239.47.67", + "84.239.47.77", + "84.239.47.78", + "84.239.47.73", + "84.239.47.90", + "84.239.47.63", + "84.239.47.81", + "84.239.47.76", + "84.239.47.75" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver419", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.57", + "181.41.206.51", + "181.41.206.58", + "181.41.206.54", + "181.41.206.53", + "181.41.206.61", + "181.41.206.56" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver421", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.80", + "181.41.206.89", + "181.41.206.85" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver429", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.205", + "181.41.206.203", + "181.41.206.207", + "181.41.206.201", + "181.41.206.212", + "181.41.206.209" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver430", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.41.206.221", + "181.41.206.224", + "181.41.206.223", + "181.41.206.220", + "181.41.206.218" + ] + }, + { + "vpn": "openvpn", + "region": "US Denver", + "server_name": "denver433", + "hostname": "us-denver.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.210.85", + "37.19.210.87", + "37.19.210.80", + "37.19.210.67", + "37.19.210.86", + "37.19.210.93", + "37.19.210.75" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey426", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.55", + "102.165.16.67", + "102.165.16.66", + "102.165.16.64", + "102.165.16.50", + "102.165.16.49", + "102.165.16.69", + "102.165.16.56", + "102.165.16.65", + "102.165.16.52", + "102.165.16.57" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey428", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.117", + "102.165.16.121", + "102.165.16.107", + "102.165.16.120", + "102.165.16.103", + "102.165.16.112", + "102.165.16.102" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey434", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.55", + "204.93.149.58", + "204.93.149.44", + "204.93.149.65" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey438", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.189", + "204.93.149.167", + "204.93.149.163", + "204.93.149.187", + "204.93.149.176" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "server_name": "newjersey440", + "hostname": "us-newjersey.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "204.93.149.252", + "204.93.149.236", + "204.93.149.243", + "204.93.149.248", + "204.93.149.225" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey401", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.44.77", + "143.244.44.71", + "143.244.44.65", + "143.244.44.85", + "143.244.44.73", + "143.244.44.74" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey414", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "138.199.10.28", + "138.199.10.27", + "138.199.10.16", + "138.199.10.26", + "138.199.10.5", + "138.199.10.9", + "138.199.10.13", + "138.199.10.19" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey419", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.197.144", + "37.19.197.151", + "37.19.197.139", + "37.19.197.150", + "37.19.197.154", + "37.19.197.131", + "37.19.197.141", + "37.19.197.149", + "37.19.197.153" + ] + }, + { + "vpn": "openvpn", + "region": "US East Streaming Optimized", + "server_name": "newjersey425", + "hostname": "us-streaming.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.165.16.26", + "102.165.16.22", + "102.165.16.35", + "102.165.16.34", + "102.165.16.13", + "102.165.16.12", + "102.165.16.37", + "102.165.16.36", + "102.165.16.14" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami417", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.34", + "102.129.152.37", + "102.129.152.28", + "102.129.152.15", + "102.129.152.39", + "102.129.152.38", + "102.129.152.26", + "102.129.152.16", + "102.129.152.18", + "102.129.152.36", + "102.129.152.20" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami419", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.86", + "102.129.152.73", + "102.129.152.95", + "102.129.152.70" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami420", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.152.110", + "102.129.152.129", + "102.129.152.108", + "102.129.152.122", + "102.129.152.102", + "102.129.152.101", + "102.129.152.126" + ] + }, + { + "vpn": "openvpn", + "region": "US Florida", + "server_name": "miami428", + "hostname": "us-florida.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.153.185", + "102.129.153.179", + "102.129.153.171", + "102.129.153.161" + ] + }, + { + "vpn": "openvpn", + "region": "US Honolulu", + "server_name": "honolulu401", + "hostname": "us-honolulu.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.26", + "84.239.5.5", + "84.239.5.29", + "84.239.5.27", + "84.239.5.15", + "84.239.5.23", + "84.239.5.24", + "84.239.5.19" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston422", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.120", + "191.96.67.105", + "191.96.67.108", + "191.96.67.94", + "191.96.67.111", + "191.96.67.113", + "191.96.67.119", + "191.96.67.107" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston424", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.167", + "191.96.67.168", + "191.96.67.189", + "191.96.67.164", + "191.96.67.181", + "191.96.67.175", + "191.96.67.172" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston426", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.67.233", + "191.96.67.229", + "191.96.67.246", + "191.96.67.234", + "191.96.67.245" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston432", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.221.23", + "37.19.221.11", + "37.19.221.15", + "37.19.221.2" + ] + }, + { + "vpn": "openvpn", + "region": "US Houston", + "server_name": "houston433", + "hostname": "us-houston.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.221.33", + "37.19.221.31", + "37.19.221.50", + "37.19.221.49", + "37.19.221.52", + "37.19.221.29", + "37.19.221.32", + "37.19.221.37" + ] + }, + { + "vpn": "openvpn", + "region": "US Idaho", + "server_name": "idaho402", + "hostname": "us-idaho-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.12.145", + "84.239.12.148", + "84.239.12.150", + "84.239.12.144", + "84.239.12.139", + "84.239.12.135", + "84.239.12.130", + "84.239.12.149", + "84.239.12.137", + "84.239.12.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Indiana", + "server_name": "indiana403", + "hostname": "us-indiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.20", + "84.239.16.11", + "84.239.16.2", + "84.239.16.5", + "84.239.16.19", + "84.239.16.10", + "84.239.16.15", + "84.239.16.4", + "84.239.16.14", + "84.239.16.17", + "84.239.16.13" + ] + }, + { + "vpn": "openvpn", + "region": "US Indiana", + "server_name": "indiana404", + "hostname": "us-indiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.25", + "84.239.16.31", + "84.239.16.37", + "84.239.16.38", + "84.239.16.33", + "84.239.16.34", + "84.239.16.27", + "84.239.16.26", + "84.239.16.32" + ] + }, + { + "vpn": "openvpn", + "region": "US Iowa", + "server_name": "iowa402", + "hostname": "us-iowa-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.15", + "84.239.17.6", + "84.239.17.3", + "84.239.17.10", + "84.239.17.8", + "84.239.17.17", + "84.239.17.16", + "84.239.17.9", + "84.239.17.12" + ] + }, + { + "vpn": "openvpn", + "region": "US Kansas", + "server_name": "kansas402", + "hostname": "us-kansas-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.31.5", + "84.239.31.17", + "84.239.31.2", + "84.239.31.21", + "84.239.31.13", + "84.239.31.18" + ] + }, + { + "vpn": "openvpn", + "region": "US Kentucky", + "server_name": "kentucky402", + "hostname": "us-kentucky-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.6.135", + "84.239.6.142", + "84.239.6.147", + "84.239.6.130", + "84.239.6.134", + "84.239.6.145", + "84.239.6.148", + "84.239.6.132", + "84.239.6.146", + "84.239.6.149" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas422", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.93", + "191.101.61.83", + "191.101.61.85", + "191.101.61.100" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas424", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.143", + "191.101.61.158", + "191.101.61.163", + "191.101.61.157" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas426", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "173.239.226.153", + "173.239.226.151", + "173.239.226.162", + "173.239.226.143", + "173.239.226.155", + "173.239.226.142", + "173.239.226.159" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas427", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "173.239.226.199", + "173.239.226.198", + "173.239.226.202", + "173.239.226.221", + "173.239.226.207", + "173.239.226.215", + "173.239.226.192" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "lasvegas429", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.101.61.217", + "191.101.61.199", + "191.101.61.209", + "191.101.61.212" + ] + }, + { + "vpn": "openvpn", + "region": "US Las Vegas", + "server_name": "losangeles408", + "hostname": "us-lasvegas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "143.244.48.198", + "143.244.48.194", + "143.244.48.154", + "143.244.48.192", + "143.244.48.204" + ] + }, + { + "vpn": "openvpn", + "region": "US Louisiana", + "server_name": "louisiana402", + "hostname": "us-louisiana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.28.132", + "84.239.28.140", + "84.239.28.142", + "84.239.28.138", + "84.239.28.145", + "84.239.28.136", + "84.239.28.133", + "84.239.28.146", + "84.239.28.139" + ] + }, + { + "vpn": "openvpn", + "region": "US Maine", + "server_name": "maine402", + "hostname": "us-maine-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.37.8", + "84.239.37.13", + "84.239.37.16", + "84.239.37.5", + "84.239.37.17", + "84.239.37.19", + "84.239.37.12", + "84.239.37.11", + "84.239.37.14" + ] + }, + { + "vpn": "openvpn", + "region": "US Massachusetts", + "server_name": "massachusetts404", + "hostname": "us-massachusetts-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "149.40.50.36", + "149.40.50.46", + "149.40.50.41", + "149.40.50.40", + "149.40.50.51", + "149.40.50.48", + "149.40.50.47", + "149.40.50.57", + "149.40.50.54" + ] + }, + { + "vpn": "openvpn", + "region": "US Massachusetts", + "server_name": "massachusetts405", + "hostname": "us-massachusetts-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "149.40.50.24", + "149.40.50.11", + "149.40.50.15", + "149.40.50.22", + "149.40.50.9", + "149.40.50.21", + "149.40.50.12", + "149.40.50.23", + "149.40.50.8", + "149.40.50.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Michigan", + "server_name": "michigan403", + "hostname": "us-michigan-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.132", + "84.239.17.140", + "84.239.17.145", + "84.239.17.137", + "84.239.17.141", + "84.239.17.136", + "84.239.17.138", + "84.239.17.142", + "84.239.17.143", + "84.239.17.135", + "84.239.17.144" + ] + }, + { + "vpn": "openvpn", + "region": "US Michigan", + "server_name": "michigan404", + "hostname": "us-michigan-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.17.160", + "84.239.17.166", + "84.239.17.164", + "84.239.17.162", + "84.239.17.151", + "84.239.17.156", + "84.239.17.152", + "84.239.17.165", + "84.239.17.170" + ] + }, + { + "vpn": "openvpn", + "region": "US Minnesota", + "server_name": "minnesota402", + "hostname": "us-minnesota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.25.9", + "84.239.25.13", + "84.239.25.16", + "84.239.25.8", + "84.239.25.12", + "84.239.25.7", + "84.239.25.5", + "84.239.25.19" + ] + }, + { + "vpn": "openvpn", + "region": "US Mississippi", + "server_name": "mississippi402", + "hostname": "us-mississippi-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.31.144", + "84.239.31.133", + "84.239.31.131", + "84.239.31.140", + "84.239.31.143", + "84.239.31.138", + "84.239.31.135", + "84.239.31.132", + "84.239.31.149" + ] + }, + { + "vpn": "openvpn", + "region": "US Missouri", + "server_name": "missouri402", + "hostname": "us-missouri-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.16.141", + "84.239.16.144", + "84.239.16.135", + "84.239.16.133", + "84.239.16.140", + "84.239.16.146", + "84.239.16.138", + "84.239.16.132", + "84.239.16.134" + ] + }, + { + "vpn": "openvpn", + "region": "US Montana", + "server_name": "montana402", + "hostname": "us-montana-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.47.142", + "84.239.47.141", + "84.239.47.138", + "84.239.47.143", + "84.239.47.150", + "84.239.47.134", + "84.239.47.146", + "84.239.47.149", + "84.239.47.137" + ] + }, + { + "vpn": "openvpn", + "region": "US Nebraska", + "server_name": "nebraska402", + "hostname": "us-nebraska-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.25.131", + "84.239.25.139", + "84.239.25.143", + "84.239.25.150", + "84.239.25.134", + "84.239.25.141", + "84.239.25.140", + "84.239.25.148", + "84.239.25.136" + ] + }, + { + "vpn": "openvpn", + "region": "US New Hampshire", + "server_name": "newhampshire402", + "hostname": "us-new-hampshire-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.14", + "84.239.41.7", + "84.239.41.13", + "84.239.41.17", + "84.239.41.18", + "84.239.41.11", + "84.239.41.12", + "84.239.41.8", + "84.239.41.3" + ] + }, + { + "vpn": "openvpn", + "region": "US New Mexico", + "server_name": "newmexico402", + "hostname": "us-new-mexico-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.33.16", + "84.239.33.12", + "84.239.33.6", + "84.239.33.19", + "84.239.33.17", + "84.239.33.2", + "84.239.33.20", + "84.239.33.9", + "84.239.33.7" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork432", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "37.19.198.142", + "37.19.198.145", + "37.19.198.32", + "37.19.198.134", + "37.19.198.144", + "37.19.198.36", + "37.19.198.137", + "37.19.198.139", + "37.19.198.35", + "37.19.198.143", + "37.19.198.131", + "37.19.198.157" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork435", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.150.55", + "191.96.150.20", + "191.96.150.41", + "191.96.150.31", + "191.96.150.39", + "191.96.150.7", + "191.96.150.49", + "191.96.150.40", + "191.96.150.17", + "191.96.150.32", + "191.96.150.44", + "191.96.150.27" + ] + }, + { + "vpn": "openvpn", + "region": "US New York", + "server_name": "newyork438", + "hostname": "us-newyorkcity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "154.16.192.48", + "154.16.192.42", + "154.16.192.55", + "154.16.192.22", + "154.16.192.50", + "154.16.192.12", + "154.16.192.9", + "154.16.192.53", + "154.16.192.37", + "154.16.192.10", + "154.16.192.46" + ] + }, + { + "vpn": "openvpn", + "region": "US North Carolina", + "server_name": "northcarolina402", + "hostname": "us-north-carolina-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.7.2", + "84.239.7.11", + "84.239.7.9", + "84.239.7.4", + "84.239.7.7", + "84.239.7.19", + "84.239.7.14", + "84.239.7.5", + "84.239.7.12", + "84.239.7.10" + ] + }, + { + "vpn": "openvpn", + "region": "US North Dakota", + "server_name": "northdakota402", + "hostname": "us-north-dakota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.48.9", + "84.239.48.20", + "84.239.48.19", + "84.239.48.5", + "84.239.48.10", + "84.239.48.11", + "84.239.48.8", + "84.239.48.4", + "84.239.48.7" + ] + }, + { + "vpn": "openvpn", + "region": "US Ohio", + "server_name": "ohio403", + "hostname": "us-ohio-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.144", + "84.239.27.130", + "84.239.27.140", + "84.239.27.133", + "84.239.27.145", + "84.239.27.137", + "84.239.27.146", + "84.239.27.149", + "84.239.27.131", + "84.239.27.143" + ] + }, + { + "vpn": "openvpn", + "region": "US Ohio", + "server_name": "ohio404", + "hostname": "us-ohio-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.169", + "84.239.27.163", + "84.239.27.171", + "84.239.27.164", + "84.239.27.162", + "84.239.27.166", + "84.239.27.157", + "84.239.27.172" + ] + }, + { + "vpn": "openvpn", + "region": "US Oklahoma", + "server_name": "oklahoma402", + "hostname": "us-oklahoma-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.33.136", + "84.239.33.132", + "84.239.33.137", + "84.239.33.149", + "84.239.33.141", + "84.239.33.131", + "84.239.33.134", + "84.239.33.143", + "84.239.33.145" + ] + }, + { + "vpn": "openvpn", + "region": "US Oregon", + "server_name": "oregon402", + "hostname": "us-oregon-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.48.140", + "84.239.48.150", + "84.239.48.139", + "84.239.48.144", + "84.239.48.135", + "84.239.48.132", + "84.239.48.146", + "84.239.48.147", + "84.239.48.143", + "84.239.48.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Pennsylvania", + "server_name": "pennsylvania403", + "hostname": "us-pennsylvania-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.136", + "84.239.41.134", + "84.239.41.137", + "84.239.41.140", + "84.239.41.143", + "84.239.41.142", + "84.239.41.145", + "84.239.41.149", + "84.239.41.141", + "84.239.41.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Pennsylvania", + "server_name": "pennsylvania404", + "hostname": "us-pennsylvania-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.41.199", + "84.239.41.193", + "84.239.41.200", + "84.239.41.202", + "84.239.41.210", + "84.239.41.196", + "84.239.41.191", + "84.239.41.206", + "84.239.41.192", + "84.239.41.195", + "84.239.41.209" + ] + }, + { + "vpn": "openvpn", + "region": "US Rhode Island", + "server_name": "rhodeisland402", + "hostname": "us-rhode-island-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.45.7", + "84.239.45.14", + "84.239.45.12", + "84.239.45.13", + "84.239.45.5", + "84.239.45.3", + "84.239.45.15", + "84.239.45.6", + "84.239.45.8" + ] + }, + { + "vpn": "openvpn", + "region": "US Salt Lake City", + "server_name": "saltlake401", + "hostname": "us-saltlakecity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.144", + "84.239.5.154", + "84.239.5.141", + "84.239.5.160", + "84.239.5.140", + "84.239.5.159", + "84.239.5.156", + "84.239.5.157", + "84.239.5.132", + "84.239.5.152" + ] + }, + { + "vpn": "openvpn", + "region": "US Salt Lake City", + "server_name": "saltlake402", + "hostname": "us-saltlakecity.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.5.164", + "84.239.5.183", + "84.239.5.182", + "84.239.5.167", + "84.239.5.174", + "84.239.5.188", + "84.239.5.165", + "84.239.5.169", + "84.239.5.172", + "84.239.5.177", + "84.239.5.185" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle401", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "212.102.46.202", + "156.146.48.25", + "156.146.48.24", + "156.146.48.23", + "156.146.48.28", + "156.146.48.3" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle404", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.103.30", + "191.96.103.22", + "191.96.103.25", + "191.96.103.20", + "191.96.103.32", + "191.96.103.8", + "191.96.103.26", + "191.96.103.13", + "191.96.103.17", + "191.96.103.28" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle412", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.11", + "191.96.37.14", + "191.96.37.10", + "191.96.37.17", + "191.96.37.9", + "191.96.37.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle413", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.40", + "191.96.37.55", + "191.96.37.39", + "191.96.37.53", + "191.96.37.36", + "191.96.37.63" + ] + }, + { + "vpn": "openvpn", + "region": "US Seattle", + "server_name": "seattle415", + "hostname": "us-seattle.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.37.119", + "191.96.37.125", + "191.96.37.111", + "191.96.37.98", + "191.96.37.101" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley402", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.56", + "102.129.232.77", + "102.129.232.88", + "102.129.232.80", + "102.129.232.89", + "102.129.232.78" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley403", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.108", + "102.129.232.138", + "102.129.232.106", + "102.129.232.125" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley406", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.229", + "102.129.232.250", + "102.129.232.223", + "102.129.232.233" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley408", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.252.33", + "102.129.252.29", + "102.129.252.36", + "102.129.252.31", + "102.129.252.25", + "102.129.252.5" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley415", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.71", + "191.96.255.76", + "191.96.255.51", + "191.96.255.63", + "191.96.255.52", + "191.96.255.58", + "191.96.255.88", + "191.96.255.77", + "191.96.255.67" + ] + }, + { + "vpn": "openvpn", + "region": "US Silicon Valley", + "server_name": "siliconvalley416", + "hostname": "us-siliconvalley.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.109", + "191.96.255.99", + "191.96.255.118", + "191.96.255.130", + "191.96.255.112", + "191.96.255.108" + ] + }, + { + "vpn": "openvpn", + "region": "US South Carolina", + "server_name": "southcarolina402", + "hostname": "us-south-carolina-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.7.158", + "84.239.7.132", + "84.239.7.135", + "84.239.7.141", + "84.239.7.155", + "84.239.7.151", + "84.239.7.140", + "84.239.7.130", + "84.239.7.139", + "84.239.7.144" + ] + }, + { + "vpn": "openvpn", + "region": "US South Dakota", + "server_name": "southdakota402", + "hostname": "us-south-dakota-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.50.19", + "84.239.50.9", + "84.239.50.20", + "84.239.50.10", + "84.239.50.5", + "84.239.50.14", + "84.239.50.17", + "84.239.50.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Tennessee", + "server_name": "tennessee402", + "hostname": "us-tennessee-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.10.13", + "84.239.10.19", + "84.239.10.14", + "84.239.10.7", + "84.239.10.2", + "84.239.10.4", + "84.239.10.10", + "84.239.10.15" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas405", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.93.52", + "181.214.93.77", + "181.214.93.51", + "181.214.93.72" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas406", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.93.133", + "181.214.93.110", + "181.214.93.125", + "181.214.93.105" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas410", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.8", + "102.129.234.11", + "102.129.234.7", + "102.129.234.20", + "102.129.234.30" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas412", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.134", + "102.129.234.109", + "102.129.234.122", + "102.129.234.138" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas413", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.234.171", + "102.129.234.182", + "102.129.234.175", + "102.129.234.149", + "102.129.234.146", + "102.129.234.172", + "102.129.234.169" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas417", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.215.182.117", + "181.215.182.123", + "181.215.182.122", + "181.215.182.104", + "181.215.182.106", + "181.215.182.133" + ] + }, + { + "vpn": "openvpn", + "region": "US Texas", + "server_name": "dallas425", + "hostname": "us-texas.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "156.146.39.24", + "156.146.39.29", + "156.146.39.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Vermont", + "server_name": "vermont402", + "hostname": "us-vermont-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.45.149", + "84.239.45.143", + "84.239.45.138", + "84.239.45.139", + "84.239.45.150", + "84.239.45.142", + "84.239.45.141", + "84.239.45.148", + "84.239.45.145", + "84.239.45.140" + ] + }, + { + "vpn": "openvpn", + "region": "US Virginia", + "server_name": "virginia403", + "hostname": "us-virginia-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.10.145", + "84.239.10.134", + "84.239.10.137", + "84.239.10.132", + "84.239.10.148", + "84.239.10.141", + "84.239.10.131", + "84.239.10.136" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington432", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.14", + "181.214.94.8", + "181.214.94.24", + "181.214.94.6", + "181.214.94.21", + "181.214.94.20", + "181.214.94.18", + "181.214.94.32" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington433", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.59", + "181.214.94.43" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington436", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.143", + "181.214.94.152", + "181.214.94.155", + "181.214.94.142", + "181.214.94.158", + "181.214.94.153", + "181.214.94.154" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington437", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.185", + "181.214.94.176", + "181.214.94.192", + "181.214.94.179", + "181.214.94.174", + "181.214.94.172", + "181.214.94.182", + "181.214.94.168" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington438", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "181.214.94.223", + "181.214.94.198" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington441", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.235.44", + "102.129.235.64" + ] + }, + { + "vpn": "openvpn", + "region": "US Washington DC", + "server_name": "washington442", + "hostname": "us-washingtondc.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.235.72", + "102.129.235.79" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix409", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "172.98.87.164", + "172.98.87.163", + "172.98.87.153", + "172.98.87.180", + "172.98.87.190", + "172.98.87.133" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix410", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.252.177", + "184.170.252.175", + "184.170.252.154", + "184.170.252.165" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix411", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.252.214", + "107.181.184.181", + "184.170.252.206", + "184.170.252.252", + "184.170.252.225", + "107.181.184.178", + "184.170.252.204", + "184.170.252.221", + "184.170.252.250", + "184.170.252.231" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix414", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.242.197", + "184.170.242.137", + "184.170.242.139", + "184.170.242.183", + "184.170.242.144", + "184.170.242.162", + "184.170.242.172" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "server_name": "phoenix415", + "hostname": "us3.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.242.222", + "184.170.242.234", + "184.170.242.221", + "184.170.242.242", + "184.170.242.227", + "184.170.242.230", + "184.170.242.214" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "phoenix406", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "184.170.241.6", + "184.170.241.4", + "184.170.241.3", + "184.170.241.5" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "siliconvalley407", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "102.129.232.192", + "102.129.232.208", + "102.129.232.195", + "102.129.232.206", + "102.129.232.199", + "102.129.232.190", + "102.129.232.207", + "102.129.232.202", + "102.129.232.204" + ] + }, + { + "vpn": "openvpn", + "region": "US West Streaming Optimized", + "server_name": "siliconvalley414", + "hostname": "us-streaming-2.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "191.96.255.24", + "191.96.255.4", + "191.96.255.18", + "191.96.255.13", + "191.96.255.36", + "191.96.255.27", + "191.96.255.44", + "191.96.255.40", + "191.96.255.35", + "191.96.255.22", + "191.96.255.29" + ] + }, + { + "vpn": "openvpn", + "region": "US West Virginia", + "server_name": "westvirginia402", + "hostname": "us-west-virginia-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.12.8", + "84.239.12.17", + "84.239.12.4", + "84.239.12.14", + "84.239.12.2", + "84.239.12.11", + "84.239.12.18", + "84.239.12.19", + "84.239.12.16" + ] + }, + { + "vpn": "openvpn", + "region": "US Wilmington", + "server_name": "wilmington401", + "hostname": "us-wilmington.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.148", + "84.239.43.158", + "84.239.43.144", + "84.239.43.137", + "84.239.43.159", + "84.239.43.140", + "84.239.43.133", + "84.239.43.131", + "84.239.43.155", + "84.239.43.150" + ] + }, + { + "vpn": "openvpn", + "region": "US Wilmington", + "server_name": "wilmington402", + "hostname": "us-wilmington.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.43.190", + "84.239.43.179", + "84.239.43.182", + "84.239.43.168", + "84.239.43.176", + "84.239.43.162", + "84.239.43.174", + "84.239.43.177", + "84.239.43.171", + "84.239.43.184" + ] + }, + { + "vpn": "openvpn", + "region": "US Wisconsin", + "server_name": "wisconsin402", + "hostname": "us-wisconsin-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.27.19", + "84.239.27.15", + "84.239.27.4", + "84.239.27.11", + "84.239.27.5", + "84.239.27.10", + "84.239.27.17", + "84.239.27.12", + "84.239.27.7", + "84.239.27.13" + ] + }, + { + "vpn": "openvpn", + "region": "US Wyoming", + "server_name": "wyoming402", + "hostname": "us-wyoming-pf.privacy.network", + "tcp": true, + "udp": true, + "ips": [ + "84.239.50.141", + "84.239.50.145", + "84.239.50.132", + "84.239.50.142", + "84.239.50.143", + "84.239.50.144", + "84.239.50.138", + "84.239.50.137" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "server_name": "kiev407", + "hostname": "ua.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.239.42.43", + "84.239.42.55", + "84.239.42.38", + "84.239.42.35", + "84.239.42.58", + "84.239.42.42", + "84.239.42.34", + "84.239.42.33", + "84.239.42.50" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "server_name": "kiev408", + "hostname": "ua.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.239.42.29", + "84.239.42.20", + "84.239.42.18", + "84.239.42.23", + "84.239.42.26", + "84.239.42.5", + "84.239.42.22", + "84.239.42.3", + "84.239.42.10" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai402", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "146.70.102.9", + "146.70.102.4", + "146.70.102.13", + "146.70.102.12", + "146.70.102.3", + "146.70.102.5", + "146.70.102.14", + "146.70.102.11", + "146.70.102.10" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai403", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.193.155", + "217.138.193.153", + "217.138.193.151", + "217.138.193.146", + "217.138.193.148", + "217.138.193.149" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "server_name": "dubai404", + "hostname": "ae.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "217.138.193.164", + "217.138.193.172", + "217.138.193.162", + "217.138.193.171", + "217.138.193.170", + "217.138.193.168", + "217.138.193.173", + "217.138.193.169" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "server_name": "uruguay401", + "hostname": "uy-uruguay-pf.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "84.247.101.6", + "84.247.101.17", + "84.247.101.15", + "84.247.101.7", + "84.247.101.29", + "84.247.101.5", + "84.247.101.28", + "84.247.101.18", + "84.247.101.11", + "84.247.101.4" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela404", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.15", + "95.181.237.22", + "95.181.237.17", + "95.181.237.24", + "95.181.237.16", + "95.181.237.19", + "95.181.237.18", + "95.181.237.20" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela405", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.32", + "95.181.237.28", + "95.181.237.37", + "95.181.237.27", + "95.181.237.30", + "95.181.237.29" + ] + }, + { + "vpn": "openvpn", + "region": "Venezuela", + "server_name": "venezuela406", + "hostname": "venezuela.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "95.181.237.46", + "95.181.237.49", + "95.181.237.40", + "95.181.237.48", + "95.181.237.47", + "95.181.237.50", + "95.181.237.44" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "server_name": "vietnam403", + "hostname": "vietnam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.247.132", + "173.239.247.136", + "173.239.247.142", + "173.239.247.147", + "173.239.247.149", + "173.239.247.146", + "173.239.247.130", + "173.239.247.148", + "173.239.247.135", + "173.239.247.141" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "server_name": "vietnam404", + "hostname": "vietnam.privacy.network", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "173.239.247.165", + "173.239.247.156", + "173.239.247.171", + "173.239.247.158", + "173.239.247.167", + "173.239.247.173", + "173.239.247.155" + ] + } + ] + }, + "privatevpn": { + "version": 4, + "timestamp": 1654006579, + "servers": [ + { + "vpn": "openvpn", + "country": "Argentina", + "city": "BuenosAires", + "hostname": "ar-bue.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "181.119.160.59" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "hostname": "au-mel.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "103.231.88.203" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney1", + "hostname": "au-syd.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.96" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Wien", + "hostname": "at-wie.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.9.19.91" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "hostname": "be-bru.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.104.186.211" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "SaoPaulo", + "hostname": "br-sao.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.162.230.59" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "hostname": "bg-sof.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.94.192.163" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "hostname": "ca-mon.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "37.120.237.163", + "87.101.92.131" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "ca-van.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "74.3.160.19" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "hostname": "cl-san.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "216.241.14.227" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "ca-tor.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.148.7.3", + "45.148.7.6", + "45.148.7.8" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "hostname": "co-bog.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "201.217.220.27" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "SanJose", + "hostname": "cr-san.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "190.10.8.218" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "hostname": "hr-zag.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "85.10.56.127" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Nicosia", + "hostname": "cy-nic.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.173.226.47" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "hostname": "cz-pra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.156.174.179" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "hostname": "dk-cop.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "62.115.255.188", + "62.115.255.189" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris1", + "hostname": "fr-par.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "80.239.199.102", + "80.239.199.103", + "80.239.199.104", + "80.239.199.105" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt1", + "hostname": "de-fra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.130", + "193.180.119.131" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Nuremberg", + "hostname": "de-nur.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.89.36.3" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "hostname": "gr-ath.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "154.57.3.33" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "HongKong", + "hostname": "hk-hon.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "84.17.37.58" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "hostname": "hu-bud.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.104.187.67" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "hostname": "is-rey.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.221.113.210" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "hostname": "id-jak.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "23.248.170.136" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-dub.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.138.222.67" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "city": "Ballasalla", + "hostname": "im-bal.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "81.27.96.89" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "it-mil.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.85.3", + "45.130.85.6", + "217.212.240.90", + "217.212.240.91", + "217.212.240.92", + "217.212.240.93" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo1", + "hostname": "jp-tok.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.160.154", + "89.187.161.142" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "hostname": "kr-seo.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.73.37" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "hostname": "lv-rig.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.199.103.164" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "hostname": "lt-sia.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.64.104.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Steinsel", + "hostname": "lu-ste.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "94.242.250.71" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "KualaLumpur", + "hostname": "my-kua.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "128.1.160.184" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "MexicoCity", + "hostname": "mx-mex.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "190.60.16.28" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "hostname": "md-chi.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "178.17.172.99" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam1", + "hostname": "nl-ams.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.194", + "193.180.119.195", + "193.180.119.196", + "193.180.119.197" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "hostname": "nz-auc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.252.191.34" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "hostname": "no-osl.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "91.205.186.26" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "city": "PanamaCity", + "hostname": "pa-pan.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "200.110.155.235" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "hostname": "pe-lim.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "170.0.81.107" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "hostname": "ph-man.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "128.1.209.12" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Torun", + "hostname": "pl-tor.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "91.236.55.255", + "185.72.199.130" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "hostname": "pt-lis.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "130.185.85.107" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bukarest", + "hostname": "ro-buk.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.40.181.203" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Krasnoyarsk", + "hostname": "ru-kra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.87.11" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "hostname": "ru-mos.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.223.103.138" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "StPetersburg", + "hostname": "ru-pet.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "95.213.148.99" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "hostname": "rs-bel.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.166" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sg-sin.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "143.244.33.81" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "hostname": "sk-bra.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "46.29.2.168" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "hostname": "za-joh.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "129.232.185.115", + "129.232.209.235" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "hostname": "es-mad.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.212.244.92", + "217.212.244.93" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Gothenburg", + "hostname": "se-got.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.187.91.19", + "193.187.91.21" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Kista", + "hostname": "se-kis.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "193.187.88.216", + "193.187.88.217", + "193.187.88.218", + "193.187.88.219", + "193.187.88.220", + "193.187.88.221", + "193.187.88.222" + ] + }, + { + "country": "Sweden", + "city": "Stockholm", + "tcp": true, + "udp": true, + "ips": [ + "193.180.119.2" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "hostname": "se-sto.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.87.3", + "45.130.87.5", + "45.130.87.7", + "45.130.87.9", + "45.130.87.12", + "45.130.87.14", + "45.130.87.16", + "45.130.87.18" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich1", + "hostname": "ch-zur.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "217.212.245.92", + "217.212.245.93" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "hostname": "tw-tai.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "2.58.241.51" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "hostname": "th-ban.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "103.27.203.234" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "hostname": "tr-ist.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "92.38.180.28" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kiev", + "hostname": "ua-kie.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "192.121.68.131" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Nikolaev", + "hostname": "ua-nik.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "194.54.83.21" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-dub.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.59" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London2", + "hostname": "uk-lon2.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.41.242.67" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London7", + "hostname": "uk-lon7.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.125.204.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "hostname": "uk-man.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "185.206.227.181" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "hostname": "us-atl.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.170.130", + "138.199.2.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Buffalo", + "hostname": "us-buf.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "172.245.13.115", + "192.210.199.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "us-dal.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "89.187.164.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "LasVegas", + "hostname": "us-las.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.102.30.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "us-mia.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "195.181.163.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "NewYork1", + "hostname": "us-nyc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "45.130.86.3", + "45.130.86.5", + "45.130.86.8", + "45.130.86.10", + "45.130.86.12" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "hostname": "us-pho.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "82.102.30.131" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "HoChiMinhCity", + "hostname": "vn-hoc.pvdata.host", + "tcp": true, + "udp": true, + "ips": [ + "210.2.64.5" + ] + } + ] + }, + "protonvpn": { + "version": 4, + "timestamp": 1722515320, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#1", + "hostname": "al-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "78.159.131.1" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#1", + "hostname": "al-01.protonvpn.net", + "wgpubkey": "Nr6AyJsd1NlSQ7JTWybr5eCtvV1zW7AUUx26w5sowDQ=", + "stream": true, + "port_forward": true, + "ips": [ + "78.159.131.1" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#25", + "hostname": "al-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.4" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "city": "Tirana", + "server_name": "AL#25", + "hostname": "al-02.protonvpn.net", + "wgpubkey": "D6VgBbcmr53evqwGGsdZNDneeg4tlag/KQ3+glPJ9js=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.4" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#1", + "hostname": "dz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.44" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#1", + "hostname": "dz-02.protonvpn.net", + "wgpubkey": "hDiyYDFs6HjVR+kJhX3pnq0rkUf3bT2++rQxJicoaVE=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.44" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#10", + "hostname": "dz-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.137.1" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "city": "Algiers", + "server_name": "DZ#10", + "hostname": "dz-01.protonvpn.net", + "wgpubkey": "JobdIlwHN75a1pPOqfUNu0a1eQXcwqaz5vyrq0qT6Ek=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.137.1" + ] + }, + { + "vpn": "openvpn", + "country": "Angola", + "city": "Luanda", + "server_name": "AO#1", + "hostname": "ao-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.12" + ] + }, + { + "vpn": "wireguard", + "country": "Angola", + "city": "Luanda", + "server_name": "AO#1", + "hostname": "ao-02.protonvpn.net", + "wgpubkey": "eFEhiG7vdkDSwqtwOgECFE7x8Xr8NnJfh0QU1XK6jwA=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.12" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.186" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-03.protonvpn.net", + "wgpubkey": "BSXSJgI+cpLA2TrGL2swcqaXuCSjNNw9PVK7E0yCqFo=", + "secure_core": true, + "ips": [ + "185.159.157.186" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.105" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "server_name": "CH-AR#1", + "hostname": "node-ar-04.protonvpn.net", + "wgpubkey": "pPR96SBtq9grARK6XDm5WI3XP1d8Le19Jl/HA9p7o00=", + "secure_core": true, + "ips": [ + "185.159.157.105" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#20", + "hostname": "node-ar-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "66.90.72.170" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#20", + "hostname": "node-ar-03.protonvpn.net", + "wgpubkey": "BSXSJgI+cpLA2TrGL2swcqaXuCSjNNw9PVK7E0yCqFo=", + "stream": true, + "ips": [ + "66.90.72.170" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#25", + "hostname": "node-ar-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.161" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "city": "Buenos Aires", + "server_name": "AR#25", + "hostname": "node-ar-04.protonvpn.net", + "wgpubkey": "pPR96SBtq9grARK6XDm5WI3XP1d8Le19Jl/HA9p7o00=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.161" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-11.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.192" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-11.protonvpn.net", + "wgpubkey": "8kyi2e0ziUqhs+ooJYYI0yaVhv/bneUC1fhV5X2q/SE=", + "secure_core": true, + "ips": [ + "185.159.157.192" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.211" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-15.protonvpn.net", + "wgpubkey": "cyTFQG65skA/WgLJyt+WCvj2Y2i0wB+snKe0gWGd+Xo=", + "secure_core": true, + "ips": [ + "185.159.157.211" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.212" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-16.protonvpn.net", + "wgpubkey": "22eXRgMiS/iVgGxxksbmlk1JDgFoV7RXPvGLuaCOPiY=", + "secure_core": true, + "ips": [ + "185.159.157.212" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.252" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-17.protonvpn.net", + "wgpubkey": "JvLQppw/l3O+HUdx551RfhJy5eTSv2wZCEIgfBbOADE=", + "secure_core": true, + "ips": [ + "185.159.157.252" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.253" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-19.protonvpn.net", + "wgpubkey": "hPKSC01LiQsP+1pzPm98CFZXqkESBuwqdmMe+4ujeEs=", + "secure_core": true, + "ips": [ + "185.159.157.253" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.60" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "CH-AU#1", + "hostname": "node-au-20.protonvpn.net", + "wgpubkey": "Xmre1psA04kUzSUMuAq0QGQe3dqQBXOw8dzRCs6tYUs=", + "secure_core": true, + "ips": [ + "79.135.104.60" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.199" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-12.protonvpn.net", + "wgpubkey": "KIm+13jfrrbXNPqYpd+WaWnCrgubWaSQnj8xn1Od8Fk=", + "secure_core": true, + "ips": [ + "185.159.158.199" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.205" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-13.protonvpn.net", + "wgpubkey": "mfJQLevPV800jb6E+dqgIZ8fjMfej5h0bBp9n/xuZRg=", + "secure_core": true, + "ips": [ + "185.159.158.205" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.206" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-14.protonvpn.net", + "wgpubkey": "Trt8stfmQTk/VTzR3jx3SSAIi0SSOSDOTtMln9bd4jY=", + "secure_core": true, + "ips": [ + "185.159.158.206" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.207" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "server_name": "IS-AU#1", + "hostname": "node-au-18.protonvpn.net", + "wgpubkey": "2dFWLSyohbnz02CORBKdh/bPh2PUqpfJISaWIN5/fHI=", + "secure_core": true, + "ips": [ + "185.159.158.207" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#109", + "hostname": "node-au-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.210" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#109", + "hostname": "node-au-17.protonvpn.net", + "wgpubkey": "JvLQppw/l3O+HUdx551RfhJy5eTSv2wZCEIgfBbOADE=", + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.210" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#187", + "hostname": "node-au-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.98" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Adelaide", + "server_name": "AU#187", + "hostname": "node-au-15.protonvpn.net", + "wgpubkey": "cyTFQG65skA/WgLJyt+WCvj2Y2i0wB+snKe0gWGd+Xo=", + "stream": true, + "port_forward": true, + "ips": [ + "103.214.20.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#166", + "hostname": "node-au-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "144.48.39.226" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#166", + "hostname": "node-au-18.protonvpn.net", + "wgpubkey": "2dFWLSyohbnz02CORBKdh/bPh2PUqpfJISaWIN5/fHI=", + "stream": true, + "port_forward": true, + "ips": [ + "144.48.39.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#213", + "hostname": "node-au-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.216.220.98" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Brisbane", + "server_name": "AU#213", + "hostname": "node-au-19.protonvpn.net", + "wgpubkey": "hPKSC01LiQsP+1pzPm98CFZXqkESBuwqdmMe+4ujeEs=", + "stream": true, + "port_forward": true, + "ips": [ + "103.216.220.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Melbourne", + "server_name": "AU#145", + "hostname": "node-au-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.229.18" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Melbourne", + "server_name": "AU#145", + "hostname": "node-au-16.protonvpn.net", + "wgpubkey": "22eXRgMiS/iVgGxxksbmlk1JDgFoV7RXPvGLuaCOPiY=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.229.18" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "server_name": "AU#133", + "hostname": "node-au-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.162" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "server_name": "AU#133", + "hostname": "node-au-20.protonvpn.net", + "wgpubkey": "Xmre1psA04kUzSUMuAq0QGQe3dqQBXOw8dzRCs6tYUs=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.162" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Perth", + "server_name": "AU#230", + "hostname": "node-au-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.18" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Perth", + "server_name": "AU#230", + "hostname": "node-au-13.protonvpn.net", + "wgpubkey": "mfJQLevPV800jb6E+dqgIZ8fjMfej5h0bBp9n/xuZRg=", + "stream": true, + "port_forward": true, + "ips": [ + "103.108.231.18" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#1", + "hostname": "node-au-11.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.236" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#1", + "hostname": "node-au-11.protonvpn.net", + "wgpubkey": "8kyi2e0ziUqhs+ooJYYI0yaVhv/bneUC1fhV5X2q/SE=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.236" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#14", + "hostname": "node-au-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.225" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#14", + "hostname": "node-au-12.protonvpn.net", + "wgpubkey": "KIm+13jfrrbXNPqYpd+WaWnCrgubWaSQnj8xn1Od8Fk=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.33.225" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#200", + "hostname": "node-au-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "180.149.229.130" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "city": "Sydney", + "server_name": "AU#200", + "hostname": "node-au-14.protonvpn.net", + "wgpubkey": "Trt8stfmQTk/VTzR3jx3SSAIi0SSOSDOTtMln9bd4jY=", + "stream": true, + "port_forward": true, + "ips": [ + "180.149.229.130" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.190" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-05.protonvpn.net", + "wgpubkey": "m42PUb14xPOnibFpJIt/NM+IJ/p2PkV5QJclCixwDEk=", + "secure_core": true, + "ips": [ + "185.159.157.190" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.191" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-06.protonvpn.net", + "wgpubkey": "yv5wDhSmTb0DeMLOp4g/xLeLcFDpz+wpcUvhaJtn83A=", + "secure_core": true, + "ips": [ + "185.159.157.191" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.50" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "server_name": "CH-AT#1", + "hostname": "node-at-07.protonvpn.net", + "wgpubkey": "zJ9EtguoeooUHMQa9G4GSBjCV+x+mGsBTbqPHNrzrFo=", + "secure_core": true, + "ips": [ + "79.135.104.50" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#33", + "hostname": "node-at-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.132.139.2" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#33", + "hostname": "node-at-07.protonvpn.net", + "wgpubkey": "zJ9EtguoeooUHMQa9G4GSBjCV+x+mGsBTbqPHNrzrFo=", + "stream": true, + "port_forward": true, + "ips": [ + "91.132.139.2" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#61", + "hostname": "node-at-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.19.193" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#61", + "hostname": "node-at-05.protonvpn.net", + "wgpubkey": "m42PUb14xPOnibFpJIt/NM+IJ/p2PkV5QJclCixwDEk=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.19.193" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#75", + "hostname": "node-at-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.133.97" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "city": "Vienna", + "server_name": "AT#75", + "hostname": "node-at-06.protonvpn.net", + "wgpubkey": "yv5wDhSmTb0DeMLOp4g/xLeLcFDpz+wpcUvhaJtn83A=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.133.97" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#1", + "hostname": "az-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.124.1" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#1", + "hostname": "az-01.protonvpn.net", + "wgpubkey": "DhNpGwLwzXGSwKXySOUXcmJStXGoGdlrfPZUtmC1jwY=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.124.1" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#25", + "hostname": "az-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.16" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "city": "Baku", + "server_name": "AZ#25", + "hostname": "az-02.protonvpn.net", + "wgpubkey": "pTyAyofpye8wYQlCLHceUdtsb5tLrlAzxj7CJgFVcF0=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.16" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "city": "Dhaka", + "server_name": "BD#1", + "hostname": "bd-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "36.50.238.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "city": "Dhaka", + "server_name": "BD#1", + "hostname": "bd-01.protonvpn.net", + "wgpubkey": "c/eAClffFRwvFjz+If4N/FFnu7Q9orSG8c+ubQVvGTg=", + "stream": true, + "port_forward": true, + "ips": [ + "36.50.238.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#1", + "hostname": "by-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.147.1" + ] + }, + { + "vpn": "wireguard", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#1", + "hostname": "by-01.protonvpn.net", + "wgpubkey": "kX+0PkpEXz9r/rkRugH7SKTVxkDFh6yRCbuMsLHkemw=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.147.1" + ] + }, + { + "vpn": "openvpn", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#25", + "hostname": "by-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.24" + ] + }, + { + "vpn": "wireguard", + "country": "Belarus", + "city": "Minsk", + "server_name": "BY#25", + "hostname": "by-02.protonvpn.net", + "wgpubkey": "RUHO1OX9FqSvvJ+Ec8q2a2p6wnuvoMKx3Z2Op94qaCI=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.24" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "CH-BE#1", + "hostname": "node-be-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.227" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "CH-BE#1", + "hostname": "node-be-04.protonvpn.net", + "wgpubkey": "s4t00o/80zIqjUYTSpavg5kQ1lYRV7DXL1/yTG67JQI=", + "secure_core": true, + "ips": [ + "185.159.157.227" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.138" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-02.protonvpn.net", + "wgpubkey": "jiIKlk1tiyPgxJ4sP/xy4eCuibeeSlOhPmkNxFR/iA8=", + "secure_core": true, + "ips": [ + "185.159.158.138" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.217" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "server_name": "IS-BE#1", + "hostname": "node-be-05.protonvpn.net", + "wgpubkey": "ehajSjB9QTlhy30zbemS7ypGrQ+5Ej71jJ/+52JRkGI=", + "secure_core": true, + "ips": [ + "185.159.158.217" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#29", + "hostname": "node-be-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.50" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#29", + "hostname": "node-be-05.protonvpn.net", + "wgpubkey": "ehajSjB9QTlhy30zbemS7ypGrQ+5Ej71jJ/+52JRkGI=", + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.50" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#41", + "hostname": "node-be-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.178" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#41", + "hostname": "node-be-04.protonvpn.net", + "wgpubkey": "s4t00o/80zIqjUYTSpavg5kQ1lYRV7DXL1/yTG67JQI=", + "stream": true, + "port_forward": true, + "ips": [ + "91.90.123.178" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#58", + "hostname": "node-be-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.128.133.226" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "city": "Brussels", + "server_name": "BE#58", + "hostname": "node-be-02.protonvpn.net", + "wgpubkey": "jiIKlk1tiyPgxJ4sP/xy4eCuibeeSlOhPmkNxFR/iA8=", + "stream": true, + "port_forward": true, + "ips": [ + "45.128.133.226" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "server_name": "IS-BR#2", + "hostname": "node-br-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.177" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "server_name": "IS-BR#2", + "hostname": "node-br-04.protonvpn.net", + "wgpubkey": "0FnhfTGup0LHPmBCsuDN4tVqlgOaItDwayQokhWapFQ=", + "secure_core": true, + "ips": [ + "185.159.158.177" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#21", + "hostname": "node-br-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.251.97" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#21", + "hostname": "node-br-04.protonvpn.net", + "wgpubkey": "0FnhfTGup0LHPmBCsuDN4tVqlgOaItDwayQokhWapFQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.251.97" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#9", + "hostname": "node-br-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "188.241.177.226" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "BR#9", + "hostname": "node-br-03.protonvpn.net", + "wgpubkey": "luPfTXionRhSL8Lvhz6ETA/aoWRlb9Dofqcr6ODMzgk=", + "stream": true, + "port_forward": true, + "ips": [ + "188.241.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "city": "São Paulo", + "server_name": "SE-BR#1", + "hostname": "node-br-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.89" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "city": "São Paulo", + "server_name": "SE-BR#1", + "hostname": "node-br-03.protonvpn.net", + "wgpubkey": "luPfTXionRhSL8Lvhz6ETA/aoWRlb9Dofqcr6ODMzgk=", + "secure_core": true, + "ips": [ + "185.159.156.89" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "server_name": "SE-BG#1", + "hostname": "node-bg-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.95" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "server_name": "SE-BG#1", + "hostname": "node-bg-02.protonvpn.net", + "wgpubkey": "uGWCYbDAzsaE7Ly2ZOX/9E5isl7Q0kXQX6TYFdAwtz0=", + "secure_core": true, + "ips": [ + "185.159.156.95" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "city": "Sofia", + "server_name": "BG#13", + "hostname": "node-bg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.55.225" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "city": "Sofia", + "server_name": "BG#13", + "hostname": "node-bg-02.protonvpn.net", + "wgpubkey": "uGWCYbDAzsaE7Ly2ZOX/9E5isl7Q0kXQX6TYFdAwtz0=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.55.225" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "server_name": "SE-KH#1", + "hostname": "node-kh-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.83" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "server_name": "SE-KH#1", + "hostname": "node-kh-01.protonvpn.net", + "wgpubkey": "D4M0O60wCBf1nYWOmXRfK7IpgG7VBBwQLeWVFLIqFG4=", + "secure_core": true, + "ips": [ + "185.159.156.83" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "city": "Phnom Penh", + "server_name": "KH#1", + "hostname": "node-kh-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.215.235.82" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "city": "Phnom Penh", + "server_name": "KH#1", + "hostname": "node-kh-01.protonvpn.net", + "wgpubkey": "D4M0O60wCBf1nYWOmXRfK7IpgG7VBBwQLeWVFLIqFG4=", + "port_forward": true, + "ips": [ + "188.215.235.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.177" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-09.protonvpn.net", + "wgpubkey": "4+452KKZ/BpmTeJ0Ua5YulgtVJKrFlw0AKKo4PtlYxM=", + "secure_core": true, + "ips": [ + "185.159.157.177" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.188" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-12.protonvpn.net", + "wgpubkey": "e0wrSY2v5Cwt8qyio3YTQNOvh3EYb5biJKpkuIdgNk8=", + "secure_core": true, + "ips": [ + "185.159.157.188" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.189" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-13.protonvpn.net", + "wgpubkey": "bXjH25gkRdWvXKahKY4iJNE+v/TVdT0uXE6WQJrX51Q=", + "secure_core": true, + "ips": [ + "185.159.157.189" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.231" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-16.protonvpn.net", + "wgpubkey": "b5Wy36VwywSceq7wfLAe/QxcQ/UQC11txwkGes/CEWc=", + "secure_core": true, + "ips": [ + "185.159.157.231" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.230" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-18.protonvpn.net", + "wgpubkey": "RWj/yInIFoGovnNO3wKBcMrdPmDjckc0TVNgOSSZsgs=", + "secure_core": true, + "ips": [ + "185.159.157.230" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.89" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-20.protonvpn.net", + "wgpubkey": "2BEMYqJguSc+NP7pSMo65SGQtbg3ExtZgYGaZ6VHiD8=", + "secure_core": true, + "ips": [ + "185.159.157.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.90" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-21.protonvpn.net", + "wgpubkey": "ZBptfdRNxso1dS36d076Rmv7DDAaTs5qdVZE6vbzYwg=", + "secure_core": true, + "ips": [ + "185.159.157.90" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.88" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-22.protonvpn.net", + "wgpubkey": "nCSpFYxP/UfbfceoXRdWrdm8JLTsfM6oBFbqnvv7Dhw=", + "secure_core": true, + "ips": [ + "185.159.157.88" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.36" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-23.protonvpn.net", + "wgpubkey": "Y46WhKEXcCGgPn+LXHDrlD93hgVzrA2mju7XQBbyyXU=", + "secure_core": true, + "ips": [ + "79.135.104.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.42" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-24.protonvpn.net", + "wgpubkey": "nLx6LJgXWOtnlKV65ruYMGjiw4DERImZGCpN3lolm1I=", + "secure_core": true, + "ips": [ + "79.135.104.42" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.54" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-25.protonvpn.net", + "wgpubkey": "mS8GfqvUvazXvSYg7VHV7s8eEyU0yyGjJwYgdjHq23A=", + "secure_core": true, + "ips": [ + "79.135.104.54" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-26.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.53" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-26.protonvpn.net", + "wgpubkey": "9mTDh5Tku0gxDdzqxnpnzItHQBm2h2B2hXnUHvhGCFw=", + "secure_core": true, + "ips": [ + "79.135.104.53" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-27.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.58" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-27.protonvpn.net", + "wgpubkey": "szjIaWj1+sWfmmap7eqtkgHDPl/y8HLHt+eeNbl/0w0=", + "secure_core": true, + "ips": [ + "79.135.104.58" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-28.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.59" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-28.protonvpn.net", + "wgpubkey": "UR8vjVYrrWYadCwLKiAabKTIdxM4yikmCXnvKWm89D8=", + "secure_core": true, + "ips": [ + "79.135.104.59" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.74" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-29.protonvpn.net", + "wgpubkey": "32BouQp7QBFlZTBW8goSEE+kDnyEqbjYGKWNOdqx4DM=", + "secure_core": true, + "ips": [ + "79.135.104.74" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.75" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-30.protonvpn.net", + "wgpubkey": "xw17Os6trr64hGzsWUPLYEkfDVcqxhAjp1xZ+RTSUnA=", + "secure_core": true, + "ips": [ + "79.135.104.75" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-31.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.76" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-31.protonvpn.net", + "wgpubkey": "7nj3Zh17Dzx+1SKIPE+dPfFmDbTTOggDK6SfK6tlEgE=", + "secure_core": true, + "ips": [ + "79.135.104.76" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-32.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.77" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-32.protonvpn.net", + "wgpubkey": "/A3MV6y7f3NMD0vGPNVqHMkUX/cJQGqM+PrUmxId/Xw=", + "secure_core": true, + "ips": [ + "79.135.104.77" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-33.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.78" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-33.protonvpn.net", + "wgpubkey": "rROokcTHabt9RJ++V8yfCelZVznfMZDLENtn8X1sLVA=", + "secure_core": true, + "ips": [ + "79.135.104.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-34.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.88" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-34.protonvpn.net", + "wgpubkey": "WajeJDezN7JFBe//v/VMsASFyBUk01Hlyvjb0T+dTjE=", + "secure_core": true, + "ips": [ + "79.135.104.88" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-36.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.89" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "CH-CA#1", + "hostname": "node-ca-36.protonvpn.net", + "wgpubkey": "9IRaE2wqcAVkN9ceUMFZa7roE1iDIVJEk5S4wMKsO30=", + "secure_core": true, + "ips": [ + "79.135.104.89" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.219" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-17.protonvpn.net", + "wgpubkey": "28hrybwV/NiiMXvl1ynBvDvEvs1m8ABUzyvkQ7+ST3I=", + "secure_core": true, + "ips": [ + "185.159.158.219" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.218" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-19.protonvpn.net", + "wgpubkey": "aQ2NoOYEObG9tDMwdc4VxK6hjW+eA0PLfgbH7ffmagU=", + "secure_core": true, + "ips": [ + "185.159.158.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-35.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.197" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "server_name": "IS-CA#1", + "hostname": "node-ca-35.protonvpn.net", + "wgpubkey": "KiCvg9+bh7/ssQDALW3uXSTLaURS3mgZdi/O9CxlFXo=", + "secure_core": true, + "ips": [ + "185.159.158.197" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#109", + "hostname": "node-ca-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.18" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#109", + "hostname": "node-ca-18.protonvpn.net", + "wgpubkey": "RWj/yInIFoGovnNO3wKBcMrdPmDjckc0TVNgOSSZsgs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.18" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#121", + "hostname": "node-ca-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#121", + "hostname": "node-ca-19.protonvpn.net", + "wgpubkey": "aQ2NoOYEObG9tDMwdc4VxK6hjW+eA0PLfgbH7ffmagU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#133", + "hostname": "node-ca-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "172.98.82.146" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#133", + "hostname": "node-ca-20.protonvpn.net", + "wgpubkey": "2BEMYqJguSc+NP7pSMo65SGQtbg3ExtZgYGaZ6VHiD8=", + "stream": true, + "ips": [ + "172.98.82.146" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#157", + "hostname": "node-ca-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "176.113.74.82" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#157", + "hostname": "node-ca-24.protonvpn.net", + "wgpubkey": "nLx6LJgXWOtnlKV65ruYMGjiw4DERImZGCpN3lolm1I=", + "stream": true, + "port_forward": true, + "ips": [ + "176.113.74.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#169", + "hostname": "node-ca-27.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#169", + "hostname": "node-ca-27.protonvpn.net", + "wgpubkey": "szjIaWj1+sWfmmap7eqtkgHDPl/y8HLHt+eeNbl/0w0=", + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#201", + "hostname": "node-ca-28.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.130" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#201", + "hostname": "node-ca-28.protonvpn.net", + "wgpubkey": "UR8vjVYrrWYadCwLKiAabKTIdxM4yikmCXnvKWm89D8=", + "stream": true, + "port_forward": true, + "ips": [ + "139.28.218.130" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#85", + "hostname": "node-ca-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.50" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#85", + "hostname": "node-ca-16.protonvpn.net", + "wgpubkey": "b5Wy36VwywSceq7wfLAe/QxcQ/UQC11txwkGes/CEWc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.50" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#97", + "hostname": "node-ca-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.34" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Montreal", + "server_name": "CA#97", + "hostname": "node-ca-17.protonvpn.net", + "wgpubkey": "28hrybwV/NiiMXvl1ynBvDvEvs1m8ABUzyvkQ7+ST3I=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.198.34" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#10", + "hostname": "node-ca-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.33" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#10", + "hostname": "node-ca-12.protonvpn.net", + "wgpubkey": "e0wrSY2v5Cwt8qyio3YTQNOvh3EYb5biJKpkuIdgNk8=", + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.33" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#331", + "hostname": "node-ca-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.97" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#331", + "hostname": "node-ca-23.protonvpn.net", + "wgpubkey": "Y46WhKEXcCGgPn+LXHDrlD93hgVzrA2mju7XQBbyyXU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.97" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#343", + "hostname": "node-ca-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.122" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#343", + "hostname": "node-ca-25.protonvpn.net", + "wgpubkey": "mS8GfqvUvazXvSYg7VHV7s8eEyU0yyGjJwYgdjHq23A=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.122" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#355", + "hostname": "node-ca-26.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.110" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#355", + "hostname": "node-ca-26.protonvpn.net", + "wgpubkey": "9mTDh5Tku0gxDdzqxnpnzItHQBm2h2B2hXnUHvhGCFw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.97.110" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#368", + "hostname": "node-ca-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.55" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#368", + "hostname": "node-ca-29.protonvpn.net", + "wgpubkey": "32BouQp7QBFlZTBW8goSEE+kDnyEqbjYGKWNOdqx4DM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.55" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#394", + "hostname": "node-ca-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#394", + "hostname": "node-ca-30.protonvpn.net", + "wgpubkey": "xw17Os6trr64hGzsWUPLYEkfDVcqxhAjp1xZ+RTSUnA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#420", + "hostname": "node-ca-31.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.1" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#420", + "hostname": "node-ca-31.protonvpn.net", + "wgpubkey": "7nj3Zh17Dzx+1SKIPE+dPfFmDbTTOggDK6SfK6tlEgE=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.82.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#49", + "hostname": "node-ca-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "178.249.214.65" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#49", + "hostname": "node-ca-09.protonvpn.net", + "wgpubkey": "4+452KKZ/BpmTeJ0Ua5YulgtVJKrFlw0AKKo4PtlYxM=", + "stream": true, + "port_forward": true, + "ips": [ + "178.249.214.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#69", + "hostname": "node-ca-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.44" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Toronto", + "server_name": "CA#69", + "hostname": "node-ca-13.protonvpn.net", + "wgpubkey": "bXjH25gkRdWvXKahKY4iJNE+v/TVdT0uXE6WQJrX51Q=", + "stream": true, + "port_forward": true, + "ips": [ + "169.150.204.44" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#141", + "hostname": "node-ca-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.177.2" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#141", + "hostname": "node-ca-21.protonvpn.net", + "wgpubkey": "ZBptfdRNxso1dS36d076Rmv7DDAaTs5qdVZE6vbzYwg=", + "stream": true, + "ips": [ + "107.181.177.2" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#149", + "hostname": "node-ca-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.177.11" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#149", + "hostname": "node-ca-22.protonvpn.net", + "wgpubkey": "nCSpFYxP/UfbfceoXRdWrdm8JLTsfM6oBFbqnvv7Dhw=", + "stream": true, + "ips": [ + "107.181.177.11" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#446", + "hostname": "node-ca-32.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.1" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#446", + "hostname": "node-ca-32.protonvpn.net", + "wgpubkey": "/A3MV6y7f3NMD0vGPNVqHMkUX/cJQGqM+PrUmxId/Xw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#472", + "hostname": "node-ca-33.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.28" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#472", + "hostname": "node-ca-33.protonvpn.net", + "wgpubkey": "rROokcTHabt9RJ++V8yfCelZVznfMZDLENtn8X1sLVA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.81.28" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#498", + "hostname": "node-ca-34.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.92" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#498", + "hostname": "node-ca-34.protonvpn.net", + "wgpubkey": "WajeJDezN7JFBe//v/VMsASFyBUk01Hlyvjb0T+dTjE=", + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.92" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#524", + "hostname": "node-ca-35.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.65" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#524", + "hostname": "node-ca-35.protonvpn.net", + "wgpubkey": "KiCvg9+bh7/ssQDALW3uXSTLaURS3mgZdi/O9CxlFXo=", + "stream": true, + "port_forward": true, + "ips": [ + "79.127.254.65" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#550", + "hostname": "node-ca-36.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.95.193" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "city": "Vancouver", + "server_name": "CA#550", + "hostname": "node-ca-36.protonvpn.net", + "wgpubkey": "9IRaE2wqcAVkN9ceUMFZa7roE1iDIVJEk5S4wMKsO30=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.95.193" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#10", + "hostname": "td-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.138.1" + ] + }, + { + "vpn": "wireguard", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#10", + "hostname": "td-01.protonvpn.net", + "wgpubkey": "cdZA8MjkEP4Zu9G8xplU+eIsJwatx1TQcVlmI016sBk=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.138.1" + ] + }, + { + "vpn": "openvpn", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#26", + "hostname": "td-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.176" + ] + }, + { + "vpn": "wireguard", + "country": "Chad", + "city": "N'Djamena", + "server_name": "TD#26", + "hostname": "td-02.protonvpn.net", + "wgpubkey": "b1qF0vLbd79i0GPbeciXZg4OT6KQkDT6i96UqZBF9mM=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.176" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "server_name": "IS-CL#1", + "hostname": "node-cl-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.208" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "server_name": "IS-CL#1", + "hostname": "node-cl-04.protonvpn.net", + "wgpubkey": "F7z+SRMw1d3o1lQbWObWN7GBbHeUZNCC+PCpPy+SOQ8=", + "secure_core": true, + "ips": [ + "185.159.158.208" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "city": "Santiago", + "server_name": "CL#25", + "hostname": "node-cl-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.106" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "city": "Santiago", + "server_name": "CL#25", + "hostname": "node-cl-04.protonvpn.net", + "wgpubkey": "F7z+SRMw1d3o1lQbWObWN7GBbHeUZNCC+PCpPy+SOQ8=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.106" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "server_name": "CH-CO#1", + "hostname": "node-co-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.149" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "server_name": "CH-CO#1", + "hostname": "node-co-03.protonvpn.net", + "wgpubkey": "Qm1zsNxnGphhEJHJzhjd4oVHrHLgDZop+6+audZiKVI=", + "secure_core": true, + "ips": [ + "185.159.157.149" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "server_name": "IS-CO#1", + "hostname": "node-co-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.196" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "server_name": "IS-CO#1", + "hostname": "node-co-02.protonvpn.net", + "wgpubkey": "xbLiVjRF9EHLpv+5/WEEIqhOkJIBagdNI/+uaSjH1So=", + "secure_core": true, + "ips": [ + "185.159.158.196" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#17", + "hostname": "node-co-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.16.81" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#17", + "hostname": "node-co-03.protonvpn.net", + "wgpubkey": "Qm1zsNxnGphhEJHJzhjd4oVHrHLgDZop+6+audZiKVI=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.16.81" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#9", + "hostname": "node-co-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "66.90.82.26" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "city": "Bogota", + "server_name": "CO#9", + "hostname": "node-co-02.protonvpn.net", + "wgpubkey": "xbLiVjRF9EHLpv+5/WEEIqhOkJIBagdNI/+uaSjH1So=", + "stream": true, + "ips": [ + "66.90.82.26" + ] + }, + { + "vpn": "openvpn", + "country": "Comoros", + "city": "Moroni", + "server_name": "KM#25", + "hostname": "km-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.72" + ] + }, + { + "vpn": "wireguard", + "country": "Comoros", + "city": "Moroni", + "server_name": "KM#25", + "hostname": "km-02.protonvpn.net", + "wgpubkey": "q7+8NYctmZA7gT2Ul/NfZQ6Tn1cFBfM37qHM/gRqImI=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.72" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "server_name": "CH-CR#1", + "hostname": "node-cr-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.209" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "server_name": "CH-CR#1", + "hostname": "node-cr-02.protonvpn.net", + "wgpubkey": "kqT/fYDDcxeDHNn1sZQA8XVXZI98+9IjeDQ5gEPtMyg=", + "secure_core": true, + "ips": [ + "185.159.157.209" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "city": "San Jose", + "server_name": "CR#5", + "hostname": "node-cr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.104" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "city": "San Jose", + "server_name": "CR#5", + "hostname": "node-cr-02.protonvpn.net", + "wgpubkey": "kqT/fYDDcxeDHNn1sZQA8XVXZI98+9IjeDQ5gEPtMyg=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.104" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.35" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-01.protonvpn.net", + "wgpubkey": "arg6ngFb3Q1rfe7tsfWsRhv4Tg0EWwYFYBxMjDuCOW8=", + "secure_core": true, + "ips": [ + "185.159.157.35" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.35" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "server_name": "CH-HR#1", + "hostname": "node-hr-02.protonvpn.net", + "wgpubkey": "4NPDmW5UOOvg2E23GoiItImBHW3LmtPBIVfgeoEC0SI=", + "secure_core": true, + "ips": [ + "79.135.104.35" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#1", + "hostname": "node-hr-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "178.218.167.210" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#1", + "hostname": "node-hr-01.protonvpn.net", + "wgpubkey": "arg6ngFb3Q1rfe7tsfWsRhv4Tg0EWwYFYBxMjDuCOW8=", + "ips": [ + "178.218.167.210" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#10", + "hostname": "node-hr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.139.48.242" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "city": "Zagreb", + "server_name": "HR#10", + "hostname": "node-hr-02.protonvpn.net", + "wgpubkey": "4NPDmW5UOOvg2E23GoiItImBHW3LmtPBIVfgeoEC0SI=", + "stream": true, + "port_forward": true, + "ips": [ + "45.139.48.242" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "server_name": "CH-CY#1", + "hostname": "node-cy-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.165" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "server_name": "CH-CY#1", + "hostname": "node-cy-01.protonvpn.net", + "wgpubkey": "e3RzM0pr0CkENa045wi0oBMzL3D6kfHbGW5rHWSOtig=", + "secure_core": true, + "ips": [ + "185.159.157.165" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "city": "Limassol", + "server_name": "CY#1", + "hostname": "node-cy-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "85.132.252.34" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "city": "Limassol", + "server_name": "CY#1", + "hostname": "node-cy-01.protonvpn.net", + "wgpubkey": "e3RzM0pr0CkENa045wi0oBMzL3D6kfHbGW5rHWSOtig=", + "stream": true, + "port_forward": true, + "ips": [ + "85.132.252.34" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "server_name": "CH-CZ#1", + "hostname": "node-cz-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.217" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "server_name": "CH-CZ#1", + "hostname": "node-cz-04.protonvpn.net", + "wgpubkey": "oNctPLp48sX2jk6U9hoER6QT4aGp6TEAUydA6VuA8h8=", + "secure_core": true, + "ips": [ + "185.159.157.217" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "server_name": "IS-CZ#1", + "hostname": "node-cz-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.225" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "server_name": "IS-CZ#1", + "hostname": "node-cz-05.protonvpn.net", + "wgpubkey": "sDVKmYDevvGvpKNei9f2SDbx5FMFi6FqBmuRYG/EFg8=", + "secure_core": true, + "ips": [ + "185.159.158.225" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#33", + "hostname": "node-cz-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.129.18" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#33", + "hostname": "node-cz-05.protonvpn.net", + "wgpubkey": "sDVKmYDevvGvpKNei9f2SDbx5FMFi6FqBmuRYG/EFg8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.129.18" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#45", + "hostname": "node-cz-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.235.33" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "city": "Prague", + "server_name": "CZ#45", + "hostname": "node-cz-04.protonvpn.net", + "wgpubkey": "oNctPLp48sX2jk6U9hoER6QT4aGp6TEAUydA6VuA8h8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.235.33" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.37" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-03.protonvpn.net", + "wgpubkey": "vOwLnR7lMrKeONP0Idl2S5vUonggF8KpKQ66jx+QJnc=", + "secure_core": true, + "ips": [ + "185.159.157.37" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.239" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-05.protonvpn.net", + "wgpubkey": "sbjnjFtxUz4dxYfNL7WOVf1StMjjAhkiPLCPtVtlhRI=", + "secure_core": true, + "ips": [ + "185.159.157.239" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.238" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "server_name": "CH-DK#1", + "hostname": "node-dk-06.protonvpn.net", + "wgpubkey": "d3VXpY1SJGxlx8Cq3trvJBkZvilHF6BdSynqphx+iw8=", + "secure_core": true, + "ips": [ + "185.159.157.238" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#13", + "hostname": "node-dk-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "193.29.107.242" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#13", + "hostname": "node-dk-03.protonvpn.net", + "wgpubkey": "vOwLnR7lMrKeONP0Idl2S5vUonggF8KpKQ66jx+QJnc=", + "stream": true, + "ips": [ + "193.29.107.242" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#49", + "hostname": "node-dk-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.162" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#49", + "hostname": "node-dk-05.protonvpn.net", + "wgpubkey": "sbjnjFtxUz4dxYfNL7WOVf1StMjjAhkiPLCPtVtlhRI=", + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.162" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#66", + "hostname": "node-dk-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.98" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "city": "Copenhagen", + "server_name": "DK#66", + "hostname": "node-dk-06.protonvpn.net", + "wgpubkey": "d3VXpY1SJGxlx8Cq3trvJBkZvilHF6BdSynqphx+iw8=", + "stream": true, + "port_forward": true, + "ips": [ + "193.29.107.98" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "server_name": "IS-EC#1", + "hostname": "node-ec-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.202" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "server_name": "IS-EC#1", + "hostname": "node-ec-01.protonvpn.net", + "wgpubkey": "dLPbOg/+D3oFCz5iiUVB9ILPOVx9vBB0CCVtXiTPDGE=", + "secure_core": true, + "ips": [ + "185.159.158.202" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "city": "Quito", + "server_name": "EC#1", + "hostname": "node-ec-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.103" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "city": "Quito", + "server_name": "EC#1", + "hostname": "node-ec-01.protonvpn.net", + "wgpubkey": "dLPbOg/+D3oFCz5iiUVB9ILPOVx9vBB0CCVtXiTPDGE=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.103" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "server_name": "SE-EG#1", + "hostname": "node-eg-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.84" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "server_name": "SE-EG#1", + "hostname": "node-eg-01.protonvpn.net", + "wgpubkey": "DUtOX4QuHcmlBk7bI5eoCSp8RLqV7NPIU8pywn1w0k0=", + "secure_core": true, + "ips": [ + "185.159.156.84" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#1", + "hostname": "node-eg-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.122.82" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#1", + "hostname": "node-eg-01.protonvpn.net", + "wgpubkey": "DUtOX4QuHcmlBk7bI5eoCSp8RLqV7NPIU8pywn1w0k0=", + "port_forward": true, + "ips": [ + "188.214.122.82" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#13", + "hostname": "eg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.212" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "city": "Cairo", + "server_name": "EG#13", + "hostname": "eg-02.protonvpn.net", + "wgpubkey": "fD8gErK2xl/yI01WCOl78xNFGuEXdZjr/MYN3qzH03I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.212" + ] + }, + { + "vpn": "openvpn", + "country": "El Salvador", + "city": "San Salvador", + "server_name": "SV#1", + "hostname": "sv-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.146.1" + ] + }, + { + "vpn": "wireguard", + "country": "El Salvador", + "city": "San Salvador", + "server_name": "SV#1", + "hostname": "sv-01.protonvpn.net", + "wgpubkey": "6FYsfDoKLUN09h9FxloEkmUaMdbVcFzX5YpHa9mfr3k=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.146.1" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.106" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "secure_core": true, + "ips": [ + "185.159.157.106" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.28" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "CH-EE#1", + "hostname": "node-ee-02.protonvpn.net", + "wgpubkey": "dq6F8vkRFuDM8jw4rSm+d4q21K8gAS8/6qgDSwdIFEk=", + "secure_core": true, + "ips": [ + "79.135.104.28" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "server_name": "SE-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.49" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "server_name": "SE-EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "secure_core": true, + "ips": [ + "185.159.156.49" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#1", + "hostname": "node-ee-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "165.231.178.10" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#1", + "hostname": "node-ee-01.protonvpn.net", + "wgpubkey": "fHGPlsNkuvuyLoqKp/Yfh3R31jdGN5JWRZ5cE1aW/UM=", + "ips": [ + "165.231.178.10" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#10", + "hostname": "node-ee-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "95.153.31.114" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "city": "Tallinn", + "server_name": "EE#10", + "hostname": "node-ee-02.protonvpn.net", + "wgpubkey": "dq6F8vkRFuDM8jw4rSm+d4q21K8gAS8/6qgDSwdIFEk=", + "stream": true, + "port_forward": true, + "ips": [ + "95.153.31.114" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.107" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.157.107" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.69" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "CH-FI#1", + "hostname": "node-fi-03.protonvpn.net", + "wgpubkey": "ievGDrxV0dKcjO7EM662c1Ziy0PVct0Ujse3CT4NQQw=", + "secure_core": true, + "ips": [ + "79.135.104.69" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.28" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.27" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.156.28" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "secure_core": true, + "ips": [ + "185.159.156.27" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.92" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "server_name": "SE-FI#1", + "hostname": "node-fi-02.protonvpn.net", + "wgpubkey": "cdx8bADYVWBlHkg6Ekl6k2y0kjkYNFagN2ttPC128HU=", + "secure_core": true, + "ips": [ + "185.159.156.92" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#1", + "hostname": "node-fi-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "194.34.132.55" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#1", + "hostname": "node-fi-01.protonvpn.net", + "wgpubkey": "z0xd29K3h6taRG+nGSvkgPXXzAOt+2V69dZTtjGoajs=", + "stream": true, + "ips": [ + "194.34.132.55" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#13", + "hostname": "node-fi-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.90.60.210" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#13", + "hostname": "node-fi-03.protonvpn.net", + "wgpubkey": "ievGDrxV0dKcjO7EM662c1Ziy0PVct0Ujse3CT4NQQw=", + "stream": true, + "port_forward": true, + "ips": [ + "185.90.60.210" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#5", + "hostname": "node-fi-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "196.196.203.202" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "city": "Helsinki", + "server_name": "FI#5", + "hostname": "node-fi-02.protonvpn.net", + "wgpubkey": "cdx8bADYVWBlHkg6Ekl6k2y0kjkYNFagN2ttPC128HU=", + "stream": true, + "ips": [ + "196.196.203.202" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.219" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-15.protonvpn.net", + "wgpubkey": "pSxXjpwlHAXXGJ2s3aRpAFLTNJXz60HKYWqKJqClo3Q=", + "secure_core": true, + "ips": [ + "185.159.157.219" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.220" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-16.protonvpn.net", + "wgpubkey": "Z/l/+DAz1YilevRfmEMMjNbzYOVCB0sOJc3vVKhQ/gw=", + "secure_core": true, + "ips": [ + "185.159.157.220" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.221" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-17.protonvpn.net", + "wgpubkey": "mbgw7Sxzok7Px1T/cTLDvWEdbU8bWWS00aOhAJy2omQ=", + "secure_core": true, + "ips": [ + "185.159.157.221" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.222" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-18.protonvpn.net", + "wgpubkey": "JsWZdbNQ38Enz3AYGJLI6HVF5I5RqfrIkkcwsznAGSs=", + "secure_core": true, + "ips": [ + "185.159.157.222" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.223" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-19.protonvpn.net", + "wgpubkey": "XAlwDb8B3OHpzlLp4Rj1BtfCdPIPSm1FuYVYof7k3EA=", + "secure_core": true, + "ips": [ + "185.159.157.223" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.224" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-20.protonvpn.net", + "wgpubkey": "510n8TGQa8ljjuv+qIc01BSfapR6tNvcfF/WLqamRiI=", + "secure_core": true, + "ips": [ + "185.159.157.224" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.225" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-21.protonvpn.net", + "wgpubkey": "zeGY3uQTDqTiaxp6vGqFzXck1TPNnzY+JZ2iNI2BrRU=", + "secure_core": true, + "ips": [ + "185.159.157.225" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.226" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-22.protonvpn.net", + "wgpubkey": "iPDwM6fotjFv+lwrXT5GT55pkovH673toteabkR+OjY=", + "secure_core": true, + "ips": [ + "185.159.157.226" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.52" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-23.protonvpn.net", + "wgpubkey": "m8vo9+NTxgkGJ1eV2nP9AyanXxeSlztAhIhQWDYPfnc=", + "secure_core": true, + "ips": [ + "79.135.104.52" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.51" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "CH-FR#1", + "hostname": "node-fr-24.protonvpn.net", + "wgpubkey": "DG6UsR8aCBawKEw9FQoGDBIxJHinM7oedppLYZFxA0o=", + "secure_core": true, + "ips": [ + "79.135.104.51" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "FR#13-TOR", + "hostname": "fr-13-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "45.128.134.199" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "FR#13-TOR", + "hostname": "fr-13-tor.protonvpn.net", + "wgpubkey": "rVMcE/5JmvHci9tJMaMmUtQS274yCMeO3fW8UnwGJEM=", + "tor": true, + "ips": [ + "45.128.134.199" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.68" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-07.protonvpn.net", + "wgpubkey": "KG3FkqwD08/FBctMtWMWjaEMkUZS3qdcjztiUSWBCVc=", + "secure_core": true, + "ips": [ + "185.159.156.68" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.93" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-13.protonvpn.net", + "wgpubkey": "V9f3hsjREcRebCDIoKJ6rTPqR/g89maWZSua6H73B1w=", + "secure_core": true, + "ips": [ + "185.159.156.93" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.94" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "server_name": "SE-FR#1", + "hostname": "node-fr-14.protonvpn.net", + "wgpubkey": "QkRTXcTgRJGTjSFe/Qaa8l6hi7NbITvGFRSdhUpMvSw=", + "secure_core": true, + "ips": [ + "185.159.156.94" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "server_name": "FR#182", + "hostname": "node-fr-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.129" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "server_name": "FR#182", + "hostname": "node-fr-23.protonvpn.net", + "wgpubkey": "m8vo9+NTxgkGJ1eV2nP9AyanXxeSlztAhIhQWDYPfnc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.129" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Marseille", + "server_name": "FR#208", + "hostname": "node-fr-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.156" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Marseille", + "server_name": "FR#208", + "hostname": "node-fr-24.protonvpn.net", + "wgpubkey": "DG6UsR8aCBawKEw9FQoGDBIxJHinM7oedppLYZFxA0o=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.245.156" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#109", + "hostname": "node-fr-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.34" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#109", + "hostname": "node-fr-17.protonvpn.net", + "wgpubkey": "mbgw7Sxzok7Px1T/cTLDvWEdbU8bWWS00aOhAJy2omQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.34" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#121", + "hostname": "node-fr-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.50" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#121", + "hostname": "node-fr-18.protonvpn.net", + "wgpubkey": "JsWZdbNQ38Enz3AYGJLI6HVF5I5RqfrIkkcwsznAGSs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.50" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#133", + "hostname": "node-fr-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.66" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#133", + "hostname": "node-fr-19.protonvpn.net", + "wgpubkey": "XAlwDb8B3OHpzlLp4Rj1BtfCdPIPSm1FuYVYof7k3EA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.66" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#146", + "hostname": "node-fr-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.82" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#146", + "hostname": "node-fr-20.protonvpn.net", + "wgpubkey": "510n8TGQa8ljjuv+qIc01BSfapR6tNvcfF/WLqamRiI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.82" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#158", + "hostname": "node-fr-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.98" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#158", + "hostname": "node-fr-21.protonvpn.net", + "wgpubkey": "zeGY3uQTDqTiaxp6vGqFzXck1TPNnzY+JZ2iNI2BrRU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.98" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#170", + "hostname": "node-fr-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.114" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#170", + "hostname": "node-fr-22.protonvpn.net", + "wgpubkey": "iPDwM6fotjFv+lwrXT5GT55pkovH673toteabkR+OjY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.114" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#234", + "hostname": "node-fr-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.128.134.194" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#234", + "hostname": "node-fr-07.protonvpn.net", + "wgpubkey": "KG3FkqwD08/FBctMtWMWjaEMkUZS3qdcjztiUSWBCVc=", + "stream": true, + "port_forward": true, + "ips": [ + "45.128.134.194" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#61", + "hostname": "node-fr-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.193" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#61", + "hostname": "node-fr-13.protonvpn.net", + "wgpubkey": "V9f3hsjREcRebCDIoKJ6rTPqR/g89maWZSua6H73B1w=", + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.193" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#73", + "hostname": "node-fr-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.72" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#73", + "hostname": "node-fr-14.protonvpn.net", + "wgpubkey": "QkRTXcTgRJGTjSFe/Qaa8l6hi7NbITvGFRSdhUpMvSw=", + "stream": true, + "port_forward": true, + "ips": [ + "185.246.211.72" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#85", + "hostname": "node-fr-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.2" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#85", + "hostname": "node-fr-15.protonvpn.net", + "wgpubkey": "pSxXjpwlHAXXGJ2s3aRpAFLTNJXz60HKYWqKJqClo3Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.2" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Paris", + "server_name": "FR#97", + "hostname": "node-fr-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.18" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "city": "Paris", + "server_name": "FR#97", + "hostname": "node-fr-16.protonvpn.net", + "wgpubkey": "Z/l/+DAz1YilevRfmEMMjNbzYOVCB0sOJc3vVKhQ/gw=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.194.18" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "server_name": "IS-GE#1", + "hostname": "node-ge-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.182" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "server_name": "IS-GE#1", + "hostname": "node-ge-03.protonvpn.net", + "wgpubkey": "7A19/lMrfmpFZARivC7FS8DcGxMn5uUq9LcOqFjzlDo=", + "secure_core": true, + "ips": [ + "185.159.158.182" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "city": "Tbilisi", + "server_name": "GE#07", + "hostname": "node-ge-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "138.199.53.236" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "city": "Tbilisi", + "server_name": "GE#07", + "hostname": "node-ge-03.protonvpn.net", + "wgpubkey": "7A19/lMrfmpFZARivC7FS8DcGxMn5uUq9LcOqFjzlDo=", + "ips": [ + "138.199.53.236" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.184" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-16.protonvpn.net", + "wgpubkey": "XcWEb0DMaFBex2HD2DVUStifh6wBZe9ELo2N/KLlMHc=", + "secure_core": true, + "ips": [ + "185.159.157.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.183" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-17.protonvpn.net", + "wgpubkey": "9+CorlxrTsQR7qjIOVKsEkk8Z7UUS5WT3R1ccF7a0ic=", + "secure_core": true, + "ips": [ + "185.159.157.183" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.57" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-18.protonvpn.net", + "wgpubkey": "XEhzlc2pX8uDChBR65mlzijG6KaoatbiEND8mRdjVD8=", + "secure_core": true, + "ips": [ + "185.159.157.57" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.58" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-19.protonvpn.net", + "wgpubkey": "gW9yJRNQgnWPUB0qbRjRGrnvbYOhPqypmp1cW961XEM=", + "secure_core": true, + "ips": [ + "185.159.157.58" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.30" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-20.protonvpn.net", + "wgpubkey": "lhESmyI5iT1MdL/H4toiuDR2oovh/bDxvGvH1O2VYmQ=", + "secure_core": true, + "ips": [ + "79.135.104.30" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.31" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-21.protonvpn.net", + "wgpubkey": "tBLnlY4CJsNGmh6qbDZTAogZZ+jIOvt4b2mCA8i97U4=", + "secure_core": true, + "ips": [ + "79.135.104.31" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.38" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-22.protonvpn.net", + "wgpubkey": "hOoBBy//7mddXPz1SybzWB3zK95SQCcPyI/DmxfULXk=", + "secure_core": true, + "ips": [ + "79.135.104.38" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.37" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "CH-DE#1", + "hostname": "node-de-23.protonvpn.net", + "wgpubkey": "8ex7XSdk16ZIP+NeMqrU79rSHCY7oVQHqLGrM7vYsRs=", + "secure_core": true, + "ips": [ + "79.135.104.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "DE#53-TOR", + "hostname": "de-53-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "194.126.177.9" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "DE#53-TOR", + "hostname": "de-53-tor.protonvpn.net", + "wgpubkey": "xBNmGnjDcqdq86B09QpwMBoxhZlgqEE1y9aTZG+RMEc=", + "tor": true, + "ips": [ + "194.126.177.9" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.178" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-12.protonvpn.net", + "wgpubkey": "JC6QcZKfheALT/vjCz9ozYVC9AVjqv0rrxfrS8FWVQk=", + "secure_core": true, + "ips": [ + "185.159.158.178" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-13.protonvpn.net", + "wgpubkey": "fvHmPj3wAKolN80+/KJ3a/DFjMToCsr3iPGwX8+og1g=", + "secure_core": true, + "ips": [ + "185.159.158.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.180" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-14.protonvpn.net", + "wgpubkey": "E+bqV5VyoZ35D3IMdlqdTovZ+YOI0PbGFBZ+3DsRTiE=", + "secure_core": true, + "ips": [ + "185.159.158.180" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.119" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "IS-DE#1", + "hostname": "node-de-25.protonvpn.net", + "wgpubkey": "vFExvD05bttJUYX5qltzXk4L8hA2Tr2kGRMElb6a9GA=", + "secure_core": true, + "ips": [ + "185.159.158.119" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.98" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-15.protonvpn.net", + "wgpubkey": "9xUSjs4KYUv0ySbhrYjwN/49TpHfmIcI/2KdGkOEGz0=", + "secure_core": true, + "ips": [ + "185.159.156.98" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.29" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "server_name": "SE-DE#1", + "hostname": "node-de-24.protonvpn.net", + "wgpubkey": "MOLPnnM2MSq7s7KqAgpm+AWpmzFAtuE46qBFHeLg5Tk=", + "secure_core": true, + "ips": [ + "185.159.156.29" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#186", + "hostname": "node-de-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.130" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#186", + "hostname": "node-de-24.protonvpn.net", + "wgpubkey": "MOLPnnM2MSq7s7KqAgpm+AWpmzFAtuE46qBFHeLg5Tk=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#214", + "hostname": "node-de-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.98" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#214", + "hostname": "node-de-25.protonvpn.net", + "wgpubkey": "vFExvD05bttJUYX5qltzXk4L8hA2Tr2kGRMElb6a9GA=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.216.98" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#510", + "hostname": "node-de-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.36.76.130" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Berlin", + "server_name": "DE#510", + "hostname": "node-de-15.protonvpn.net", + "wgpubkey": "9xUSjs4KYUv0ySbhrYjwN/49TpHfmIcI/2KdGkOEGz0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.36.76.130" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#242", + "hostname": "node-de-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.46" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#242", + "hostname": "node-de-20.protonvpn.net", + "wgpubkey": "lhESmyI5iT1MdL/H4toiuDR2oovh/bDxvGvH1O2VYmQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.46" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#260", + "hostname": "node-de-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.33" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#260", + "hostname": "node-de-21.protonvpn.net", + "wgpubkey": "tBLnlY4CJsNGmh6qbDZTAogZZ+jIOvt4b2mCA8i97U4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.33" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#312", + "hostname": "node-de-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.225" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#312", + "hostname": "node-de-18.protonvpn.net", + "wgpubkey": "XEhzlc2pX8uDChBR65mlzijG6KaoatbiEND8mRdjVD8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.225" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#329", + "hostname": "node-de-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.238" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#329", + "hostname": "node-de-19.protonvpn.net", + "wgpubkey": "gW9yJRNQgnWPUB0qbRjRGrnvbYOhPqypmp1cW961XEM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.19.238" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#346", + "hostname": "node-de-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.97" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#346", + "hostname": "node-de-22.protonvpn.net", + "wgpubkey": "hOoBBy//7mddXPz1SybzWB3zK95SQCcPyI/DmxfULXk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.97" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#368", + "hostname": "node-de-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.110" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#368", + "hostname": "node-de-23.protonvpn.net", + "wgpubkey": "8ex7XSdk16ZIP+NeMqrU79rSHCY7oVQHqLGrM7vYsRs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.102.110" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#390", + "hostname": "node-de-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.6" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#390", + "hostname": "node-de-12.protonvpn.net", + "wgpubkey": "JC6QcZKfheALT/vjCz9ozYVC9AVjqv0rrxfrS8FWVQk=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#414", + "hostname": "node-de-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.7" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#414", + "hostname": "node-de-13.protonvpn.net", + "wgpubkey": "fvHmPj3wAKolN80+/KJ3a/DFjMToCsr3iPGwX8+og1g=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.7" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#438", + "hostname": "node-de-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.14" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#438", + "hostname": "node-de-17.protonvpn.net", + "wgpubkey": "9+CorlxrTsQR7qjIOVKsEkk8Z7UUS5WT3R1ccF7a0ic=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#462", + "hostname": "node-de-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.13" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#462", + "hostname": "node-de-16.protonvpn.net", + "wgpubkey": "XcWEb0DMaFBex2HD2DVUStifh6wBZe9ELo2N/KLlMHc=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.13" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#486", + "hostname": "node-de-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.8" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "city": "Frankfurt", + "server_name": "DE#486", + "hostname": "node-de-14.protonvpn.net", + "wgpubkey": "E+bqV5VyoZ35D3IMdlqdTovZ+YOI0PbGFBZ+3DsRTiE=", + "stream": true, + "port_forward": true, + "ips": [ + "194.126.177.8" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "server_name": "CH-GR#1", + "hostname": "node-gr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.65" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "server_name": "CH-GR#1", + "hostname": "node-gr-01.protonvpn.net", + "wgpubkey": "DTaJG0Ww2G2Gtv7GVlkiOIv9cv8r9yQ0ghNPQf7kDAw=", + "secure_core": true, + "ips": [ + "185.159.157.65" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "city": "Athens", + "server_name": "GR#1", + "hostname": "node-gr-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "185.51.134.194" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "city": "Athens", + "server_name": "GR#1", + "hostname": "node-gr-01.protonvpn.net", + "wgpubkey": "DTaJG0Ww2G2Gtv7GVlkiOIv9cv8r9yQ0ghNPQf7kDAw=", + "port_forward": true, + "ips": [ + "185.51.134.194" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "CH-HK#1", + "hostname": "node-hk-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.232" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "CH-HK#1", + "hostname": "node-hk-06.protonvpn.net", + "wgpubkey": "/AEriTfHYyrhW+bj1cDy9RroL4j4o1tv9sw4m+aB8lA=", + "secure_core": true, + "ips": [ + "185.159.157.232" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.195" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-04.protonvpn.net", + "wgpubkey": "b04WYLiUOie4OkYbneVXdqnmoGKZyU7Vpfb9N+Qf31c=", + "secure_core": true, + "ips": [ + "185.159.158.195" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.220" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "server_name": "IS-HK#1", + "hostname": "node-hk-05.protonvpn.net", + "wgpubkey": "giBCbR12im6jWSvwEQ0mJ1PH8NUhRFUDedozBSYC8n4=", + "secure_core": true, + "ips": [ + "185.159.158.220" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#27-TOR", + "hostname": "hk-27-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "156.146.45.139" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#27-TOR", + "hostname": "hk-27-tor.protonvpn.net", + "wgpubkey": "69aqlYVoz2XbbnHQi5iglZ3ISvD6HHTWeRAHMrqDPA0=", + "tor": true, + "ips": [ + "156.146.45.139" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#28", + "hostname": "node-hk-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.114" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#28", + "hostname": "node-hk-05.protonvpn.net", + "wgpubkey": "giBCbR12im6jWSvwEQ0mJ1PH8NUhRFUDedozBSYC8n4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.114" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#40", + "hostname": "node-hk-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.98" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#40", + "hostname": "node-hk-06.protonvpn.net", + "wgpubkey": "/AEriTfHYyrhW+bj1cDy9RroL4j4o1tv9sw4m+aB8lA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.113.98" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#52", + "hostname": "node-hk-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.45.129" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "city": "Hong Kong", + "server_name": "HK#52", + "hostname": "node-hk-04.protonvpn.net", + "wgpubkey": "b04WYLiUOie4OkYbneVXdqnmoGKZyU7Vpfb9N+Qf31c=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.45.129" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.242" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-03.protonvpn.net", + "wgpubkey": "AyifXfoAYFImnhwHKZpIvl4Mf0O1ecysYyInnaY13kQ=", + "secure_core": true, + "ips": [ + "185.159.157.242" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.241" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "server_name": "CH-HU#1", + "hostname": "node-hu-04.protonvpn.net", + "wgpubkey": "JhYnH6WPDoqd5kldH4Zd1pQLj9mBDxRwNt4uuMI0eRo=", + "secure_core": true, + "ips": [ + "185.159.157.241" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#13", + "hostname": "node-hu-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.210" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#13", + "hostname": "node-hu-03.protonvpn.net", + "wgpubkey": "AyifXfoAYFImnhwHKZpIvl4Mf0O1ecysYyInnaY13kQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.210" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#25", + "hostname": "node-hu-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.146" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "city": "Budapest", + "server_name": "HU#25", + "hostname": "node-hu-04.protonvpn.net", + "wgpubkey": "JhYnH6WPDoqd5kldH4Zd1pQLj9mBDxRwNt4uuMI0eRo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.120.146" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "server_name": "IS#9-TOR", + "hostname": "is-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.158.193" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "server_name": "IS#9-TOR", + "hostname": "is-09-tor.protonvpn.net", + "wgpubkey": "dHJAyrEbw/idZbymvgU2d4+ksyDrlK+xyes8lXIKpVw=", + "tor": true, + "ips": [ + "185.159.158.193" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#10", + "hostname": "node-is-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.1" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#10", + "hostname": "node-is-01.protonvpn.net", + "wgpubkey": "yKbYe2XwbeNN9CuPZcwMF/lJp6a62NEGiHCCfpfxrnE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.1" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#22", + "hostname": "node-is-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.2" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "city": "Reykjavik", + "server_name": "IS#22", + "hostname": "node-is-02.protonvpn.net", + "wgpubkey": "nnG3a0fTkyAfCSRWNXR32Z3qFP2/Jk0ATux1IszyWmc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.158.2" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.82" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "secure_core": true, + "ips": [ + "185.159.157.82" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.56" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "CH-IN#1", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "secure_core": true, + "ips": [ + "185.159.157.56" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "IS-IN#1", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.234" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "IS-IN#1", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "secure_core": true, + "ips": [ + "185.159.158.234" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "server_name": "SE-IN#1", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.128" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "server_name": "SE-IN#1", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "secure_core": true, + "ips": [ + "185.159.156.128" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Mumbai", + "server_name": "IN#26", + "hostname": "node-in-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.82" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "Mumbai", + "server_name": "IN#26", + "hostname": "node-in-06.protonvpn.net", + "wgpubkey": "xlqneuKmrOMTCwrLwiqimcfhHwfzC3gfbYzsgP7cNTM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.82" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "New Delhi", + "server_name": "IN#13", + "hostname": "node-in-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.18" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "city": "New Delhi", + "server_name": "IN#13", + "hostname": "node-in-05.protonvpn.net", + "wgpubkey": "QnqJI0C2xQZrKfZLrBaCHa2h3TZ9CBt6sCuzg3ue4X4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.142.18" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "server_name": "CH-ID#1", + "hostname": "node-id-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.84" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "server_name": "CH-ID#1", + "hostname": "node-id-01.protonvpn.net", + "wgpubkey": "HClQJ3bkFS1VZPcbGv50OSwWXR1XBqNf/kakHIciHFk=", + "secure_core": true, + "ips": [ + "185.159.157.84" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "city": "Jakarta", + "server_name": "ID#1", + "hostname": "node-id-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.60.86" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "city": "Jakarta", + "server_name": "ID#1", + "hostname": "node-id-01.protonvpn.net", + "wgpubkey": "HClQJ3bkFS1VZPcbGv50OSwWXR1XBqNf/kakHIciHFk=", + "port_forward": true, + "ips": [ + "138.199.60.86" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "CH-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.153" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "CH-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "secure_core": true, + "ips": [ + "185.159.157.153" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.118" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.120" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "secure_core": true, + "ips": [ + "185.159.158.118" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "secure_core": true, + "ips": [ + "185.159.158.120" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.221" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "server_name": "IS-IE#1", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "secure_core": true, + "ips": [ + "185.159.158.221" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#1", + "hostname": "node-ie-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "5.157.13.2" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#1", + "hostname": "node-ie-01.protonvpn.net", + "wgpubkey": "CmoYq7BrV1SGjUd52MlU/aNIzVT8qXxE4Ch1yaVm8Fo=", + "ips": [ + "5.157.13.2" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#10", + "hostname": "node-ie-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.48.2" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "city": "Dublin", + "server_name": "IE#10", + "hostname": "node-ie-03.protonvpn.net", + "wgpubkey": "AFp36cKCIznWgRchU9fE2G9kPK6zcdS+7S/u4drPU1g=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.48.2" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "server_name": "IS-IL#1", + "hostname": "node-il-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.194" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "server_name": "IS-IL#1", + "hostname": "node-il-03.protonvpn.net", + "wgpubkey": "fuzsEMv8BUmBY+Izb8+tN9Z1xaAD7/Cazj96hL8BHC8=", + "secure_core": true, + "ips": [ + "185.159.158.194" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "server_name": "SE-IL#1", + "hostname": "node-il-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.124" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "server_name": "SE-IL#1", + "hostname": "node-il-04.protonvpn.net", + "wgpubkey": "6IPYGbtvg79F4rmEffmQtDXQD/vBnz+qoq0xpGNpIBk=", + "secure_core": true, + "ips": [ + "185.159.156.124" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Petah Tikva", + "server_name": "IL#9", + "hostname": "node-il-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.185.134.146" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Petah Tikva", + "server_name": "IL#9", + "hostname": "node-il-03.protonvpn.net", + "wgpubkey": "fuzsEMv8BUmBY+Izb8+tN9Z1xaAD7/Cazj96hL8BHC8=", + "ips": [ + "185.185.134.146" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "city": "Tel Aviv", + "server_name": "IL#14", + "hostname": "node-il-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "169.150.226.161" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "city": "Tel Aviv", + "server_name": "IL#14", + "hostname": "node-il-04.protonvpn.net", + "wgpubkey": "6IPYGbtvg79F4rmEffmQtDXQD/vBnz+qoq0xpGNpIBk=", + "port_forward": true, + "ips": [ + "169.150.226.161" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.237" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-04.protonvpn.net", + "wgpubkey": "QAx4kzh5ejS9RksrRPqv8u/d0eY3WMrMyvykPJZTN3M=", + "secure_core": true, + "ips": [ + "185.159.157.237" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.235" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-05.protonvpn.net", + "wgpubkey": "Eq21XF3A63IbiEDBdIj5T2uKXtHZDj7mfiJIXVcOQXk=", + "secure_core": true, + "ips": [ + "185.159.157.235" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.234" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-06.protonvpn.net", + "wgpubkey": "WeqHIUm2kUqZVMcr+6r5qxgM1FT9N/s/BAbEBPF/O0Q=", + "secure_core": true, + "ips": [ + "185.159.157.234" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.33" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "server_name": "CH-IT#1", + "hostname": "node-it-07.protonvpn.net", + "wgpubkey": "+PFYUIjcyPinyV/8l0AJZMB+RYDjn7nWoKxZ+9vqaQ0=", + "secure_core": true, + "ips": [ + "79.135.104.33" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#17", + "hostname": "node-it-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.34" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#17", + "hostname": "node-it-04.protonvpn.net", + "wgpubkey": "QAx4kzh5ejS9RksrRPqv8u/d0eY3WMrMyvykPJZTN3M=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.34" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#29", + "hostname": "node-it-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.18" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#29", + "hostname": "node-it-05.protonvpn.net", + "wgpubkey": "Eq21XF3A63IbiEDBdIj5T2uKXtHZDj7mfiJIXVcOQXk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.18" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#41", + "hostname": "node-it-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.2" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#41", + "hostname": "node-it-06.protonvpn.net", + "wgpubkey": "WeqHIUm2kUqZVMcr+6r5qxgM1FT9N/s/BAbEBPF/O0Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.182.2" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "server_name": "IT#53", + "hostname": "node-it-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.237.129" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "city": "Milan", + "server_name": "IT#53", + "hostname": "node-it-07.protonvpn.net", + "wgpubkey": "+PFYUIjcyPinyV/8l0AJZMB+RYDjn7nWoKxZ+9vqaQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.237.129" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.80" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "secure_core": true, + "ips": [ + "185.159.157.80" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.208" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-29.protonvpn.net", + "wgpubkey": "d38wbEHG3sJG+0s34lCGtYU2AwZ9E/WrP3qM9gL7Xi8=", + "secure_core": true, + "ips": [ + "185.159.157.208" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.40" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "CH-JP#1", + "hostname": "node-jp-30.protonvpn.net", + "wgpubkey": "dMSVWPppIq7F2mVK99Le8G83r+b18Jx07spFvwmrPwg=", + "secure_core": true, + "ips": [ + "79.135.104.40" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.37" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "secure_core": true, + "ips": [ + "185.159.156.37" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.56" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "server_name": "SE-JP#1", + "hostname": "node-jp-14.protonvpn.net", + "wgpubkey": "lDqI02+FFU6CeisxCSKxVgi28TKT9SowZybo1M4abEU=", + "secure_core": true, + "ips": [ + "185.159.156.56" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "server_name": "JP#200", + "hostname": "node-jp-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.14.71.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "server_name": "JP#200", + "hostname": "node-jp-14.protonvpn.net", + "wgpubkey": "lDqI02+FFU6CeisxCSKxVgi28TKT9SowZybo1M4abEU=", + "stream": true, + "port_forward": true, + "ips": [ + "45.14.71.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Osaka", + "server_name": "JP-FREE#3", + "hostname": "node-jp-13.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "45.14.71.5" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Osaka", + "server_name": "JP-FREE#3", + "hostname": "node-jp-13.protonvpn.net", + "wgpubkey": "E5wPCWdLcrvCn8DI8/vetPVrOyIKFMpdgdhrVsTUdBU=", + "free": true, + "ips": [ + "45.14.71.5" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#151", + "hostname": "node-jp-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#151", + "hostname": "node-jp-29.protonvpn.net", + "wgpubkey": "d38wbEHG3sJG+0s34lCGtYU2AwZ9E/WrP3qM9gL7Xi8=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#162", + "hostname": "node-jp-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.87.213.210" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#162", + "hostname": "node-jp-30.protonvpn.net", + "wgpubkey": "dMSVWPppIq7F2mVK99Le8G83r+b18Jx07spFvwmrPwg=", + "stream": true, + "port_forward": true, + "ips": [ + "45.87.213.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#221", + "hostname": "node-jp-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.125.235.19" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#221", + "hostname": "node-jp-12.protonvpn.net", + "wgpubkey": "7FslkahrdLwGbv4QSX5Cft5CtQLmBUlpWC382SSF7Hw=", + "stream": true, + "port_forward": true, + "ips": [ + "103.125.235.19" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#59", + "hostname": "node-jp-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.223" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "city": "Tokyo", + "server_name": "JP#59", + "hostname": "node-jp-17.protonvpn.net", + "wgpubkey": "IekoLP3CpczVNhssbBTXJ1SVwLbBtofVeGhqjBHRrlM=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.205.223" + ] + }, + { + "vpn": "openvpn", + "country": "Jordan", + "city": "Amman", + "server_name": "JO#1", + "hostname": "jo-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.60" + ] + }, + { + "vpn": "wireguard", + "country": "Jordan", + "city": "Amman", + "server_name": "JO#1", + "hostname": "jo-02.protonvpn.net", + "wgpubkey": "mZljeqimnqpGc6XPCekwRv8yulzWGYJBwZaq3d/WPRc=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.60" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "city": "Astana", + "server_name": "KZ#25", + "hostname": "kz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.80" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "city": "Astana", + "server_name": "KZ#25", + "hostname": "kz-02.protonvpn.net", + "wgpubkey": "BeSF4AZ+TyRVH9uKPv+h3wsE5VxKUCKI1lwnCZ9DQFU=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.80" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "city": "Nairobi", + "server_name": "KE#1", + "hostname": "ke-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.68" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "city": "Nairobi", + "server_name": "KE#1", + "hostname": "ke-02.protonvpn.net", + "wgpubkey": "4xZaT7vp0/Xh4X6EdY+7+MfR2zdHwjMM/JFJYx2913A=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.68" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "server_name": "SE-KR#2", + "hostname": "node-kr-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.87" + ] + }, + { + "vpn": "wireguard", + "country": "Korea", + "server_name": "SE-KR#2", + "hostname": "node-kr-03.protonvpn.net", + "wgpubkey": "kwmJ9x2fBnD1PyYM9alhOW835krOfgVCr6ArMLA1pGk=", + "secure_core": true, + "ips": [ + "185.159.156.87" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "city": "Seoul", + "server_name": "KR#13", + "hostname": "node-kr-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.110.55.2" + ] + }, + { + "vpn": "wireguard", + "country": "Korea", + "city": "Seoul", + "server_name": "KR#13", + "hostname": "node-kr-03.protonvpn.net", + "wgpubkey": "kwmJ9x2fBnD1PyYM9alhOW835krOfgVCr6ArMLA1pGk=", + "stream": true, + "port_forward": true, + "ips": [ + "79.110.55.2" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.61" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.81" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "secure_core": true, + "ips": [ + "185.159.157.81" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "secure_core": true, + "ips": [ + "185.159.157.61" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.27" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "server_name": "CH-LV#1", + "hostname": "node-lv-02.protonvpn.net", + "wgpubkey": "X+TnM1PwewbKon/eJBH5Lt5eG5R76N+NQq+/ZFMppXM=", + "secure_core": true, + "ips": [ + "79.135.104.27" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#1", + "hostname": "node-lv-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.114" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#1", + "hostname": "node-lv-01.protonvpn.net", + "wgpubkey": "Kpf5yweL4i6lC7Tx4AeVExvJ7zwwP/SyNiP5sdHyBDA=", + "ips": [ + "196.240.54.114" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#10", + "hostname": "node-lv-02.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "85.203.39.226" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "city": "Riga", + "server_name": "LV#10", + "hostname": "node-lv-02.protonvpn.net", + "wgpubkey": "X+TnM1PwewbKon/eJBH5Lt5eG5R76N+NQq+/ZFMppXM=", + "port_forward": true, + "ips": [ + "85.203.39.226" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.110" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.20" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "79.135.104.20" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "CH-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "185.159.157.110" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "server_name": "SE-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.43" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "server_name": "SE-LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "secure_core": true, + "ips": [ + "185.159.156.43" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "city": "Siauliai", + "server_name": "LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "85.206.170.148" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "city": "Siauliai", + "server_name": "LT#1", + "hostname": "node-lt-01b.protonvpn.net", + "wgpubkey": "bRGHR+5TEOvd2KR2dJJm9nOH1bboFu2omY4pW2EVZH8=", + "stream": true, + "port_forward": true, + "ips": [ + "85.206.170.148" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.66" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "wgpubkey": "qExynRdRj1sPlPpvC/61bburZ37rKask8TJe8jALAEs=", + "secure_core": true, + "ips": [ + "185.159.157.66" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.48" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "CH-LU#1", + "hostname": "node-lu-04.protonvpn.net", + "wgpubkey": "buYqE3X8Wf8X/v5NtHVXYgLk45+2og8MVEbgQAkEyBw=", + "secure_core": true, + "ips": [ + "79.135.104.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "server_name": "IS-LU#1", + "hostname": "node-lu-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.147" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "server_name": "IS-LU#1", + "hostname": "node-lu-03.protonvpn.net", + "wgpubkey": "asu9KtQoZ3iKwELsDTgjPEiFNcD1XtgGgy3O4CZFg2w=", + "secure_core": true, + "ips": [ + "185.159.158.147" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.141" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#1", + "hostname": "node-lu-02b.protonvpn.net", + "wgpubkey": "qExynRdRj1sPlPpvC/61bburZ37rKask8TJe8jALAEs=", + "ips": [ + "92.223.89.141" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#13", + "hostname": "node-lu-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "92.223.89.133" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#13", + "hostname": "node-lu-03.protonvpn.net", + "wgpubkey": "asu9KtQoZ3iKwELsDTgjPEiFNcD1XtgGgy3O4CZFg2w=", + "ips": [ + "92.223.89.133" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#17", + "hostname": "node-lu-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "5.253.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "city": "Luxembourg", + "server_name": "LU#17", + "hostname": "node-lu-04.protonvpn.net", + "wgpubkey": "buYqE3X8Wf8X/v5NtHVXYgLk45+2og8MVEbgQAkEyBw=", + "stream": true, + "port_forward": true, + "ips": [ + "5.253.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "server_name": "CH-MK#1", + "hostname": "node-mk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.150" + ] + }, + { + "vpn": "wireguard", + "country": "Macedonia", + "server_name": "CH-MK#1", + "hostname": "node-mk-01.protonvpn.net", + "wgpubkey": "odwcNO9B/wAekASQJpvKtBRO1NGRsZAKuuhAM75UYF4=", + "secure_core": true, + "ips": [ + "185.159.157.150" + ] + }, + { + "vpn": "openvpn", + "country": "Macedonia", + "city": "Skopje", + "server_name": "MK#01", + "hostname": "node-mk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.229.25.116" + ] + }, + { + "vpn": "wireguard", + "country": "Macedonia", + "city": "Skopje", + "server_name": "MK#01", + "hostname": "node-mk-01.protonvpn.net", + "wgpubkey": "odwcNO9B/wAekASQJpvKtBRO1NGRsZAKuuhAM75UYF4=", + "stream": true, + "port_forward": true, + "ips": [ + "185.229.25.116" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "server_name": "CH-MY#1", + "hostname": "node-my-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.95" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "server_name": "CH-MY#1", + "hostname": "node-my-01.protonvpn.net", + "wgpubkey": "q1kKuYwINzdtZixXob7kFce9AtP0O5fbeR2z7XALbiw=", + "secure_core": true, + "ips": [ + "185.159.157.95" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Johor Bahru", + "server_name": "MY#1", + "hostname": "node-my-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "103.230.142.226" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Johor Bahru", + "server_name": "MY#1", + "hostname": "node-my-01.protonvpn.net", + "wgpubkey": "q1kKuYwINzdtZixXob7kFce9AtP0O5fbeR2z7XALbiw=", + "stream": true, + "ips": [ + "103.230.142.226" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "city": "Kuala Lumpur", + "server_name": "MY#10", + "hostname": "my-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.126.1" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "city": "Kuala Lumpur", + "server_name": "MY#10", + "hostname": "my-09.protonvpn.net", + "wgpubkey": "JMGP8LdMl8N5Q8lXt25cPpvMcWvzoVjP/bAZ+88LUCM=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.126.1" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "server_name": "IS-MT#1", + "hostname": "node-mt-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.204" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "server_name": "IS-MT#1", + "hostname": "node-mt-01.protonvpn.net", + "wgpubkey": "fX8h7YY6jz+Brn6LpO7Om+Zdp00HbpUKyyC7Hpc2Fz8=", + "secure_core": true, + "ips": [ + "185.159.158.204" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "city": "Valletta", + "server_name": "MT#1", + "hostname": "node-mt-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.161" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "city": "Valletta", + "server_name": "MT#1", + "hostname": "node-mt-01.protonvpn.net", + "wgpubkey": "fX8h7YY6jz+Brn6LpO7Om+Zdp00HbpUKyyC7Hpc2Fz8=", + "port_forward": true, + "ips": [ + "178.249.212.161" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#1", + "hostname": "mr-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.139.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#1", + "hostname": "mr-01.protonvpn.net", + "wgpubkey": "D3koDcX6PBuFCk4BRcBdMdutViAhPTiCi2mho7ei6gE=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.139.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#25", + "hostname": "mr-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.92" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritania", + "city": "Nouakchott", + "server_name": "MR#25", + "hostname": "mr-02.protonvpn.net", + "wgpubkey": "eLHTqszJ04PdJcY27Zu+YpH+bVeWZPW3evJd3x6u2C4=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.92" + ] + }, + { + "vpn": "openvpn", + "country": "Mauritius", + "city": "Port Louis", + "server_name": "MU#25", + "hostname": "mu-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.96" + ] + }, + { + "vpn": "wireguard", + "country": "Mauritius", + "city": "Port Louis", + "server_name": "MU#25", + "hostname": "mu-02.protonvpn.net", + "wgpubkey": "5AjBct9yWNPUQIWnFCpSo8sjJ3IADRshcijUaGBY4Hg=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.96" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "server_name": "CH-MX#1", + "hostname": "node-mx-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.218" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "server_name": "CH-MX#1", + "hostname": "node-mx-03.protonvpn.net", + "wgpubkey": "tHwmpVZsh4yfoA9/vWbacF6cWcXUKE9wuDP5bz66oh8=", + "secure_core": true, + "ips": [ + "185.159.157.218" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#1", + "hostname": "node-mx-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.107" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#1", + "hostname": "node-mx-03.protonvpn.net", + "wgpubkey": "tHwmpVZsh4yfoA9/vWbacF6cWcXUKE9wuDP5bz66oh8=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.107" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#25", + "hostname": "mx-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.252.113.9" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "city": "Mexico City", + "server_name": "MX#25", + "hostname": "mx-04.protonvpn.net", + "wgpubkey": "G/3o3VMavYShMnCn6wN1XLNKrAzUYmK7NAEXqmpTCgo=", + "stream": true, + "port_forward": true, + "ips": [ + "84.252.113.9" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "server_name": "CH-MD#1", + "hostname": "node-md-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.111" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "server_name": "CH-MD#1", + "hostname": "node-md-02.protonvpn.net", + "wgpubkey": "Os6z+mP8fCp+EWHXuXs3IULqkVO/fWLrln/eNRAeKh4=", + "secure_core": true, + "ips": [ + "185.159.157.111" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "city": "Chisinau", + "server_name": "MD#15", + "hostname": "node-md-02.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.163.44.137" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "city": "Chisinau", + "server_name": "MD#15", + "hostname": "node-md-02.protonvpn.net", + "wgpubkey": "Os6z+mP8fCp+EWHXuXs3IULqkVO/fWLrln/eNRAeKh4=", + "ips": [ + "185.163.44.137" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "city": "Podgorica", + "server_name": "ME#25", + "hostname": "me-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.88" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "city": "Podgorica", + "server_name": "ME#25", + "hostname": "me-02.protonvpn.net", + "wgpubkey": "B6PI6//tZOVseLmGCau3oqgfPUnZh1cXSttr1HqpZXA=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.88" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "server_name": "CH-MA#1", + "hostname": "node-ma-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.32" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "server_name": "CH-MA#1", + "hostname": "node-ma-01.protonvpn.net", + "wgpubkey": "MIGqipC2yxrFey8yiAJyhytE2QfIMJ5aYkZ9/amphXs=", + "secure_core": true, + "ips": [ + "79.135.104.32" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "city": "Rabat", + "server_name": "MA#1", + "hostname": "node-ma-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "178.249.212.164" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "city": "Rabat", + "server_name": "MA#1", + "hostname": "node-ma-01.protonvpn.net", + "wgpubkey": "MIGqipC2yxrFey8yiAJyhytE2QfIMJ5aYkZ9/amphXs=", + "stream": true, + "port_forward": true, + "ips": [ + "178.249.212.164" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#1", + "hostname": "mz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.100" + ] + }, + { + "vpn": "wireguard", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#1", + "hostname": "mz-02.protonvpn.net", + "wgpubkey": "UIa1QviHgAbrL36PZwEIcDCr9DBulpEPGzp0vgaoq2I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.100" + ] + }, + { + "vpn": "openvpn", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#10", + "hostname": "mz-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.36.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mozambique", + "city": "Maputo", + "server_name": "MZ#10", + "hostname": "mz-01.protonvpn.net", + "wgpubkey": "5wpOQU+U6T0g42rDXFcP/SWgzSigjH7tgQ322+r6AWo=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.36.1" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "server_name": "CH-MM#1", + "hostname": "node-mm-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.210" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "server_name": "CH-MM#1", + "hostname": "node-mm-01.protonvpn.net", + "wgpubkey": "gbUzD44E0V5eUqGbYKo+NM/sVt1KJwQjS2TxPYQPK18=", + "secure_core": true, + "ips": [ + "185.159.157.210" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "city": "Yangon", + "server_name": "MM#01", + "hostname": "node-mm-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.87" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "city": "Yangon", + "server_name": "MM#01", + "hostname": "node-mm-01.protonvpn.net", + "wgpubkey": "gbUzD44E0V5eUqGbYKo+NM/sVt1KJwQjS2TxPYQPK18=", + "ips": [ + "138.199.60.87" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "city": "Kathmandu", + "server_name": "NP#1", + "hostname": "np-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.125.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "city": "Kathmandu", + "server_name": "NP#1", + "hostname": "np-01.protonvpn.net", + "wgpubkey": "5YAEl39mdRYD9IWXIuyfwzAhLzoFjpQvrk/WZgsD+Vs=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.125.1" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-165.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.197" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-165.protonvpn.net", + "wgpubkey": "+veOJwVuUpP9QAx4q3krdh4pTBgOyqew1TTTDnyITRg=", + "secure_core": true, + "ips": [ + "185.159.157.197" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-166.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-166.protonvpn.net", + "wgpubkey": "WTKsVAtA2WFjJQmOQTsdvasBOG1vxmbJrnu0f0cpVSk=", + "secure_core": true, + "ips": [ + "185.159.157.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-167.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.199" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-167.protonvpn.net", + "wgpubkey": "MdCt0zxKeG5K8yECIBFYeXwrS40E2QC03cCH1BWCVVY=", + "secure_core": true, + "ips": [ + "185.159.157.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-168.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-168.protonvpn.net", + "wgpubkey": "s2Eo2xDw/yvvLjltF8VJT84k+T1K1+veCEE9uKC6gjo=", + "secure_core": true, + "ips": [ + "185.159.157.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-204.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.236" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-204.protonvpn.net", + "wgpubkey": "Zee6nAIrhwMYEHBolukyS/ir3FK76KRf0OE8FGtKUnI=", + "secure_core": true, + "ips": [ + "185.159.157.236" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-206.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.101" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-206.protonvpn.net", + "wgpubkey": "uk1FJlBSQKZgxMEBAgH8cGmqyn+VqcVXrXw71H6MNWE=", + "secure_core": true, + "ips": [ + "185.159.157.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-207.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-207.protonvpn.net", + "wgpubkey": "loPDLQlL8zr/w/cVLGk2eCZ0rsabIDDtp9PxMBDRzTk=", + "secure_core": true, + "ips": [ + "185.159.157.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-208.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.98" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-208.protonvpn.net", + "wgpubkey": "Y+zqpHAj1OYL1l4jTLgotAcQKzl5X3VScXHeGSDh5wc=", + "secure_core": true, + "ips": [ + "185.159.157.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-209.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-209.protonvpn.net", + "wgpubkey": "YgGdHIXeCQgBc4nXKJ4vct8S0fPqBpTgk4I8gh3uMEg=", + "secure_core": true, + "ips": [ + "185.159.157.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-211.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "CH-NL#1", + "hostname": "node-nl-211.protonvpn.net", + "wgpubkey": "3P4ocB2/quwPDO74RB/tUx8VSqeDWPfGs5NrhL/qnFc=", + "secure_core": true, + "ips": [ + "185.159.157.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "IS-NL#1", + "hostname": "node-nl-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.55" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "IS-NL#1", + "hostname": "node-nl-01.protonvpn.net", + "wgpubkey": "127jo9F8kpNz/SQfhY2o5I8HB7X0VLMJVSaMGGuJowQ=", + "secure_core": true, + "ips": [ + "185.159.158.55" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-28.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.72" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-28.protonvpn.net", + "wgpubkey": "oVHQPMeCCfPpGhPjEKAFG94wrSmn5MR/kGOThxcefVU=", + "secure_core": true, + "ips": [ + "185.159.156.72" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-29.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-29.protonvpn.net", + "wgpubkey": "9jkx1qC/7bNkn5rlOfxblxoN11MGZFYobwbWXZ7Sql8=", + "secure_core": true, + "ips": [ + "185.159.156.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-30.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.74" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-30.protonvpn.net", + "wgpubkey": "zG1tc+Jr58YDfUPu8l8yyk7b7ljC4m/Ncb/1AOY2oBM=", + "secure_core": true, + "ips": [ + "185.159.156.74" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-53.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "server_name": "SE-NL#1", + "hostname": "node-nl-53.protonvpn.net", + "wgpubkey": "/i7jCNpcqVBUkY07gVlILN4nFdvZHmxvreAOgLGoZGg=", + "secure_core": true, + "ips": [ + "185.159.156.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#1", + "hostname": "node-nl-30.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.131.156" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#1", + "hostname": "node-nl-30.protonvpn.net", + "wgpubkey": "zG1tc+Jr58YDfUPu8l8yyk7b7ljC4m/Ncb/1AOY2oBM=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.131.156" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#227", + "hostname": "node-nl-53.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.86.114" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#227", + "hostname": "node-nl-53.protonvpn.net", + "wgpubkey": "/i7jCNpcqVBUkY07gVlILN4nFdvZHmxvreAOgLGoZGg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.86.114" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#255", + "hostname": "node-nl-204.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "77.247.178.54" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#255", + "hostname": "node-nl-204.protonvpn.net", + "wgpubkey": "Zee6nAIrhwMYEHBolukyS/ir3FK76KRf0OE8FGtKUnI=", + "stream": true, + "port_forward": true, + "ips": [ + "77.247.178.54" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#279", + "hostname": "node-nl-206.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#279", + "hostname": "node-nl-206.protonvpn.net", + "wgpubkey": "uk1FJlBSQKZgxMEBAgH8cGmqyn+VqcVXrXw71H6MNWE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#291", + "hostname": "node-nl-207.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.220" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#291", + "hostname": "node-nl-207.protonvpn.net", + "wgpubkey": "loPDLQlL8zr/w/cVLGk2eCZ0rsabIDDtp9PxMBDRzTk=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.220" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#303", + "hostname": "node-nl-208.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#303", + "hostname": "node-nl-208.protonvpn.net", + "wgpubkey": "Y+zqpHAj1OYL1l4jTLgotAcQKzl5X3VScXHeGSDh5wc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#315", + "hostname": "node-nl-209.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.110" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#315", + "hostname": "node-nl-209.protonvpn.net", + "wgpubkey": "YgGdHIXeCQgBc4nXKJ4vct8S0fPqBpTgk4I8gh3uMEg=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.110" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#339", + "hostname": "node-nl-211.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#339", + "hostname": "node-nl-211.protonvpn.net", + "wgpubkey": "3P4ocB2/quwPDO74RB/tUx8VSqeDWPfGs5NrhL/qnFc=", + "stream": true, + "port_forward": true, + "ips": [ + "185.107.44.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#350", + "hostname": "node-nl-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "62.112.9.164" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#350", + "hostname": "node-nl-01.protonvpn.net", + "wgpubkey": "127jo9F8kpNz/SQfhY2o5I8HB7X0VLMJVSaMGGuJowQ=", + "stream": true, + "port_forward": true, + "ips": [ + "62.112.9.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#357", + "hostname": "node-nl-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.146.180" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#357", + "hostname": "node-nl-13.protonvpn.net", + "wgpubkey": "EbxfUNJudEt6J4xL0kHH57eQM+P+OvypYxG4rpzE8iw=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.146.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#364", + "hostname": "node-nl-28.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.139" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#364", + "hostname": "node-nl-28.protonvpn.net", + "wgpubkey": "oVHQPMeCCfPpGhPjEKAFG94wrSmn5MR/kGOThxcefVU=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.139" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#371", + "hostname": "node-nl-29.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.124" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#371", + "hostname": "node-nl-29.protonvpn.net", + "wgpubkey": "9jkx1qC/7bNkn5rlOfxblxoN11MGZFYobwbWXZ7Sql8=", + "stream": true, + "port_forward": true, + "ips": [ + "190.2.132.124" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#378", + "hostname": "node-nl-165.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.193" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#378", + "hostname": "node-nl-165.protonvpn.net", + "wgpubkey": "+veOJwVuUpP9QAx4q3krdh4pTBgOyqew1TTTDnyITRg=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.193" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#388", + "hostname": "node-nl-166.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.209" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#388", + "hostname": "node-nl-166.protonvpn.net", + "wgpubkey": "WTKsVAtA2WFjJQmOQTsdvasBOG1vxmbJrnu0f0cpVSk=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.209" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#398", + "hostname": "node-nl-167.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.241" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#398", + "hostname": "node-nl-167.protonvpn.net", + "wgpubkey": "MdCt0zxKeG5K8yECIBFYeXwrS40E2QC03cCH1BWCVVY=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#408", + "hostname": "node-nl-168.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.225" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#408", + "hostname": "node-nl-168.protonvpn.net", + "wgpubkey": "s2Eo2xDw/yvvLjltF8VJT84k+T1K1+veCEE9uKC6gjo=", + "stream": true, + "port_forward": true, + "ips": [ + "212.92.104.225" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#85", + "hostname": "node-nl-47.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.7.129" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL#85", + "hostname": "node-nl-47.protonvpn.net", + "wgpubkey": "+HCLUCm6PdbDIaKtEM3pOWBEKSB/UdpBwRY5cNl6ZnI=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.7.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#113", + "hostname": "node-nl-149.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.34.244.134" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#113", + "hostname": "node-nl-149.protonvpn.net", + "wgpubkey": "nsQBMSreq3f0B/BvRRL2aZtuvFAahf7TECaKpbooZVw=", + "free": true, + "ips": [ + "149.34.244.134" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#114", + "hostname": "node-nl-150.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.34.244.139" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#114", + "hostname": "node-nl-150.protonvpn.net", + "wgpubkey": "cZqPUUEdnSZVoKckIHHTfvS/lKEG5mslwHiPJsSG1FE=", + "free": true, + "ips": [ + "149.34.244.139" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#15", + "hostname": "node-nl-05.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "89.39.107.113" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#15", + "hostname": "node-nl-05.protonvpn.net", + "wgpubkey": "UIV6mDfDCun6PrjT7kFrpl02eEwqIa/piXoSKm1ybBU=", + "free": true, + "ips": [ + "89.39.107.113" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#48", + "hostname": "node-nl-74.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "169.150.196.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#48", + "hostname": "node-nl-74.protonvpn.net", + "wgpubkey": "r1tpadBs7JagseUeJgX+vLlQJJln4DcwFM3M9/IMUUg=", + "free": true, + "ips": [ + "169.150.196.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#79", + "hostname": "node-nl-108.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "185.177.124.84" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "city": "Amsterdam", + "server_name": "NL-FREE#79", + "hostname": "node-nl-108.protonvpn.net", + "wgpubkey": "RGkflpj8nU73t7WgEmZQ45f+wF1QM3fDiKjimp5iCGA=", + "free": true, + "ips": [ + "185.177.124.84" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.97" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-03.protonvpn.net", + "wgpubkey": "/QKfRMQaQKdQ4UAwmQc8KKShfc3Mjl1HcKiiGEoWwTU=", + "secure_core": true, + "ips": [ + "185.159.157.97" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.213" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "server_name": "CH-NZ#1", + "hostname": "node-nz-04.protonvpn.net", + "wgpubkey": "8Rm0uoG0H9BcSuA67/5gBv8tJgFZXNLm4sqEtkB9Nmw=", + "secure_core": true, + "ips": [ + "185.159.157.213" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#13", + "hostname": "node-nz-03.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.178" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#13", + "hostname": "node-nz-03.protonvpn.net", + "wgpubkey": "/QKfRMQaQKdQ4UAwmQc8KKShfc3Mjl1HcKiiGEoWwTU=", + "ips": [ + "116.90.74.178" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#21", + "hostname": "node-nz-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "103.75.11.18" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "city": "Auckland", + "server_name": "NZ#21", + "hostname": "node-nz-04.protonvpn.net", + "wgpubkey": "8Rm0uoG0H9BcSuA67/5gBv8tJgFZXNLm4sqEtkB9Nmw=", + "stream": true, + "port_forward": true, + "ips": [ + "103.75.11.18" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "server_name": "SE-NG#1", + "hostname": "node-es-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.88" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "server_name": "SE-NG#1", + "hostname": "node-es-07.protonvpn.net", + "wgpubkey": "xmy2vCo/o3h9gltwlNc5M79hwqOwlJmeHHp00Y/SSQU=", + "secure_core": true, + "ips": [ + "185.159.156.88" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "city": "Abuja", + "server_name": "NG#1", + "hostname": "node-es-07.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "185.76.11.27" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "city": "Abuja", + "server_name": "NG#1", + "hostname": "node-es-07.protonvpn.net", + "wgpubkey": "xmy2vCo/o3h9gltwlNc5M79hwqOwlJmeHHp00Y/SSQU=", + "ips": [ + "185.76.11.27" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.245" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-05.protonvpn.net", + "wgpubkey": "KOITt3KQ72LHPbpVp7kp4cQo/qw2qvKPrN732UTWWFw=", + "secure_core": true, + "ips": [ + "185.159.157.245" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.240" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "CH-NO#1", + "hostname": "node-no-06.protonvpn.net", + "wgpubkey": "sSbgwNAoZtBVWlg6ZLnFDrXTM3YFTpPVKgE4DtzSUw0=", + "secure_core": true, + "ips": [ + "185.159.157.240" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "server_name": "IS-NO#1", + "hostname": "node-no-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.145" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "server_name": "IS-NO#1", + "hostname": "node-no-03.protonvpn.net", + "wgpubkey": "lY0yD6apqGWIPE/O4FbCysYpveUm0YkflOKrQf8Xhw0=", + "secure_core": true, + "ips": [ + "185.159.158.145" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#13", + "hostname": "node-no-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "84.247.50.178" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#13", + "hostname": "node-no-03.protonvpn.net", + "wgpubkey": "lY0yD6apqGWIPE/O4FbCysYpveUm0YkflOKrQf8Xhw0=", + "stream": true, + "ips": [ + "84.247.50.178" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#21", + "hostname": "node-no-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "146.70.170.18" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#21", + "hostname": "node-no-05.protonvpn.net", + "wgpubkey": "KOITt3KQ72LHPbpVp7kp4cQo/qw2qvKPrN732UTWWFw=", + "stream": true, + "ips": [ + "146.70.170.18" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#33", + "hostname": "node-no-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "146.70.170.2" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "city": "Oslo", + "server_name": "NO#33", + "hostname": "node-no-06.protonvpn.net", + "wgpubkey": "sSbgwNAoZtBVWlg6ZLnFDrXTM3YFTpPVKgE4DtzSUw0=", + "stream": true, + "ips": [ + "146.70.170.2" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "server_name": "CH-PK#1", + "hostname": "node-pk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.26" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "server_name": "CH-PK#1", + "hostname": "node-pk-01.protonvpn.net", + "wgpubkey": "BYNanfqjqO2hQFhXNSujIulMWfhCrnGLxVlvTSLChlo=", + "secure_core": true, + "ips": [ + "79.135.104.26" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "city": "Karachi", + "server_name": "PK#1", + "hostname": "node-pk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.89" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "city": "Karachi", + "server_name": "PK#1", + "hostname": "node-pk-01.protonvpn.net", + "wgpubkey": "BYNanfqjqO2hQFhXNSujIulMWfhCrnGLxVlvTSLChlo=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.89" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "server_name": "IS-PE#1", + "hostname": "node-pe-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.209" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "server_name": "IS-PE#1", + "hostname": "node-pe-04.protonvpn.net", + "wgpubkey": "nU424h7OX5hXUFFY850oxpmxOoAMSBZ60pDOyj+z/WA=", + "secure_core": true, + "ips": [ + "185.159.158.209" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "city": "Lima", + "server_name": "PE#25", + "hostname": "node-pe-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.105" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "city": "Lima", + "server_name": "PE#25", + "hostname": "node-pe-04.protonvpn.net", + "wgpubkey": "nU424h7OX5hXUFFY850oxpmxOoAMSBZ60pDOyj+z/WA=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.50.105" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "server_name": "SE-PH#1", + "hostname": "node-ph-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.86" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "server_name": "SE-PH#1", + "hostname": "node-ph-01.protonvpn.net", + "wgpubkey": "YHiExIkSK5Jqk/P6zO3UIDmf4B5NgClT2hqOXYCxD0g=", + "secure_core": true, + "ips": [ + "185.159.156.86" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "city": "Manila", + "server_name": "PH#1", + "hostname": "node-ph-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "188.214.125.162" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "city": "Manila", + "server_name": "PH#1", + "hostname": "node-ph-01.protonvpn.net", + "wgpubkey": "YHiExIkSK5Jqk/P6zO3UIDmf4B5NgClT2hqOXYCxD0g=", + "stream": true, + "port_forward": true, + "ips": [ + "188.214.125.162" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.214" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-05.protonvpn.net", + "wgpubkey": "5dROtTBUwKT7gIZDyva2PaxOSfXlQbG3Ny4YKQNUiFE=", + "secure_core": true, + "ips": [ + "185.159.157.214" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-06.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.243" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "CH-PL#1", + "hostname": "node-pl-06.protonvpn.net", + "wgpubkey": "bIMk4w3SJ9OLWqlwgCB+umYlRoaLQRk1Te4rUVjVLEI=", + "secure_core": true, + "ips": [ + "185.159.157.243" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "server_name": "IS-PL#1", + "hostname": "node-pl-07.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.224" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "server_name": "IS-PL#1", + "hostname": "node-pl-07.protonvpn.net", + "wgpubkey": "HKjdcdOwD434Dvj7wzN+j/TpchEVcwLm4mq0fuj1tT4=", + "secure_core": true, + "ips": [ + "185.159.158.224" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#1", + "hostname": "node-pl-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.244.17" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#1", + "hostname": "node-pl-05.protonvpn.net", + "wgpubkey": "5dROtTBUwKT7gIZDyva2PaxOSfXlQbG3Ny4YKQNUiFE=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.244.17" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#49", + "hostname": "node-pl-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.178" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#49", + "hostname": "node-pl-06.protonvpn.net", + "wgpubkey": "bIMk4w3SJ9OLWqlwgCB+umYlRoaLQRk1Te4rUVjVLEI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.178" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#61", + "hostname": "node-pl-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.162" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "city": "Warsaw", + "server_name": "PL#61", + "hostname": "node-pl-07.protonvpn.net", + "wgpubkey": "HKjdcdOwD434Dvj7wzN+j/TpchEVcwLm4mq0fuj1tT4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.161.162" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.113" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "secure_core": true, + "ips": [ + "185.159.157.113" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.39" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "CH-PT#1", + "hostname": "node-pt-03.protonvpn.net", + "wgpubkey": "p/sg7scJ5PshmIss9E/I2Y/dwM1EeEpqoE+YnR7JpWU=", + "secure_core": true, + "ips": [ + "79.135.104.39" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "server_name": "SE-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.58" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "server_name": "SE-PT#1", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "secure_core": true, + "ips": [ + "185.159.156.58" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#13", + "hostname": "node-pt-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.20.129" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#13", + "hostname": "node-pt-03.protonvpn.net", + "wgpubkey": "p/sg7scJ5PshmIss9E/I2Y/dwM1EeEpqoE+YnR7JpWU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.20.129" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#5", + "hostname": "node-pt-02b.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.158.248.226" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "city": "Lisbon", + "server_name": "PT#5", + "hostname": "node-pt-02b.protonvpn.net", + "wgpubkey": "RbDaajNuhOJ2QWdraMp06PER6/F9TIHZXM+RUBH7tTM=", + "stream": true, + "port_forward": true, + "ips": [ + "195.158.248.226" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "server_name": "IS-PR#1", + "hostname": "node-pr-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.181" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "server_name": "IS-PR#1", + "hostname": "node-pr-01.protonvpn.net", + "wgpubkey": "bwxgdI9Jo1QCuw9g9VvfenOBrPouBxFkdnQgRjHvrSU=", + "secure_core": true, + "ips": [ + "185.159.158.181" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "city": "San Juan", + "server_name": "PR#1", + "hostname": "node-pr-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "138.199.50.97" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "city": "San Juan", + "server_name": "PR#1", + "hostname": "node-pr-01.protonvpn.net", + "wgpubkey": "bwxgdI9Jo1QCuw9g9VvfenOBrPouBxFkdnQgRjHvrSU=", + "port_forward": true, + "ips": [ + "138.199.50.97" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#1", + "hostname": "qa-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.136.1" + ] + }, + { + "vpn": "wireguard", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#1", + "hostname": "qa-01.protonvpn.net", + "wgpubkey": "0DYsPBZXQBQqQKE1Pjdubulw6lwC6x63ktwb2XUUCyk=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.136.1" + ] + }, + { + "vpn": "openvpn", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#25", + "hostname": "qa-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.112" + ] + }, + { + "vpn": "wireguard", + "country": "Qatar", + "city": "Doha", + "server_name": "QA#25", + "hostname": "qa-02.protonvpn.net", + "wgpubkey": "dvd3mA/eNXoB7wPimwhk9rkpKXtoaym4krWNzkQJw1I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.112" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "server_name": "CH-RO#1", + "hostname": "node-ro-08.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.49" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "server_name": "CH-RO#1", + "hostname": "node-ro-08.protonvpn.net", + "wgpubkey": "oXJDkB7ARwfgC1j8nJMTPz1s8zHDy72V3UxgERs9YjI=", + "secure_core": true, + "ips": [ + "79.135.104.49" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "server_name": "SE-RO#1", + "hostname": "node-ro-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.81" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "server_name": "SE-RO#1", + "hostname": "node-ro-02.protonvpn.net", + "wgpubkey": "5Zfe5nMk+zqZKkvorCiUwTqVidCwTG2UREvUTyswDmo=", + "secure_core": true, + "ips": [ + "185.159.156.81" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#19", + "hostname": "node-ro-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.181.100.178" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#19", + "hostname": "node-ro-08.protonvpn.net", + "wgpubkey": "oXJDkB7ARwfgC1j8nJMTPz1s8zHDy72V3UxgERs9YjI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.181.100.178" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#9", + "hostname": "node-ro-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.53.225" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "city": "Bucharest", + "server_name": "RO#9", + "hostname": "node-ro-02.protonvpn.net", + "wgpubkey": "5Zfe5nMk+zqZKkvorCiUwTqVidCwTG2UREvUTyswDmo=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.53.225" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "CH-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.25" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "CH-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "secure_core": true, + "ips": [ + "79.135.104.25" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "IS-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.233" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "IS-RU#1", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "secure_core": true, + "ips": [ + "185.159.158.233" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "server_name": "SE-RU#1", + "hostname": "node-ru-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.127" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "server_name": "SE-RU#1", + "hostname": "node-ru-05.protonvpn.net", + "wgpubkey": "2VsdP/qE6leGtnym8gEFd4DN0Q9iFFEBOZOo8WqArz8=", + "secure_core": true, + "ips": [ + "185.159.156.127" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#17", + "hostname": "node-ru-04.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "176.96.226.226" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#17", + "hostname": "node-ru-04.protonvpn.net", + "wgpubkey": "7sF0UKgxoQr188w2kYOI2vunvk5XiMbDoKe4sdCDP3s=", + "ips": [ + "176.96.226.226" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#29", + "hostname": "node-ru-05.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "176.96.226.242" + ] + }, + { + "vpn": "wireguard", + "country": "Russian Federation", + "city": "Moscow", + "server_name": "RU#29", + "hostname": "node-ru-05.protonvpn.net", + "wgpubkey": "2VsdP/qE6leGtnym8gEFd4DN0Q9iFFEBOZOo8WqArz8=", + "ips": [ + "176.96.226.242" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#1", + "hostname": "rw-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.129" + ] + }, + { + "vpn": "wireguard", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#1", + "hostname": "rw-02.protonvpn.net", + "wgpubkey": "rKdrh59Ol+ERIXvMDf9zbRZAVWXVx52XrhZngiyjjSs=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.129" + ] + }, + { + "vpn": "openvpn", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#10", + "hostname": "rw-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.37.1" + ] + }, + { + "vpn": "wireguard", + "country": "Rwanda", + "city": "Kigali", + "server_name": "RW#10", + "hostname": "rw-01.protonvpn.net", + "wgpubkey": "OLnq8K4KJCbq7mDPE2Aso3I+sAfWAgMwXZ5Ep09h/l0=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.37.1" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#1", + "hostname": "sn-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.152" + ] + }, + { + "vpn": "wireguard", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#1", + "hostname": "sn-02.protonvpn.net", + "wgpubkey": "JLf3sNwaJQv9OhJF+k19xRa/f4R/FqxvPzMvqcnLdQo=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.152" + ] + }, + { + "vpn": "openvpn", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#10", + "hostname": "sn-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.144.1" + ] + }, + { + "vpn": "wireguard", + "country": "Senegal", + "city": "Dakar", + "server_name": "SN#10", + "hostname": "sn-01.protonvpn.net", + "wgpubkey": "x1ndx/KPvv3Mo4JMWISwuWvdIgIueb2XRCytvo0gY0Q=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.144.1" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.27" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-01.protonvpn.net", + "wgpubkey": "ajuKKgeTYvVwAsgmWvCLcgbxrtnG9HrYy6XVfoybMnI=", + "secure_core": true, + "ips": [ + "185.159.157.27" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.34" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "server_name": "CH-RS#1", + "hostname": "node-rs-02.protonvpn.net", + "wgpubkey": "Urm+zMLHBP105h7X9Qm/Ir+38vMnz8kiEoee9H/FLQE=", + "secure_core": true, + "ips": [ + "79.135.104.34" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#1", + "hostname": "node-rs-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "37.46.115.5" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#1", + "hostname": "node-rs-01.protonvpn.net", + "wgpubkey": "ajuKKgeTYvVwAsgmWvCLcgbxrtnG9HrYy6XVfoybMnI=", + "ips": [ + "37.46.115.5" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#10", + "hostname": "node-rs-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.146.222.226" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "city": "Belgrade", + "server_name": "RS#10", + "hostname": "node-rs-02.protonvpn.net", + "wgpubkey": "Urm+zMLHBP105h7X9Qm/Ir+38vMnz8kiEoee9H/FLQE=", + "stream": true, + "port_forward": true, + "ips": [ + "45.146.222.226" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.187" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-14.protonvpn.net", + "wgpubkey": "rKXFNhvVY+l4GE0STa1u3Yn/2hptVI6Dms/brS341zg=", + "secure_core": true, + "ips": [ + "185.159.157.187" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.21" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "secure_core": true, + "ips": [ + "79.135.104.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.41" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "CH-SG#1", + "hostname": "node-sg-16.protonvpn.net", + "wgpubkey": "WFvkM9OCh1IFqlTgxy/mxcw/PRVxKS9T9JxkMxi+yiI=", + "secure_core": true, + "ips": [ + "79.135.104.41" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "server_name": "SE-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.126" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "server_name": "SE-SG#1", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "secure_core": true, + "ips": [ + "185.159.156.126" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#69", + "hostname": "node-sg-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.201.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#69", + "hostname": "node-sg-14.protonvpn.net", + "wgpubkey": "rKXFNhvVY+l4GE0STa1u3Yn/2hptVI6Dms/brS341zg=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.201.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#77", + "hostname": "node-sg-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.85" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#77", + "hostname": "node-sg-15.protonvpn.net", + "wgpubkey": "06SGCCwQ/ftEmlj5x8wX0Df5Rbi66tkFcvrwe/AuuDc=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.60.85" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#87", + "hostname": "node-sg-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.29.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "city": "Singapore", + "server_name": "SG#87", + "hostname": "node-sg-16.protonvpn.net", + "wgpubkey": "WFvkM9OCh1IFqlTgxy/mxcw/PRVxKS9T9JxkMxi+yiI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.29.194" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.85" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.62" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "secure_core": true, + "ips": [ + "185.159.157.85" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "secure_core": true, + "ips": [ + "185.159.157.62" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.57" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "server_name": "CH-SK#1", + "hostname": "node-sk-02.protonvpn.net", + "wgpubkey": "kVySpobi4m6sAQgjYTxgYxhcddzXOz5YZLHyIm0oa3g=", + "secure_core": true, + "ips": [ + "79.135.104.57" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#1", + "hostname": "node-sk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "196.245.151.210" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#1", + "hostname": "node-sk-01.protonvpn.net", + "wgpubkey": "kxtiQsbblJPBJcrw8p2SdtJ8auswUd5PxHIGXNxkvFw=", + "stream": true, + "ips": [ + "196.245.151.210" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#10", + "hostname": "node-sk-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.245.85.130" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "city": "Bratislava", + "server_name": "SK#10", + "hostname": "node-sk-02.protonvpn.net", + "wgpubkey": "kVySpobi4m6sAQgjYTxgYxhcddzXOz5YZLHyIm0oa3g=", + "stream": true, + "port_forward": true, + "ips": [ + "185.245.85.130" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "server_name": "CH-SI#1", + "hostname": "node-si-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.93" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "server_name": "CH-SI#1", + "hostname": "node-si-01.protonvpn.net", + "wgpubkey": "OyElFysx9UjgoZri1lIj9epltqS13lH5m6wO2UTgl0M=", + "secure_core": true, + "ips": [ + "185.159.157.93" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "city": "Ljubljana", + "server_name": "SI#1", + "hostname": "node-si-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "195.80.150.226" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "city": "Ljubljana", + "server_name": "SI#1", + "hostname": "node-si-01.protonvpn.net", + "wgpubkey": "OyElFysx9UjgoZri1lIj9epltqS13lH5m6wO2UTgl0M=", + "port_forward": true, + "ips": [ + "195.80.150.226" + ] + }, + { + "vpn": "openvpn", + "country": "Somalia", + "city": "Mogadishu", + "server_name": "SO#25", + "hostname": "so-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.160" + ] + }, + { + "vpn": "wireguard", + "country": "Somalia", + "city": "Mogadishu", + "server_name": "SO#25", + "hostname": "so-02.protonvpn.net", + "wgpubkey": "zy5Vc+h/BuIMg/7wB0VOpvUE0CvUA5+wHWwa6cKR8zM=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.160" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "server_name": "CH-ZA#1", + "hostname": "node-za-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.24" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "server_name": "CH-ZA#1", + "hostname": "node-za-02.protonvpn.net", + "wgpubkey": "1h8FnAD81TOAUrOdslmvS9v2LbzXcQscVMKwtX7zOAU=", + "secure_core": true, + "ips": [ + "79.135.104.24" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "server_name": "IS-ZA#1", + "hostname": "node-za-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.184" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "server_name": "IS-ZA#1", + "hostname": "node-za-01.protonvpn.net", + "wgpubkey": "LkVwjA+2K03ztw2+wZ7qxp04RZxxqGDyT3Ndi/FIc1o=", + "secure_core": true, + "ips": [ + "185.159.158.184" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#13", + "hostname": "node-za-01.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "196.240.128.66" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#13", + "hostname": "node-za-01.protonvpn.net", + "wgpubkey": "LkVwjA+2K03ztw2+wZ7qxp04RZxxqGDyT3Ndi/FIc1o=", + "ips": [ + "196.240.128.66" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#25", + "hostname": "node-za-02.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.163" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "city": "Johannesburg", + "server_name": "ZA#25", + "hostname": "node-za-02.protonvpn.net", + "wgpubkey": "1h8FnAD81TOAUrOdslmvS9v2LbzXcQscVMKwtX7zOAU=", + "port_forward": true, + "ips": [ + "178.249.212.163" + ] + }, + { + "vpn": "openvpn", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#1", + "hostname": "ss-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.38.1" + ] + }, + { + "vpn": "wireguard", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#1", + "hostname": "ss-01.protonvpn.net", + "wgpubkey": "6w+L6nVRGKs0ndhIDxOqNhSNjxofgUg1TdcGsJ60+jY=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.38.1" + ] + }, + { + "vpn": "openvpn", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#25", + "hostname": "ss-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.164" + ] + }, + { + "vpn": "wireguard", + "country": "South Sudan", + "city": "Juba", + "server_name": "SS#25", + "hostname": "ss-02.protonvpn.net", + "wgpubkey": "59nl60gSvPVD61opnA/X9I4+1ilxJczmbVxfLWPRAA8=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.164" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.43" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-03.protonvpn.net", + "wgpubkey": "MK3425tJbRhEz+1xQLxlL+l6GNl52zKNwo5V0fHEwj4=", + "secure_core": true, + "ips": [ + "185.159.157.43" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-08.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.85" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-08.protonvpn.net", + "wgpubkey": "tEz96jcHEtBtZOmwMK7Derw0AOih8usKFM+n4Svhr1E=", + "secure_core": true, + "ips": [ + "79.135.104.85" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.86" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "CH-ES#1", + "hostname": "node-es-09.protonvpn.net", + "wgpubkey": "XkiKln3Se1dUvLL9s803TbYkfFNJtb051iGcGs1jgSk=", + "secure_core": true, + "ips": [ + "79.135.104.86" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.148" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-04.protonvpn.net", + "wgpubkey": "roOsz9dJeKKVt6E3EIEKXQfZsmhSfsqOceZWiuGLIgg=", + "secure_core": true, + "ips": [ + "185.159.158.148" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-05.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.149" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "server_name": "IS-ES#1", + "hostname": "node-es-05.protonvpn.net", + "wgpubkey": "We2ZxSzO//srj1br7S2+o8d14qegEf4PKdqKJ46N+34=", + "secure_core": true, + "ips": [ + "185.159.158.149" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#100", + "hostname": "node-es-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.66" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#100", + "hostname": "node-es-08.protonvpn.net", + "wgpubkey": "tEz96jcHEtBtZOmwMK7Derw0AOih8usKFM+n4Svhr1E=", + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.66" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#116", + "hostname": "node-es-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.98" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Barcelona", + "server_name": "ES#116", + "hostname": "node-es-09.protonvpn.net", + "wgpubkey": "XkiKln3Se1dUvLL9s803TbYkfFNJtb051iGcGs1jgSk=", + "stream": true, + "port_forward": true, + "ips": [ + "130.195.250.98" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#30", + "hostname": "node-es-04.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.17" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#30", + "hostname": "node-es-04.protonvpn.net", + "wgpubkey": "roOsz9dJeKKVt6E3EIEKXQfZsmhSfsqOceZWiuGLIgg=", + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.17" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#44", + "hostname": "node-es-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.22" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#44", + "hostname": "node-es-05.protonvpn.net", + "wgpubkey": "We2ZxSzO//srj1br7S2+o8d14qegEf4PKdqKJ46N+34=", + "stream": true, + "port_forward": true, + "ips": [ + "185.76.11.22" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#58", + "hostname": "node-es-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.214.1" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#58", + "hostname": "node-es-06.protonvpn.net", + "wgpubkey": "mqt1HzBNMiBX2H9HOSUze4VXneRScc910/6qq2qPySc=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.214.1" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#72", + "hostname": "node-es-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.181.167.193" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "city": "Madrid", + "server_name": "ES#72", + "hostname": "node-es-03.protonvpn.net", + "wgpubkey": "MK3425tJbRhEz+1xQLxlL+l6GNl52zKNwo5V0fHEwj4=", + "stream": true, + "port_forward": true, + "ips": [ + "195.181.167.193" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "city": "Colombo", + "server_name": "LK#1", + "hostname": "lk-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.127.1" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "city": "Colombo", + "server_name": "LK#1", + "hostname": "lk-01.protonvpn.net", + "wgpubkey": "oRzehP9dEG9yLVfUnjFB9C8/aThS4MeD5eQvv2fJfT4=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.127.1" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "server_name": "SE#31-TOR", + "hostname": "se-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.156.90" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "server_name": "SE#31-TOR", + "hostname": "se-09-tor.protonvpn.net", + "wgpubkey": "jnw7R6t43/63SOFCw9jf6y3a5exG9a+2fcYN3Cir6Qo=", + "tor": true, + "ips": [ + "185.159.156.90" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#17", + "hostname": "node-se-05.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.55.33" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#17", + "hostname": "node-se-05.protonvpn.net", + "wgpubkey": "288ekgckyNpFjvhuo6BqkABb1cDV89g2fpnU2+bwO38=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.55.33" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#32", + "hostname": "node-se-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.225" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#32", + "hostname": "node-se-06.protonvpn.net", + "wgpubkey": "d7TIa7b48hdoGNqgMbjh4t7eJ+5GDE4ax0R/nkUjQTw=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.225" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#44", + "hostname": "node-se-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.238" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#44", + "hostname": "node-se-07.protonvpn.net", + "wgpubkey": "4mgCsg3Rox11k6YWGwToB1kshzqbQ8Iu1HuOZhNtYQg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.238" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#56", + "hostname": "node-se-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.193" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#56", + "hostname": "node-se-08.protonvpn.net", + "wgpubkey": "Z/qpx0cmggXaMcvctgwInrIUdc7Y/9iCZEAN3U1BYUA=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.193" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#67", + "hostname": "node-se-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.205" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#67", + "hostname": "node-se-09.protonvpn.net", + "wgpubkey": "HVtWzUJa32VYzRy4EW30N0qwrJVNUzdbrX40r2hwHgY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.50.216.205" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#78", + "hostname": "node-se-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.189" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#78", + "hostname": "node-se-02.protonvpn.net", + "wgpubkey": "BVOvVbuPe1sICVt6xnUVB3+NhOVhcyi+1dHVSbnQ0Wc=", + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.189" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#84", + "hostname": "node-se-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.188" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "city": "Stockholm", + "server_name": "SE#84", + "hostname": "node-se-01.protonvpn.net", + "wgpubkey": "GBt7gry48sWxyQh65ZXXS+L7gkoEL6zKh0a79uNFDms=", + "stream": true, + "port_forward": true, + "ips": [ + "195.178.172.188" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "server_name": "CH#18-TOR", + "hostname": "ch-09-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "185.159.157.176" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "server_name": "CH#18-TOR", + "hostname": "ch-09-tor.protonvpn.net", + "wgpubkey": "A6ZEPLYJle6Bz+dcRIX/1uNm0DRfOs47H1x8EwUeFnY=", + "tor": true, + "ips": [ + "185.159.157.176" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#113", + "hostname": "node-ch-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.233" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#113", + "hostname": "node-ch-19.protonvpn.net", + "wgpubkey": "MDJPYLKrGYv11Mis97Ihk/aPULhC5us44hx3Fa1/8lk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.233" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#140", + "hostname": "node-ch-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.232" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#140", + "hostname": "node-ch-20.protonvpn.net", + "wgpubkey": "U6izVBdvmWafPuKXctnvArOx6W33X8wBkMvjoOdrBhs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.232" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#167", + "hostname": "node-ch-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.234" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#167", + "hostname": "node-ch-21.protonvpn.net", + "wgpubkey": "XPVCz7LndzqWe7y3+WSo51hvNOX8nX5CTwVTWhzg8g8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.234" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#192", + "hostname": "node-ch-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.235" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#192", + "hostname": "node-ch-22.protonvpn.net", + "wgpubkey": "n+45suXZtI1+TuZWtCnzGkXNBCgJB3wFZYIlBltpORM=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.235" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#217", + "hostname": "node-ch-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.236" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#217", + "hostname": "node-ch-23.protonvpn.net", + "wgpubkey": "2w/1u8pEChF2DeRhJmLDyfbhbkmAidAq0RSNZe+cDTo=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.236" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#242", + "hostname": "node-ch-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.219" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#242", + "hostname": "node-ch-18.protonvpn.net", + "wgpubkey": "HX7TBsL4vp0CxwWsQD5k8CCZvE2YmCg8IyN+TBVUszo=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.219" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#262", + "hostname": "node-ch-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.206" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#262", + "hostname": "node-ch-17.protonvpn.net", + "wgpubkey": "i0qamQHx9/DRrre/4C+ocY6NVbGSfQBZzRcXYnTEHW0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.206" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#282", + "hostname": "node-ch-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.193" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#282", + "hostname": "node-ch-16.protonvpn.net", + "wgpubkey": "WYXA8DeAZIF4th8Dfbw02osdbFc24sK10zKijcJvZwU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.27.193" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#302", + "hostname": "node-ch-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.179" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#302", + "hostname": "node-ch-12.protonvpn.net", + "wgpubkey": "+WRsjA7z/PQqasrqiUVo3Tug+go7W2DXjO2p3TTeagk=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.179" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#314", + "hostname": "node-ch-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.181" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#314", + "hostname": "node-ch-09.protonvpn.net", + "wgpubkey": "kLP1kA+BuzvA6ecozP0c82I8u1aXkZmfMCxBZEqpNHY=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.181" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#326", + "hostname": "node-ch-10.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.177" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#326", + "hostname": "node-ch-10.protonvpn.net", + "wgpubkey": "9nrcUUgwvjNU5Z+EBB0C2cbrhQ3dsCz+zSU83/eqGFY=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.177" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#338", + "hostname": "node-ch-11.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.178" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#338", + "hostname": "node-ch-11.protonvpn.net", + "wgpubkey": "YpOUROUnumcF/snGX8zka0nThnvHesceJAYUSbZL1XQ=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.6.178" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#350", + "hostname": "node-ch-08.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.23" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#350", + "hostname": "node-ch-08.protonvpn.net", + "wgpubkey": "VNNO5MYorFu1UerHvoXccW6TvotxbJ1GAGJKtzM9HTY=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.23" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#359", + "hostname": "node-ch-07.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.24" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#359", + "hostname": "node-ch-07.protonvpn.net", + "wgpubkey": "8vYnuuYtKfsKKnnX6HSKXviMj6bl3P260rRbPcC8d3Q=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.24" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#373", + "hostname": "node-ch-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.7" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#373", + "hostname": "node-ch-03.protonvpn.net", + "wgpubkey": "/2s0IUkblISt/0BMI2KenKgJopsQDCbHhgQvipGxwmY=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.7" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#378", + "hostname": "node-ch-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.11" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#378", + "hostname": "node-ch-13.protonvpn.net", + "wgpubkey": "CgC9o9MUl4n/r4pueamp9JFw2cneCqSnHJD088Zm+Bg=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.11" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#384", + "hostname": "node-ch-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.12" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#384", + "hostname": "node-ch-14.protonvpn.net", + "wgpubkey": "Hd3hdhX18q6tnET4x77hg/xou3o/tdf7iEgLTqtRwVY=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.104.12" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#387", + "hostname": "node-ch-06.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.129" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#387", + "hostname": "node-ch-06.protonvpn.net", + "wgpubkey": "drMrwLemQKdjw4Tb/My2QTfzPbH+ebrTBC5zrfPI7hE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.129" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#393", + "hostname": "node-ch-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.6" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#393", + "hostname": "node-ch-02.protonvpn.net", + "wgpubkey": "00WGV9C77fp+u1G2YrJ3VphcEKFCXcplgUU5THM+QgI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.6" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#65", + "hostname": "node-ch-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.13" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "city": "Zurich", + "server_name": "CH#65", + "hostname": "node-ch-15.protonvpn.net", + "wgpubkey": "17I34jHOMcmI7LKBqxosTfLgwGjO5OKApLcRSPlyymM=", + "stream": true, + "port_forward": true, + "ips": [ + "185.159.157.13" + ] + }, + { + "vpn": "openvpn", + "country": "Syrian Arab Republic", + "city": "Damascus", + "server_name": "SY#1", + "hostname": "sy-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.168" + ] + }, + { + "vpn": "wireguard", + "country": "Syrian Arab Republic", + "city": "Damascus", + "server_name": "SY#1", + "hostname": "sy-02.protonvpn.net", + "wgpubkey": "jnNr7Utzf7scELoP3qhKTfXbJGWD7KwI29RRD02oKm8=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.168" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "server_name": "CH-TW#1", + "hostname": "node-tw-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.141" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "server_name": "CH-TW#1", + "hostname": "node-tw-03.protonvpn.net", + "wgpubkey": "4YvW6/5LP4g/WmaLc1EDfOno+IyN6r+87gQEqGz2Gz4=", + "secure_core": true, + "ips": [ + "185.159.157.141" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "server_name": "SE-TW#01", + "hostname": "node-tw-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.82" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "server_name": "SE-TW#01", + "hostname": "node-tw-04.protonvpn.net", + "wgpubkey": "jodLwKl2kl5scwLUIZQYGoKBsqTRAtv6ltsofBc6WD4=", + "secure_core": true, + "ips": [ + "185.159.156.82" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taichung City", + "server_name": "TW#13", + "hostname": "node-tw-03.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "2.58.241.66" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taichung City", + "server_name": "TW#13", + "hostname": "node-tw-03.protonvpn.net", + "wgpubkey": "4YvW6/5LP4g/WmaLc1EDfOno+IyN6r+87gQEqGz2Gz4=", + "port_forward": true, + "ips": [ + "2.58.241.66" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "city": "Taipei", + "server_name": "TW#21", + "hostname": "node-tw-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.106.178" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "city": "Taipei", + "server_name": "TW#21", + "hostname": "node-tw-04.protonvpn.net", + "wgpubkey": "jodLwKl2kl5scwLUIZQYGoKBsqTRAtv6ltsofBc6WD4=", + "port_forward": true, + "ips": [ + "188.214.106.178" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "server_name": "IS-TH#1", + "hostname": "node-th-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.191" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "server_name": "IS-TH#1", + "hostname": "node-th-01.protonvpn.net", + "wgpubkey": "N4vu5ZFsvf3nbKAYnwwXvqeDwxrYOXZKbTSdknB9a1w=", + "secure_core": true, + "ips": [ + "185.159.158.191" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "city": "Bangkok", + "server_name": "TH#1", + "hostname": "node-th-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "37.19.201.129" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "city": "Bangkok", + "server_name": "TH#1", + "hostname": "node-th-01.protonvpn.net", + "wgpubkey": "N4vu5ZFsvf3nbKAYnwwXvqeDwxrYOXZKbTSdknB9a1w=", + "port_forward": true, + "ips": [ + "37.19.201.129" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#1", + "hostname": "tg-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.9.39.1" + ] + }, + { + "vpn": "wireguard", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#1", + "hostname": "tg-01.protonvpn.net", + "wgpubkey": "rc7QnuukueJDqqKMx7Z3n0zmZ+alsj9BwhOwxZiUoCU=", + "stream": true, + "port_forward": true, + "ips": [ + "193.9.39.1" + ] + }, + { + "vpn": "openvpn", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#25", + "hostname": "tg-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.180" + ] + }, + { + "vpn": "wireguard", + "country": "Togo", + "city": "Lomé", + "server_name": "TG#25", + "hostname": "tg-02.protonvpn.net", + "wgpubkey": "K5dW0eGdp6qEHiHYcu6+DYeaTdCxLdR+NZ4jTz2HtjU=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.180" + ] + }, + { + "vpn": "openvpn", + "country": "Tunisia", + "city": "Tunis", + "server_name": "TN#1", + "hostname": "tn-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.192" + ] + }, + { + "vpn": "wireguard", + "country": "Tunisia", + "city": "Tunis", + "server_name": "TN#1", + "hostname": "tn-02.protonvpn.net", + "wgpubkey": "8jbQY/YMu2YbUG8KwuuMMw4go8FSKrmy/alcKIQRk2I=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.192" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "server_name": "SE-TR#1", + "hostname": "node-tr-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.97" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "server_name": "SE-TR#1", + "hostname": "node-tr-03.protonvpn.net", + "wgpubkey": "O9PuAgDUpgObhbFQYpWMiEoynWaCSmQuGTtBjcuEk3E=", + "secure_core": true, + "ips": [ + "185.159.156.97" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Istanbul", + "server_name": "TR#17", + "hostname": "node-tr-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.139.170" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Istanbul", + "server_name": "TR#17", + "hostname": "node-tr-03.protonvpn.net", + "wgpubkey": "O9PuAgDUpgObhbFQYpWMiEoynWaCSmQuGTtBjcuEk3E=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.139.170" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "city": "Izmir", + "server_name": "TR#25", + "hostname": "tr-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "64.224.17.1" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "city": "Izmir", + "server_name": "TR#25", + "hostname": "tr-25.protonvpn.net", + "wgpubkey": "D3QJtelZ4dK0L5OdeqcFHzM80AGgoL8XhtScVaTdtw0=", + "stream": true, + "port_forward": true, + "ips": [ + "64.224.17.1" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.60" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-02.protonvpn.net", + "wgpubkey": "eqjhoqO6K1nLiej026+RkpSTHloVrOHLlMQaB0Tl5GM=", + "secure_core": true, + "ips": [ + "185.159.157.60" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-03.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.45" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "server_name": "CH-UA#1", + "hostname": "node-ua-03.protonvpn.net", + "wgpubkey": "BTwnvm0OR6IzwefZlzTgJMn8NhISk8DtczUk7P74NH8=", + "secure_core": true, + "ips": [ + "79.135.104.45" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#17", + "hostname": "node-ua-03.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.110.33" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#17", + "hostname": "node-ua-03.protonvpn.net", + "wgpubkey": "BTwnvm0OR6IzwefZlzTgJMn8NhISk8DtczUk7P74NH8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.110.33" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#43", + "hostname": "node-ua-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.50.5" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "city": "Kyiv", + "server_name": "UA#43", + "hostname": "node-ua-02.protonvpn.net", + "wgpubkey": "eqjhoqO6K1nLiej026+RkpSTHloVrOHLlMQaB0Tl5GM=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.50.5" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "CH-AE#1", + "hostname": "node-ae-02.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.104" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "CH-AE#1", + "hostname": "node-ae-02.protonvpn.net", + "wgpubkey": "IwddRZ5jYM+1WC31fJAsFslmkto71LUNA4LG90fPcDM=", + "secure_core": true, + "ips": [ + "185.159.157.104" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "IS-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.232" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "IS-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "secure_core": true, + "ips": [ + "185.159.158.232" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "server_name": "SE-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.119" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "server_name": "SE-AE#1", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "secure_core": true, + "ips": [ + "185.159.156.119" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#21", + "hostname": "node-ae-04.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "178.249.212.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#21", + "hostname": "node-ae-04.protonvpn.net", + "wgpubkey": "fHSz7nXioLz6qt+AoapT4ylVEkHTYpafdELZUmg4W3I=", + "port_forward": true, + "ips": [ + "178.249.212.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#9", + "hostname": "node-ae-02.protonvpn.net", + "tcp": true, + "udp": true, + "ips": [ + "217.138.193.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "city": "Dubai", + "server_name": "AE#9", + "hostname": "node-ae-02.protonvpn.net", + "wgpubkey": "IwddRZ5jYM+1WC31fJAsFslmkto71LUNA4LG90fPcDM=", + "ips": [ + "217.138.193.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-17.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.228" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-17.protonvpn.net", + "wgpubkey": "QA+TBTylpDuM0c/gbNfX7/efivIMg7P0ncLMBtTvglg=", + "secure_core": true, + "ips": [ + "185.159.157.228" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-18.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.229" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-18.protonvpn.net", + "wgpubkey": "7tEhXa2x1eKGbPevwzPjo5u5HLshPxwkofSII9y0v2c=", + "secure_core": true, + "ips": [ + "185.159.157.229" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-20.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.133" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-20.protonvpn.net", + "wgpubkey": "rASRjr/WnYDqR/aW824X2KfIxBIdS5nXQgnKly0TmBo=", + "secure_core": true, + "ips": [ + "185.159.157.133" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-21.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.43" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-21.protonvpn.net", + "wgpubkey": "DgzYjQOQBgtBFUeyj3bVXpzl0qZE1I3/rk/IDS1b8kg=", + "secure_core": true, + "ips": [ + "79.135.104.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-22.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.44" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-22.protonvpn.net", + "wgpubkey": "kYWXMo4RQ08rekIUo0keVmqRkfhPrB8Y288ZQ7ZMYjU=", + "secure_core": true, + "ips": [ + "79.135.104.44" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-23.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.87" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-23.protonvpn.net", + "wgpubkey": "VJHNhHnzYw3UTJb6EDY+280TkNMtlz1SShJ7wMvGmkQ=", + "secure_core": true, + "ips": [ + "79.135.104.87" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-24.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.90" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-24.protonvpn.net", + "wgpubkey": "q8eGv8tYlyBb5OIaIfm6ddI4/XmDZxYvMjGVf9L1vGU=", + "secure_core": true, + "ips": [ + "79.135.104.90" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-25.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.91" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "CH-UK#1", + "hostname": "node-uk-25.protonvpn.net", + "wgpubkey": "709hp67REW72LbAJZv4NIwuf2B7D9K5YSirp0zoQUx8=", + "secure_core": true, + "ips": [ + "79.135.104.91" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-12.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.187" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-12.protonvpn.net", + "wgpubkey": "lnSLhBJ3zosn36teAK1JJjn7ALiaPLq5k6YO07GnQi4=", + "secure_core": true, + "ips": [ + "185.159.158.187" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-14.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.200" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-14.protonvpn.net", + "wgpubkey": "SrT34F0BbJq2U7v8/1V1MRFUMnn7YixbhWUN01xnF2Q=", + "secure_core": true, + "ips": [ + "185.159.158.200" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-15.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.215" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-15.protonvpn.net", + "wgpubkey": "zctOjv4DH2gzXtLQy86Tp0vnT+PNpMsxecd2vUX/i0U=", + "secure_core": true, + "ips": [ + "185.159.158.215" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-16.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.216" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-16.protonvpn.net", + "wgpubkey": "WbRD+D0sEqI7tlTIycY4QVlSgv3zPWCWmx0Z+UA08gI=", + "secure_core": true, + "ips": [ + "185.159.158.216" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-19.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.223" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "server_name": "IS-UK#1", + "hostname": "node-uk-19.protonvpn.net", + "wgpubkey": "uIYz5QpWqSNGRSJw0m4Py3eHR1dXQPb95sIKV8KaEC4=", + "secure_core": true, + "ips": [ + "185.159.158.223" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-09.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.122" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-09.protonvpn.net", + "wgpubkey": "lV7oTc0YRiXHOWTm6qMGIVargMQEXw5xAgS4T9WWlyo=", + "secure_core": true, + "ips": [ + "185.159.156.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-10.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.123" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-10.protonvpn.net", + "wgpubkey": "lMm8Gocz1SIU/eAhpBzPHIWvAxJ30Oyeaj2PvmNl/Qk=", + "secure_core": true, + "ips": [ + "185.159.156.123" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-13.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.99" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "SE-UK#1", + "hostname": "node-uk-13.protonvpn.net", + "wgpubkey": "ic5vxFWQEX5lRVwgx2vfE1xYKXQuwQi1TGDSkR0fsEY=", + "secure_core": true, + "ips": [ + "185.159.156.99" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#1", + "hostname": "node-uk-19.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.24.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#1", + "hostname": "node-uk-19.protonvpn.net", + "wgpubkey": "uIYz5QpWqSNGRSJw0m4Py3eHR1dXQPb95sIKV8KaEC4=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.24.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#179", + "hostname": "node-uk-21.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.65" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#179", + "hostname": "node-uk-21.protonvpn.net", + "wgpubkey": "DgzYjQOQBgtBFUeyj3bVXpzl0qZE1I3/rk/IDS1b8kg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.65" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#205", + "hostname": "node-uk-22.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.63.129" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#205", + "hostname": "node-uk-22.protonvpn.net", + "wgpubkey": "kYWXMo4RQ08rekIUo0keVmqRkfhPrB8Y288ZQ7ZMYjU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.63.129" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#261", + "hostname": "node-uk-09.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.162" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#261", + "hostname": "node-uk-09.protonvpn.net", + "wgpubkey": "lV7oTc0YRiXHOWTm6qMGIVargMQEXw5xAgS4T9WWlyo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.162" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#278", + "hostname": "node-uk-10.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.178" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#278", + "hostname": "node-uk-10.protonvpn.net", + "wgpubkey": "lMm8Gocz1SIU/eAhpBzPHIWvAxJ30Oyeaj2PvmNl/Qk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.204.178" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#295", + "hostname": "node-uk-12.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.83.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#295", + "hostname": "node-uk-12.protonvpn.net", + "wgpubkey": "lnSLhBJ3zosn36teAK1JJjn7ALiaPLq5k6YO07GnQi4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.83.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#312", + "hostname": "node-uk-23.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.225" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#312", + "hostname": "node-uk-23.protonvpn.net", + "wgpubkey": "VJHNhHnzYw3UTJb6EDY+280TkNMtlz1SShJ7wMvGmkQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.225" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#338", + "hostname": "node-uk-13.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.96.66" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#338", + "hostname": "node-uk-13.protonvpn.net", + "wgpubkey": "ic5vxFWQEX5lRVwgx2vfE1xYKXQuwQi1TGDSkR0fsEY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.96.66" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#355", + "hostname": "node-uk-15.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.50" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#355", + "hostname": "node-uk-15.protonvpn.net", + "wgpubkey": "zctOjv4DH2gzXtLQy86Tp0vnT+PNpMsxecd2vUX/i0U=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.50" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#372", + "hostname": "node-uk-18.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.98" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#372", + "hostname": "node-uk-18.protonvpn.net", + "wgpubkey": "7tEhXa2x1eKGbPevwzPjo5u5HLshPxwkofSII9y0v2c=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.98" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#389", + "hostname": "node-uk-16.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#389", + "hostname": "node-uk-16.protonvpn.net", + "wgpubkey": "WbRD+D0sEqI7tlTIycY4QVlSgv3zPWCWmx0Z+UA08gI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#406", + "hostname": "node-uk-17.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.18" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#406", + "hostname": "node-uk-17.protonvpn.net", + "wgpubkey": "QA+TBTylpDuM0c/gbNfX7/efivIMg7P0ncLMBtTvglg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.179.18" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#443", + "hostname": "node-uk-24.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.106" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#443", + "hostname": "node-uk-24.protonvpn.net", + "wgpubkey": "q8eGv8tYlyBb5OIaIfm6ddI4/XmDZxYvMjGVf9L1vGU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.106" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#470", + "hostname": "node-uk-25.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.107" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "London", + "server_name": "UK#470", + "hostname": "node-uk-25.protonvpn.net", + "wgpubkey": "709hp67REW72LbAJZv4NIwuf2B7D9K5YSirp0zoQUx8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.40.48.107" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#231", + "hostname": "node-uk-20.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.181.34" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#231", + "hostname": "node-uk-20.protonvpn.net", + "wgpubkey": "rASRjr/WnYDqR/aW824X2KfIxBIdS5nXQgnKly0TmBo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.181.34" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#423", + "hostname": "node-uk-14.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.133.130" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "city": "Manchester", + "server_name": "UK#423", + "hostname": "node-uk-14.protonvpn.net", + "wgpubkey": "SrT34F0BbJq2U7v8/1V1MRFUMnn7YixbhWUN01xnF2Q=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.133.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-118.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.169" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-118.protonvpn.net", + "wgpubkey": "LMkFEUVVqWl1di39x+CloLdXXH/X9P/vKXeVXohvqlc=", + "secure_core": true, + "ips": [ + "185.159.157.169" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-120.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.170" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-120.protonvpn.net", + "wgpubkey": "0lVdORRneTkqH7Hh12Z5hnATz+kXmkiSwz8YHHx4Ywg=", + "secure_core": true, + "ips": [ + "185.159.157.170" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-121.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.171" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-121.protonvpn.net", + "wgpubkey": "5vyz98gHBbT8z1bdNNZdGYAW0NJIgw1pgr+E6WlJPQA=", + "secure_core": true, + "ips": [ + "185.159.157.171" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-123.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.172" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-123.protonvpn.net", + "wgpubkey": "mn8WlkJqY66j17ZbwN2DB0Nj74zG/DicuRQZtxtQsTM=", + "secure_core": true, + "ips": [ + "185.159.157.172" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-125.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-125.protonvpn.net", + "wgpubkey": "wqJcz4akzVFxx35aJ5B7G/IJ9qsRvpcGNub3rLHcqXo=", + "secure_core": true, + "ips": [ + "185.159.157.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-127.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.174" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-127.protonvpn.net", + "wgpubkey": "3Lz5VpqnS7wfnOWVYFNCFHl+JuuanJ/hB2TqOKQZxVI=", + "secure_core": true, + "ips": [ + "185.159.157.174" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-129.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-129.protonvpn.net", + "wgpubkey": "69bM/DJY8bKExbCqUhLKY4L1NXaYxzwi/bf/61MCBR8=", + "secure_core": true, + "ips": [ + "185.159.157.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-158.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-158.protonvpn.net", + "wgpubkey": "fM5t18SNQhPw5zXr/6crLPu9KseB3/BeDF+McXoclmg=", + "secure_core": true, + "ips": [ + "185.159.157.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-160.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.195" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-160.protonvpn.net", + "wgpubkey": "XlC8xkM0TQpsm/9c5j5u5S7wrI0VliBvXBiKji3UQzU=", + "secure_core": true, + "ips": [ + "185.159.157.195" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-177.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.216" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-177.protonvpn.net", + "wgpubkey": "2nZkJr74LHqiPIAjDmdo1EJrN7DJLVq7N92RNYv7cSk=", + "secure_core": true, + "ips": [ + "185.159.157.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-178.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.215" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-178.protonvpn.net", + "wgpubkey": "sr/YwNGtQzjEi4eJ5fwswkFxuh2Au6NKN5MzUiWV9FY=", + "secure_core": true, + "ips": [ + "185.159.157.215" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-187.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.250" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-187.protonvpn.net", + "wgpubkey": "siQYYgaXYcbz1W0fR0Tpq6ExLLggu/xCOdDOfitDexM=", + "secure_core": true, + "ips": [ + "185.159.157.250" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-189.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.249" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-189.protonvpn.net", + "wgpubkey": "9HAY7JVBdohkIj1ViPJW2huz5roF89F1/5/uqrg2gh4=", + "secure_core": true, + "ips": [ + "185.159.157.249" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-200.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.233" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-200.protonvpn.net", + "wgpubkey": "DzAE6lLRbKUNuxFkuN2gI+sokPARCKYw/E1DyaXQWHc=", + "secure_core": true, + "ips": [ + "185.159.157.233" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-204.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-204.protonvpn.net", + "wgpubkey": "KwU9qcRO0eamCxh/iF7pL2RAOOJezHPVqkIeANcS5Wk=", + "secure_core": true, + "ips": [ + "185.159.157.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-205.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-205.protonvpn.net", + "wgpubkey": "j+clV7yQPWWhQ7v4/8AWBzZ5DNUGSvruZAIsVtyZ92A=", + "secure_core": true, + "ips": [ + "185.159.157.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-206.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-206.protonvpn.net", + "wgpubkey": "JWoqa2qmbXiScPZdipli9Bvb6aqwaol1FdxMFN4d1Tg=", + "secure_core": true, + "ips": [ + "185.159.157.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-216.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-216.protonvpn.net", + "wgpubkey": "PXtm4zWbqySH2QGaI/5ivRVGXPwztXfzMbtoT9Ad0jE=", + "secure_core": true, + "ips": [ + "185.159.157.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-217.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.131" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-217.protonvpn.net", + "wgpubkey": "iJIw5umGxtrrSIRxVrSF1Ofu5IDphpBpAJOvsrG4FiI=", + "secure_core": true, + "ips": [ + "185.159.157.131" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-219.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.147" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-219.protonvpn.net", + "wgpubkey": "YHSRY7kE+yE/rMDmeStrdoMVNbSnk0swQVP4KxiB0hg=", + "secure_core": true, + "ips": [ + "185.159.157.147" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-223.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.254" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-223.protonvpn.net", + "wgpubkey": "MkUR6S5ObCzMx0ZToukggFecdUEjEM2GU/ZhLoz2ICY=", + "secure_core": true, + "ips": [ + "185.159.157.254" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-224.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-224.protonvpn.net", + "wgpubkey": "e3NMqmeAfSRFKRXou+nAvUloxcE8oz/cUtgIJ3OBFSQ=", + "secure_core": true, + "ips": [ + "185.159.157.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-225.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-225.protonvpn.net", + "wgpubkey": "4RblBFy7/Vm2VT6SCyZJ1kKGOgdz2k+WxpNQKdw8mmc=", + "secure_core": true, + "ips": [ + "185.159.157.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-228.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-228.protonvpn.net", + "wgpubkey": "OBxUYm9fx8N3Tf/tcvn3IBhdOyaakd91Osi4zF8XgE0=", + "secure_core": true, + "ips": [ + "79.135.104.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-229.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.22" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-229.protonvpn.net", + "wgpubkey": "znjz1X8oDeciB6/JHNvbOQxIkBPvA9gP5dIXpesm+Fc=", + "secure_core": true, + "ips": [ + "79.135.104.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-238.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-238.protonvpn.net", + "wgpubkey": "dJWLpQaWP1hw0QLQW84B++fWtopgneOafYVZXyyUoAM=", + "secure_core": true, + "ips": [ + "79.135.104.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-239.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-239.protonvpn.net", + "wgpubkey": "szI+Wjh6ov2sg3Onxm1tkdSk/k8rRRYq8oPS3D91mH0=", + "secure_core": true, + "ips": [ + "79.135.104.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-240.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.47" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-240.protonvpn.net", + "wgpubkey": "WNLAmQkeAvdg9QRFMXq7EuwpEWWkltWwiS/DGIcjHjs=", + "secure_core": true, + "ips": [ + "79.135.104.47" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-241.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-241.protonvpn.net", + "wgpubkey": "xuqP9uEGryELhamLSK9IDRNhljo3lA1zL9/gS7yj2WQ=", + "secure_core": true, + "ips": [ + "79.135.104.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-242.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.63" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-242.protonvpn.net", + "wgpubkey": "ksWZOz5RLZaZB4KAU907/LdYM+Aqji1NuQ0QfCzodGc=", + "secure_core": true, + "ips": [ + "79.135.104.63" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-243.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-243.protonvpn.net", + "wgpubkey": "bXiKQCzCfajtuTNSQQpAqcrO0Rhid5d6E3MseL2lxXU=", + "secure_core": true, + "ips": [ + "79.135.104.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-244.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-244.protonvpn.net", + "wgpubkey": "bH4k0o3gbeVcusYIdmdrQElps3r15HItiqtP5T7x3U4=", + "secure_core": true, + "ips": [ + "79.135.104.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-245.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.62" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-245.protonvpn.net", + "wgpubkey": "utqNH4P+C0fA1wTgIUaIfhm1b7ai0iEGvXyiw4KC3Fs=", + "secure_core": true, + "ips": [ + "79.135.104.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-246.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.61" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-246.protonvpn.net", + "wgpubkey": "mdgZ6wT7AXGznoYqxERZexx9aPEd/FhQ+P6fdXCBuVQ=", + "secure_core": true, + "ips": [ + "79.135.104.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-249.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-249.protonvpn.net", + "wgpubkey": "RAy+GOFz+bdG0l/wS+4J2AcpcVyUc2xbR6JR1Q8zJg4=", + "secure_core": true, + "ips": [ + "79.135.104.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-250.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-250.protonvpn.net", + "wgpubkey": "WGwF8za3sD1rc946cBJZe1SEwJB2NzAGMTDx1iGIrQ0=", + "secure_core": true, + "ips": [ + "79.135.104.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-251.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-251.protonvpn.net", + "wgpubkey": "0abDpTVm9oXMpPL+8W495UD3BCawGKEstNO784GUaj4=", + "secure_core": true, + "ips": [ + "79.135.104.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-252.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.72" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-252.protonvpn.net", + "wgpubkey": "84bwJLVJI1YzH99wbU1t6fouJuZGxcMsfKQpBz7LDxI=", + "secure_core": true, + "ips": [ + "79.135.104.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-253.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.73" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-253.protonvpn.net", + "wgpubkey": "bMtZjBqTLqHPvDJXSZ81flOlYmH0kgU503KFpT8VIR8=", + "secure_core": true, + "ips": [ + "79.135.104.73" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-256.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-256.protonvpn.net", + "wgpubkey": "gU9CLkRxLUarj9+MtswvE/2Tvclx32w5aoSYeY3eEX8=", + "secure_core": true, + "ips": [ + "79.135.104.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-257.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-257.protonvpn.net", + "wgpubkey": "6Ct2qC5B3ayxBtkV2y6ScFzYcLD/6fLmtMmHPCJTAVU=", + "secure_core": true, + "ips": [ + "79.135.104.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-260.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.84" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-260.protonvpn.net", + "wgpubkey": "sHJbg8AIxsb5TFe8xIWPxo8VXuAMk9+HcdY0hHvGNFg=", + "secure_core": true, + "ips": [ + "79.135.104.84" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-261.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "79.135.104.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-261.protonvpn.net", + "wgpubkey": "YU5vcydVJvB83c6VBS26WWq9spE+9Md9gBn7tesSSGQ=", + "secure_core": true, + "ips": [ + "79.135.104.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-57.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.92" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-57.protonvpn.net", + "wgpubkey": "jqu/dcZfEtote0IN1H4ZFneR8p4sZ7juna+eUndhRgs=", + "secure_core": true, + "ips": [ + "185.159.157.92" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-93.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.142" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-93.protonvpn.net", + "wgpubkey": "KJr11pgXcjU4BTRb3gJsijwKwI1m/u6vMURUwajagyY=", + "secure_core": true, + "ips": [ + "185.159.157.142" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-94.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.157.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "CH-US#1", + "hostname": "node-us-94.protonvpn.net", + "wgpubkey": "z54+LsnV9L6PyS/MO4dPfJ650jiOVLVevYrWf2WsDzg=", + "secure_core": true, + "ips": [ + "185.159.157.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-108.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-108.protonvpn.net", + "wgpubkey": "tvJm5a80r4KeOxe0K7BLQ27DYPjCfoGxh1l3DzNg4RI=", + "secure_core": true, + "ips": [ + "185.159.158.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-109.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.151" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-109.protonvpn.net", + "wgpubkey": "dEsuT/1kn90iBupDFEkkpYbxmZP9pqu9zG5uG01ppns=", + "secure_core": true, + "ips": [ + "185.159.158.151" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-119.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-119.protonvpn.net", + "wgpubkey": "zAIZj//t14xuriUMSlWk4/J2jox6I/JMzHL1Y3D/WUE=", + "secure_core": true, + "ips": [ + "185.159.158.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-122.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.188" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-122.protonvpn.net", + "wgpubkey": "5Vs6LCNRBfpISEGhbdZMgyNVhrbjxkuflPMfdj9EkTc=", + "secure_core": true, + "ips": [ + "185.159.158.188" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-124.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.189" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-124.protonvpn.net", + "wgpubkey": "DmLmc8enWKMicpxkxy2md1derQApeMJibtt2UZnCxG4=", + "secure_core": true, + "ips": [ + "185.159.158.189" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-126.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.190" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-126.protonvpn.net", + "wgpubkey": "qDJgY2K+GtC/geqxLN2ZO61LHlwENsMpapC1eGF21mM=", + "secure_core": true, + "ips": [ + "185.159.158.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-130.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.192" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-130.protonvpn.net", + "wgpubkey": "houxrsE+RottYWy4pSsRM8ZEReqN0cEzPGtYOzmjOF0=", + "secure_core": true, + "ips": [ + "185.159.158.192" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-144.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.185" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-144.protonvpn.net", + "wgpubkey": "8NeySGpnCMtwtgwVARpoCNonu9qxQxrE6hFztMcMDkA=", + "secure_core": true, + "ips": [ + "185.159.158.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-176.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-176.protonvpn.net", + "wgpubkey": "BoAWTY6Bzcy6owGEkjeMEjENa/o/CZbkO6WPSynKdHU=", + "secure_core": true, + "ips": [ + "185.159.158.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-182.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.214" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-182.protonvpn.net", + "wgpubkey": "9JeNQPhigBfmRY0aAtRuqBklf8HVhTAyXZcv0I5vZBg=", + "secure_core": true, + "ips": [ + "185.159.158.214" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-183.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.213" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-183.protonvpn.net", + "wgpubkey": "d2QJ4qxbpm7HSiEbssGku1X+UNnZBcEWcApgS0xgI34=", + "secure_core": true, + "ips": [ + "185.159.158.213" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-185.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.212" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-185.protonvpn.net", + "wgpubkey": "+RKh5rGk9iaI9TwKqCO2iAtDTG6b+NBgwJijaOALNlQ=", + "secure_core": true, + "ips": [ + "185.159.158.212" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-188.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.227" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-188.protonvpn.net", + "wgpubkey": "dnLzpdaCyBlnnYS9iBwhPXoTXBQQNStT6/Tx6CytOmg=", + "secure_core": true, + "ips": [ + "185.159.158.227" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-197.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.228" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-197.protonvpn.net", + "wgpubkey": "Orm/o/kOBbNLCvxrwdQZHswlHRyz4O8HSaCHJ7YF0Rs=", + "secure_core": true, + "ips": [ + "185.159.158.228" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-199.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.222" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-199.protonvpn.net", + "wgpubkey": "ADxD28Omx0nDn+PDjlRaZ4DjvRe19Urjz4tJCFtmNXc=", + "secure_core": true, + "ips": [ + "185.159.158.222" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-201.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-201.protonvpn.net", + "wgpubkey": "sn2DwUHXSLYbub6dVFKRhE2QHcji5I8TMSotCTlGFw0=", + "secure_core": true, + "ips": [ + "185.159.158.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-207.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.229" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-207.protonvpn.net", + "wgpubkey": "yYcyNBfbU6SWkTLNrzK7peMXHCkG4FKg9bk2D/5yLCo=", + "secure_core": true, + "ips": [ + "185.159.158.229" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-208.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.230" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-208.protonvpn.net", + "wgpubkey": "nSo/1FlBPdm/hotIKPb2dFcY5AwZPQPBcbvLdcL6Zw4=", + "secure_core": true, + "ips": [ + "185.159.158.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-222.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-222.protonvpn.net", + "wgpubkey": "nZYSL1qRLQRFC71xHVmBxP6XMwTm7yEFGBNtCBckEAg=", + "secure_core": true, + "ips": [ + "185.159.158.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-237.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-237.protonvpn.net", + "wgpubkey": "E4gRP4uJvUMxTXVfTDLtkAmfAV7Jyl1uYltU8tlvb2Y=", + "secure_core": true, + "ips": [ + "185.159.158.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-258.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-258.protonvpn.net", + "wgpubkey": "rPDCc4RoglCJ/M4BmFgr2eA8Ob7oc9qTTWG/79rApAI=", + "secure_core": true, + "ips": [ + "185.159.158.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-259.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.158.236" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "IS-US#1", + "hostname": "node-us-259.protonvpn.net", + "wgpubkey": "KQ0hvdTjgHoRLCzpC/Mf7vDD+PZr8TqW0faHCE4yDlQ=", + "secure_core": true, + "ips": [ + "185.159.158.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-134.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-134.protonvpn.net", + "wgpubkey": "/KM6QESKJRK7GiMqWstUl1Yn9pzc6DPzqCtNauxYgn8=", + "secure_core": true, + "ips": [ + "185.159.156.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-135.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.100" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-135.protonvpn.net", + "wgpubkey": "qT0lxDVbWEIyrL2A40FfCXRlUALvnryRz2aQdD6gUDs=", + "secure_core": true, + "ips": [ + "185.159.156.100" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-164.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-164.protonvpn.net", + "wgpubkey": "WLIgAxtnNNGoiPqZLeQ398sBR3Kubzzf52zcpP6Is3c=", + "secure_core": true, + "ips": [ + "185.159.156.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-165.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.109" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-165.protonvpn.net", + "wgpubkey": "CWQjPwtCiy4zb/nUbj5VhtxLHMWY6wYS02PaayGdi3c=", + "secure_core": true, + "ips": [ + "185.159.156.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-166.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.108" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-166.protonvpn.net", + "wgpubkey": "W2efYy9of9Z/iEvjcstWVueHoNsbr6rXE8mCr57Mglc=", + "secure_core": true, + "ips": [ + "185.159.156.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-167.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.107" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-167.protonvpn.net", + "wgpubkey": "fXtINk5LcWvNoCxNwx9WkmHieyyw+zIcLiiRM6eyECc=", + "secure_core": true, + "ips": [ + "185.159.156.107" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-168.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.106" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-168.protonvpn.net", + "wgpubkey": "hrpCDkmnfP/gvsvxAI113SMGs/h/e/fAVJv108kypH8=", + "secure_core": true, + "ips": [ + "185.159.156.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-169.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.105" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-169.protonvpn.net", + "wgpubkey": "zD4qEIk4HqXDJ5vHE9G34EUUhEybyBhA/Gs8NrfOdmI=", + "secure_core": true, + "ips": [ + "185.159.156.105" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-171.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.104" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-171.protonvpn.net", + "wgpubkey": "WORwyyPb5VRQTmKfAoemc4rp8ROmfAFHN7hi2Mv/F3Y=", + "secure_core": true, + "ips": [ + "185.159.156.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-172.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.103" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-172.protonvpn.net", + "wgpubkey": "Nm/K6UQLBTliioKl4b/1bXeyvGCXyhm1DW6Ja9cTNkw=", + "secure_core": true, + "ips": [ + "185.159.156.103" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-173.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.102" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-173.protonvpn.net", + "wgpubkey": "Mj03vnL7RG+sg2cognGuQg9MXEUJQYGHBmJ9BjUzWhQ=", + "secure_core": true, + "ips": [ + "185.159.156.102" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-174.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.101" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-174.protonvpn.net", + "wgpubkey": "l7w86I7WktXeH5okV0/c/NW14hfDiAqrkZ33MBJAmyE=", + "secure_core": true, + "ips": [ + "185.159.156.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-179.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.112" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-179.protonvpn.net", + "wgpubkey": "wm+NrCihayTi0RbmaW4CWZI3h9KOU/i7320UyTY4zFc=", + "secure_core": true, + "ips": [ + "185.159.156.112" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-181.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.111" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-181.protonvpn.net", + "wgpubkey": "uHxpjPRK6pzTRiHfi+4TpkVZWgL26/KZKlTV4TmItEk=", + "secure_core": true, + "ips": [ + "185.159.156.111" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-190.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-190.protonvpn.net", + "wgpubkey": "Daer24dSnQMoGm/LIDjPbKgrlUjF0ldjiDA9dfe+EXk=", + "secure_core": true, + "ips": [ + "185.159.156.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-192.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.118" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-192.protonvpn.net", + "wgpubkey": "Q+F33KqUr9obW0a7u9ZwNRrQlcwcoNdStZfTs321CTY=", + "secure_core": true, + "ips": [ + "185.159.156.118" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-194.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-194.protonvpn.net", + "wgpubkey": "w2G3XM+TbpmahFFOeGqXJtWdaYzKO7rBmNRQ/+T8JCU=", + "secure_core": true, + "ips": [ + "185.159.156.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-195.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.113" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-195.protonvpn.net", + "wgpubkey": "qnjcsT0wrNHUtNm1uloWf9YbJij1Nr8O4UHtM9uqkmI=", + "secure_core": true, + "ips": [ + "185.159.156.113" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-202.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.115" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-202.protonvpn.net", + "wgpubkey": "umCaW98SBPbNjApBKCo0ReYhT2AJ0QfV/ZlyWnWmVUk=", + "secure_core": true, + "ips": [ + "185.159.156.115" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-203.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.116" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-203.protonvpn.net", + "wgpubkey": "vGD6tyZKW743G1OHC/F4DAuyD+gJqSv8OTlRk8iODEA=", + "secure_core": true, + "ips": [ + "185.159.156.116" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-221.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-221.protonvpn.net", + "wgpubkey": "L/lAxBloXzDXNrWw1xtJgEMJWPct1reKQPkRsw/7Knw=", + "secure_core": true, + "ips": [ + "185.159.156.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-227.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.125" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-227.protonvpn.net", + "wgpubkey": "D7+AG9clQ1F/6uaY8apeoKDOKAD7p6tf65dFIVLGsHg=", + "secure_core": true, + "ips": [ + "185.159.156.125" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-58.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-58.protonvpn.net", + "wgpubkey": "Yu2fgynXUAASCkkrXWj76LRriFxKMTQq+zjTzyOKG1Q=", + "secure_core": true, + "ips": [ + "185.159.156.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-59.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-59.protonvpn.net", + "wgpubkey": "d6QfE2GBWT42RpVD5rNEb4qxK+0yPid9rI3bhm7PLm0=", + "secure_core": true, + "ips": [ + "185.159.156.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-66.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.64" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-66.protonvpn.net", + "wgpubkey": "rRO6yJim++Ezz6scCLMaizI+taDjU1pzR2nfW6qKbW0=", + "secure_core": true, + "ips": [ + "185.159.156.64" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-67.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-67.protonvpn.net", + "wgpubkey": "R8Of+lrl8DgOQmO6kcjlX7SchP4ncvbY90MB7ZUNmD8=", + "secure_core": true, + "ips": [ + "185.159.156.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-69.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-69.protonvpn.net", + "wgpubkey": "ce06fOftuyKP16IymSeHUNeTs4aGfA3SA033wGHrixg=", + "secure_core": true, + "ips": [ + "185.159.156.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-74.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.70" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-74.protonvpn.net", + "wgpubkey": "uQAr4o8x8M9aONM/nMu7DHLZCUobnRILlaTPmnD8ISw=", + "secure_core": true, + "ips": [ + "185.159.156.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-75.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.71" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "SE-US#1", + "hostname": "node-us-75.protonvpn.net", + "wgpubkey": "zU0Jf18SPgf+6Bzg876z6MbG8M3pHSwQvKoPl1bhHjg=", + "secure_core": true, + "ips": [ + "185.159.156.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "US-CO#21-TOR", + "hostname": "us-co-21-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "84.17.63.17" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "US-CO#21-TOR", + "hostname": "us-co-21-tor.protonvpn.net", + "wgpubkey": "wKzdG/orqK8ZHgBUaIB6RvxjuZvV2s58e+Palmqx1Co=", + "tor": true, + "ips": [ + "84.17.63.17" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "server_name": "US-GA#29-TOR", + "hostname": "us-ga-29-tor.protonvpn.net", + "tcp": true, + "udp": true, + "tor": true, + "ips": [ + "89.187.171.248" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "server_name": "US-GA#29-TOR", + "hostname": "us-ga-29-tor.protonvpn.net", + "wgpubkey": "E5JWfTrD/cRf5W4shN34r83jtyMurnv+SL+BnYOk5yA=", + "tor": true, + "ips": [ + "89.187.171.248" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#1", + "hostname": "node-us-119.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.156.46.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#1", + "hostname": "node-us-119.protonvpn.net", + "wgpubkey": "zAIZj//t14xuriUMSlWk4/J2jox6I/JMzHL1Y3D/WUE=", + "stream": true, + "port_forward": true, + "ips": [ + "185.156.46.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#100", + "hostname": "node-us-207.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#100", + "hostname": "node-us-207.protonvpn.net", + "wgpubkey": "yYcyNBfbU6SWkTLNrzK7peMXHCkG4FKg9bk2D/5yLCo=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#112", + "hostname": "node-us-219.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#112", + "hostname": "node-us-219.protonvpn.net", + "wgpubkey": "YHSRY7kE+yE/rMDmeStrdoMVNbSnk0swQVP4KxiB0hg=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#127", + "hostname": "node-us-224.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.90" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#127", + "hostname": "node-us-224.protonvpn.net", + "wgpubkey": "e3NMqmeAfSRFKRXou+nAvUloxcE8oz/cUtgIJ3OBFSQ=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.22.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#72", + "hostname": "node-us-254.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.18.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Ashburn", + "server_name": "US-VA#72", + "hostname": "node-us-254.protonvpn.net", + "wgpubkey": "zdYVhy77B3nLGEeiTmC8we1pUMvw+RO/SL9NcYNpj08=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.18.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-FREE#38", + "hostname": "node-us-56.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "89.187.171.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-FREE#38", + "hostname": "node-us-56.protonvpn.net", + "wgpubkey": "SC3K+dUvwvU3yammLuEZ0YEVmRe+YwYvQHftqJA2fms=", + "free": true, + "ips": [ + "89.187.171.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#133", + "hostname": "node-us-247.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#133", + "hostname": "node-us-247.protonvpn.net", + "wgpubkey": "kUecqd/j8pg+umeA6UVuYi47FclMHWRRi8WUVIBshVY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#159", + "hostname": "node-us-248.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#159", + "hostname": "node-us-248.protonvpn.net", + "wgpubkey": "lHEn/qdFKAZZjGWD3gAN1QBxuEZly7pSqaqRQRIW2hI=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#185", + "hostname": "node-us-249.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#185", + "hostname": "node-us-249.protonvpn.net", + "wgpubkey": "RAy+GOFz+bdG0l/wS+4J2AcpcVyUc2xbR6JR1Q8zJg4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.94.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#211", + "hostname": "node-us-69.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.170.135" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#211", + "hostname": "node-us-69.protonvpn.net", + "wgpubkey": "ce06fOftuyKP16IymSeHUNeTs4aGfA3SA033wGHrixg=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.170.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#225", + "hostname": "node-us-59.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.171.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#225", + "hostname": "node-us-59.protonvpn.net", + "wgpubkey": "d6QfE2GBWT42RpVD5rNEb4qxK+0yPid9rI3bhm7PLm0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.171.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#239", + "hostname": "node-us-121.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.33" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#239", + "hostname": "node-us-121.protonvpn.net", + "wgpubkey": "5vyz98gHBbT8z1bdNNZdGYAW0NJIgw1pgr+E6WlJPQA=", + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.33" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#253", + "hostname": "node-us-225.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.46" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Atlanta", + "server_name": "US-GA#253", + "hostname": "node-us-225.protonvpn.net", + "wgpubkey": "4RblBFy7/Vm2VT6SCyZJ1kKGOgdz2k+WxpNQKdw8mmc=", + "stream": true, + "port_forward": true, + "ips": [ + "45.134.140.46" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#115", + "hostname": "node-us-220.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#115", + "hostname": "node-us-220.protonvpn.net", + "wgpubkey": "JpTNgqGxonmaS/1dNbN35JpaZCd+kPw7eMwslJmgRXU=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#127", + "hostname": "node-us-240.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.138" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#127", + "hostname": "node-us-240.protonvpn.net", + "wgpubkey": "WNLAmQkeAvdg9QRFMXq7EuwpEWWkltWwiS/DGIcjHjs=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.138" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#153", + "hostname": "node-us-241.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.139" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#153", + "hostname": "node-us-241.protonvpn.net", + "wgpubkey": "xuqP9uEGryELhamLSK9IDRNhljo3lA1zL9/gS7yj2WQ=", + "stream": true, + "port_forward": true, + "ips": [ + "87.249.134.139" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#200", + "hostname": "node-us-204.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#200", + "hostname": "node-us-204.protonvpn.net", + "wgpubkey": "KwU9qcRO0eamCxh/iF7pL2RAOOJezHPVqkIeANcS5Wk=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#225", + "hostname": "node-us-206.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#225", + "hostname": "node-us-206.protonvpn.net", + "wgpubkey": "JWoqa2qmbXiScPZdipli9Bvb6aqwaol1FdxMFN4d1Tg=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#248", + "hostname": "node-us-130.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#248", + "hostname": "node-us-130.protonvpn.net", + "wgpubkey": "houxrsE+RottYWy4pSsRM8ZEReqN0cEzPGtYOzmjOF0=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#261", + "hostname": "node-us-135.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.40" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#261", + "hostname": "node-us-135.protonvpn.net", + "wgpubkey": "qT0lxDVbWEIyrL2A40FfCXRlUALvnryRz2aQdD6gUDs=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.40" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#274", + "hostname": "node-us-205.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.145" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#274", + "hostname": "node-us-205.protonvpn.net", + "wgpubkey": "j+clV7yQPWWhQ7v4/8AWBzZ5DNUGSvruZAIsVtyZ92A=", + "stream": true, + "port_forward": true, + "ips": [ + "154.47.25.145" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#45", + "hostname": "node-us-129.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.14" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Chicago", + "server_name": "US-IL#45", + "hostname": "node-us-129.protonvpn.net", + "wgpubkey": "69bM/DJY8bKExbCqUhLKY4L1NXaYxzwi/bf/61MCBR8=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.180.14" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#100", + "hostname": "node-us-239.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#100", + "hostname": "node-us-239.protonvpn.net", + "wgpubkey": "szI+Wjh6ov2sg3Onxm1tkdSk/k8rRRYq8oPS3D91mH0=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#128", + "hostname": "node-us-108.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.241" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#128", + "hostname": "node-us-108.protonvpn.net", + "wgpubkey": "tvJm5a80r4KeOxe0K7BLQ27DYPjCfoGxh1l3DzNg4RI=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.241" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#147", + "hostname": "node-us-75.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#147", + "hostname": "node-us-75.protonvpn.net", + "wgpubkey": "zU0Jf18SPgf+6Bzg876z6MbG8M3pHSwQvKoPl1bhHjg=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#161", + "hostname": "node-us-109.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#161", + "hostname": "node-us-109.protonvpn.net", + "wgpubkey": "dEsuT/1kn90iBupDFEkkpYbxmZP9pqu9zG5uG01ppns=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.164.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#175", + "hostname": "node-us-203.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#175", + "hostname": "node-us-203.protonvpn.net", + "wgpubkey": "vGD6tyZKW743G1OHC/F4DAuyD+gJqSv8OTlRk8iODEA=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#190", + "hostname": "node-us-57.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.132" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#190", + "hostname": "node-us-57.protonvpn.net", + "wgpubkey": "jqu/dcZfEtote0IN1H4ZFneR8p4sZ7juna+eUndhRgs=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.175.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#203", + "hostname": "node-us-222.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.27" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#203", + "hostname": "node-us-222.protonvpn.net", + "wgpubkey": "nZYSL1qRLQRFC71xHVmBxP6XMwTm7yEFGBNtCBckEAg=", + "stream": true, + "port_forward": true, + "ips": [ + "37.19.200.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#29", + "hostname": "node-us-125.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.58.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#29", + "hostname": "node-us-125.protonvpn.net", + "wgpubkey": "wqJcz4akzVFxx35aJ5B7G/IJ9qsRvpcGNub3rLHcqXo=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.58.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#63", + "hostname": "node-us-238.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Dallas", + "server_name": "US-TX#63", + "hostname": "node-us-238.protonvpn.net", + "wgpubkey": "dJWLpQaWP1hw0QLQW84B++fWtopgneOafYVZXyyUoAM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.217.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#100", + "hostname": "node-us-93.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.161" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#100", + "hostname": "node-us-93.protonvpn.net", + "wgpubkey": "KJr11pgXcjU4BTRb3gJsijwKwI1m/u6vMURUwajagyY=", + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.161" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#44", + "hostname": "node-us-94.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.166" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#44", + "hostname": "node-us-94.protonvpn.net", + "wgpubkey": "z54+LsnV9L6PyS/MO4dPfJ650jiOVLVevYrWf2WsDzg=", + "stream": true, + "port_forward": true, + "ips": [ + "212.102.44.166" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#62", + "hostname": "node-us-74.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.54" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#62", + "hostname": "node-us-74.protonvpn.net", + "wgpubkey": "uQAr4o8x8M9aONM/nMu7DHLZCUobnRILlaTPmnD8ISw=", + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.54" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#76", + "hostname": "node-us-58.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.8" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Denver", + "server_name": "US-CO#76", + "hostname": "node-us-58.protonvpn.net", + "wgpubkey": "Yu2fgynXUAASCkkrXWj76LRriFxKMTQq+zjTzyOKG1Q=", + "stream": true, + "port_forward": true, + "ips": [ + "84.17.63.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#143", + "hostname": "node-us-164.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.45.4.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#143", + "hostname": "node-us-164.protonvpn.net", + "wgpubkey": "WLIgAxtnNNGoiPqZLeQ398sBR3Kubzzf52zcpP6Is3c=", + "stream": true, + "port_forward": true, + "ips": [ + "89.45.4.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#155", + "hostname": "node-us-165.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#155", + "hostname": "node-us-165.protonvpn.net", + "wgpubkey": "CWQjPwtCiy4zb/nUbj5VhtxLHMWY6wYS02PaayGdi3c=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#167", + "hostname": "node-us-166.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#167", + "hostname": "node-us-166.protonvpn.net", + "wgpubkey": "W2efYy9of9Z/iEvjcstWVueHoNsbr6rXE8mCr57Mglc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#179", + "hostname": "node-us-167.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#179", + "hostname": "node-us-167.protonvpn.net", + "wgpubkey": "fXtINk5LcWvNoCxNwx9WkmHieyyw+zIcLiiRM6eyECc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#191", + "hostname": "node-us-168.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#191", + "hostname": "node-us-168.protonvpn.net", + "wgpubkey": "hrpCDkmnfP/gvsvxAI113SMGs/h/e/fAVJv108kypH8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#203", + "hostname": "node-us-169.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#203", + "hostname": "node-us-169.protonvpn.net", + "wgpubkey": "zD4qEIk4HqXDJ5vHE9G34EUUhEybyBhA/Gs8NrfOdmI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#215", + "hostname": "node-us-171.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#215", + "hostname": "node-us-171.protonvpn.net", + "wgpubkey": "WORwyyPb5VRQTmKfAoemc4rp8ROmfAFHN7hi2Mv/F3Y=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#227", + "hostname": "node-us-172.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#227", + "hostname": "node-us-172.protonvpn.net", + "wgpubkey": "Nm/K6UQLBTliioKl4b/1bXeyvGCXyhm1DW6Ja9cTNkw=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#239", + "hostname": "node-us-173.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#239", + "hostname": "node-us-173.protonvpn.net", + "wgpubkey": "Mj03vnL7RG+sg2cognGuQg9MXEUJQYGHBmJ9BjUzWhQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#251", + "hostname": "node-us-174.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#251", + "hostname": "node-us-174.protonvpn.net", + "wgpubkey": "l7w86I7WktXeH5okV0/c/NW14hfDiAqrkZ33MBJAmyE=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.174.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#283", + "hostname": "node-us-209.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#283", + "hostname": "node-us-209.protonvpn.net", + "wgpubkey": "3UovAm+ES1DXOEjkBiCOEnOHaicDmaVHXmym6oPE7C8=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#295", + "hostname": "node-us-210.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.34" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#295", + "hostname": "node-us-210.protonvpn.net", + "wgpubkey": "pD8KPLHTUnyGvfZxSZn5mgedaIZIr+CV8Ci264WdEWU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#307", + "hostname": "node-us-211.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.127.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#307", + "hostname": "node-us-211.protonvpn.net", + "wgpubkey": "e3FyPc2qkPxQITc2Gaa9HerwCAejg1VafyZ+QLiwFCA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.127.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#319", + "hostname": "node-us-212.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#319", + "hostname": "node-us-212.protonvpn.net", + "wgpubkey": "5CiaJpve8E308qd7nrpacFBg6zj01SenfPOBBtf4/3A=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.195.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#331", + "hostname": "node-us-242.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.1" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#331", + "hostname": "node-us-242.protonvpn.net", + "wgpubkey": "ksWZOz5RLZaZB4KAU907/LdYM+Aqji1NuQ0QfCzodGc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.1" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#357", + "hostname": "node-us-243.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.28" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#357", + "hostname": "node-us-243.protonvpn.net", + "wgpubkey": "bXiKQCzCfajtuTNSQQpAqcrO0Rhid5d6E3MseL2lxXU=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#383", + "hostname": "node-us-244.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.55" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#383", + "hostname": "node-us-244.protonvpn.net", + "wgpubkey": "bH4k0o3gbeVcusYIdmdrQElps3r15HItiqtP5T7x3U4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.55" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#487", + "hostname": "node-us-253.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#487", + "hostname": "node-us-253.protonvpn.net", + "wgpubkey": "bMtZjBqTLqHPvDJXSZ81flOlYmH0kgU503KFpT8VIR8=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.80.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#554", + "hostname": "node-us-66.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.230.126.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#554", + "hostname": "node-us-66.protonvpn.net", + "wgpubkey": "rRO6yJim++Ezz6scCLMaizI+taDjU1pzR2nfW6qKbW0=", + "stream": true, + "port_forward": true, + "ips": [ + "185.230.126.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#89", + "hostname": "node-us-122.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "138.199.35.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-CA#89", + "hostname": "node-us-122.protonvpn.net", + "wgpubkey": "5Vs6LCNRBfpISEGhbdZMgyNVhrbjxkuflPMfdj9EkTc=", + "stream": true, + "port_forward": true, + "ips": [ + "138.199.35.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-FREE#37", + "hostname": "node-us-61.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "84.17.45.156" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Los Angeles", + "server_name": "US-FREE#37", + "hostname": "node-us-61.protonvpn.net", + "wgpubkey": "wh6moITNnZ8vb5sKb822coweXEjDeOmDMZoHxCNyOGY=", + "free": true, + "ips": [ + "84.17.45.156" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#1", + "hostname": "node-us-229.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.88.17.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#1", + "hostname": "node-us-229.protonvpn.net", + "wgpubkey": "znjz1X8oDeciB6/JHNvbOQxIkBPvA9gP5dIXpesm+Fc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.88.17.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#101", + "hostname": "node-us-181.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.147.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#101", + "hostname": "node-us-181.protonvpn.net", + "wgpubkey": "uHxpjPRK6pzTRiHfi+4TpkVZWgL26/KZKlTV4TmItEk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.147.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#176", + "hostname": "node-us-213.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#176", + "hostname": "node-us-213.protonvpn.net", + "wgpubkey": "W212beMkUN0NM9wf4QR4er+Q2wqpYMslj5SG3IGdBCM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#188", + "hostname": "node-us-214.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#188", + "hostname": "node-us-214.protonvpn.net", + "wgpubkey": "7Iw04uu95YjDjwE6UlDWZejISeJBK1imqFXDeQInzQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#200", + "hostname": "node-us-215.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#200", + "hostname": "node-us-215.protonvpn.net", + "wgpubkey": "14J0jdfHng+jEykBwTKG427r7CTLwWhPEXRtbfp071s=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#236", + "hostname": "node-us-227.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#236", + "hostname": "node-us-227.protonvpn.net", + "wgpubkey": "D7+AG9clQ1F/6uaY8apeoKDOKAD7p6tf65dFIVLGsHg=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#259", + "hostname": "node-us-228.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.175" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#259", + "hostname": "node-us-228.protonvpn.net", + "wgpubkey": "OBxUYm9fx8N3Tf/tcvn3IBhdOyaakd91Osi4zF8XgE0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.224.175" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#282", + "hostname": "node-us-182.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.51.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#282", + "hostname": "node-us-182.protonvpn.net", + "wgpubkey": "9JeNQPhigBfmRY0aAtRuqBklf8HVhTAyXZcv0I5vZBg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.51.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#299", + "hostname": "node-us-183.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.87.214.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#299", + "hostname": "node-us-183.protonvpn.net", + "wgpubkey": "d2QJ4qxbpm7HSiEbssGku1X+UNnZBcEWcApgS0xgI34=", + "stream": true, + "port_forward": true, + "ips": [ + "45.87.214.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#316", + "hostname": "node-us-185.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.114" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#316", + "hostname": "node-us-185.protonvpn.net", + "wgpubkey": "+RKh5rGk9iaI9TwKqCO2iAtDTG6b+NBgwJijaOALNlQ=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.114" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#53", + "hostname": "node-us-176.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#53", + "hostname": "node-us-176.protonvpn.net", + "wgpubkey": "BoAWTY6Bzcy6owGEkjeMEjENa/o/CZbkO6WPSynKdHU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.45.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#65", + "hostname": "node-us-177.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.194" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#65", + "hostname": "node-us-177.protonvpn.net", + "wgpubkey": "2nZkJr74LHqiPIAjDmdo1EJrN7DJLVq7N92RNYv7cSk=", + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.194" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#77", + "hostname": "node-us-178.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#77", + "hostname": "node-us-178.protonvpn.net", + "wgpubkey": "sr/YwNGtQzjEi4eJ5fwswkFxuh2Au6NKN5MzUiWV9FY=", + "stream": true, + "port_forward": true, + "ips": [ + "37.221.112.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#89", + "hostname": "node-us-179.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Miami", + "server_name": "US-FL#89", + "hostname": "node-us-179.protonvpn.net", + "wgpubkey": "wm+NrCihayTi0RbmaW4CWZI3h9KOU/i7320UyTY4zFc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.183.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#65", + "hostname": "node-us-262.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.237" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#65", + "hostname": "node-us-262.protonvpn.net", + "wgpubkey": "7IP+uEN0mJ2xkrq5pVz2SFNvZ1OeyhBgjXNRhLmKfHQ=", + "free": true, + "ips": [ + "149.102.226.237" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#69", + "hostname": "node-us-263.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.238" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#69", + "hostname": "node-us-263.protonvpn.net", + "wgpubkey": "ljr0KidoBwgj8ZRs4DOCl7GbXMOwGeqJeYUHV9bt20o=", + "free": true, + "ips": [ + "149.102.226.238" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#73", + "hostname": "node-us-264.protonvpn.net", + "tcp": true, + "udp": true, + "free": true, + "ips": [ + "149.102.226.239" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-FREE#73", + "hostname": "node-us-264.protonvpn.net", + "wgpubkey": "c+9CyG97uDKPSgCtd/sjvFoXTnswiHsj3kd2CpdXIUc=", + "free": true, + "ips": [ + "149.102.226.239" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#166", + "hostname": "node-us-187.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#166", + "hostname": "node-us-187.protonvpn.net", + "wgpubkey": "siQYYgaXYcbz1W0fR0Tpq6ExLLggu/xCOdDOfitDexM=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#178", + "hostname": "node-us-188.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#178", + "hostname": "node-us-188.protonvpn.net", + "wgpubkey": "dnLzpdaCyBlnnYS9iBwhPXoTXBQQNStT6/Tx6CytOmg=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#190", + "hostname": "node-us-189.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.146" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#190", + "hostname": "node-us-189.protonvpn.net", + "wgpubkey": "9HAY7JVBdohkIj1ViPJW2huz5roF89F1/5/uqrg2gh4=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.146" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#286", + "hostname": "node-us-218.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.115.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#286", + "hostname": "node-us-218.protonvpn.net", + "wgpubkey": "KT6DATq2AiepA8r5YzARCvcczbZoL+Au+rG04JvxBjI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.115.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#298", + "hostname": "node-us-221.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "104.234.212.26" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#298", + "hostname": "node-us-221.protonvpn.net", + "wgpubkey": "L/lAxBloXzDXNrWw1xtJgEMJWPct1reKQPkRsw/7Knw=", + "stream": true, + "port_forward": true, + "ips": [ + "104.234.212.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#322", + "hostname": "node-us-237.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "217.138.198.246" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#322", + "hostname": "node-us-237.protonvpn.net", + "wgpubkey": "E4gRP4uJvUMxTXVfTDLtkAmfAV7Jyl1uYltU8tlvb2Y=", + "stream": true, + "port_forward": true, + "ips": [ + "217.138.198.246" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#422", + "hostname": "node-us-160.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "143.244.44.186" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#422", + "hostname": "node-us-160.protonvpn.net", + "wgpubkey": "XlC8xkM0TQpsm/9c5j5u5S7wrI0VliBvXBiKji3UQzU=", + "stream": true, + "port_forward": true, + "ips": [ + "143.244.44.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#435", + "hostname": "node-us-201.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.193" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#435", + "hostname": "node-us-201.protonvpn.net", + "wgpubkey": "sn2DwUHXSLYbub6dVFKRhE2QHcji5I8TMSotCTlGFw0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.193" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#450", + "hostname": "node-us-202.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.225" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#450", + "hostname": "node-us-202.protonvpn.net", + "wgpubkey": "umCaW98SBPbNjApBKCo0ReYhT2AJ0QfV/ZlyWnWmVUk=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.226.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#465", + "hostname": "node-us-134.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "89.187.178.173" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#465", + "hostname": "node-us-134.protonvpn.net", + "wgpubkey": "/KM6QESKJRK7GiMqWstUl1Yn9pzc6DPzqCtNauxYgn8=", + "stream": true, + "port_forward": true, + "ips": [ + "89.187.178.173" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#482", + "hostname": "node-us-118.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.162" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#482", + "hostname": "node-us-118.protonvpn.net", + "wgpubkey": "LMkFEUVVqWl1di39x+CloLdXXH/X9P/vKXeVXohvqlc=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.162" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#499", + "hostname": "node-us-190.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#499", + "hostname": "node-us-190.protonvpn.net", + "wgpubkey": "Daer24dSnQMoGm/LIDjPbKgrlUjF0ldjiDA9dfe+EXk=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#516", + "hostname": "node-us-144.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.130" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#516", + "hostname": "node-us-144.protonvpn.net", + "wgpubkey": "8NeySGpnCMtwtgwVARpoCNonu9qxQxrE6hFztMcMDkA=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.72.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#533", + "hostname": "node-us-192.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.98" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#533", + "hostname": "node-us-192.protonvpn.net", + "wgpubkey": "Q+F33KqUr9obW0a7u9ZwNRrQlcwcoNdStZfTs321CTY=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#550", + "hostname": "node-us-216.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.226" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#550", + "hostname": "node-us-216.protonvpn.net", + "wgpubkey": "PXtm4zWbqySH2QGaI/5ivRVGXPwztXfzMbtoT9Ad0jE=", + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#567", + "hostname": "node-us-194.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#567", + "hostname": "node-us-194.protonvpn.net", + "wgpubkey": "w2G3XM+TbpmahFFOeGqXJtWdaYzKO7rBmNRQ/+T8JCU=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#584", + "hostname": "node-us-195.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#584", + "hostname": "node-us-195.protonvpn.net", + "wgpubkey": "qnjcsT0wrNHUtNm1uloWf9YbJij1Nr8O4UHtM9uqkmI=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.50" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#601", + "hostname": "node-us-67.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.148.18.82" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#601", + "hostname": "node-us-67.protonvpn.net", + "wgpubkey": "R8Of+lrl8DgOQmO6kcjlX7SchP4ncvbY90MB7ZUNmD8=", + "stream": true, + "port_forward": true, + "ips": [ + "193.148.18.82" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#614", + "hostname": "node-us-197.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.18" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#614", + "hostname": "node-us-197.protonvpn.net", + "wgpubkey": "Orm/o/kOBbNLCvxrwdQZHswlHRyz4O8HSaCHJ7YF0Rs=", + "stream": true, + "port_forward": true, + "ips": [ + "146.70.202.18" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "server_name": "US-NY#631", + "hostname": "node-us-217.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "New York", + "server_name": "US-NY#631", + "hostname": "node-us-217.protonvpn.net", + "wgpubkey": "iJIw5umGxtrrSIRxVrSF1Ofu5IDphpBpAJOvsrG4FiI=", + "stream": true, + "port_forward": true, + "ips": [ + "31.13.189.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#100", + "hostname": "node-us-126.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#100", + "hostname": "node-us-126.protonvpn.net", + "wgpubkey": "qDJgY2K+GtC/geqxLN2ZO61LHlwENsMpapC1eGF21mM=", + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#105", + "hostname": "node-us-260.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#105", + "hostname": "node-us-260.protonvpn.net", + "wgpubkey": "sHJbg8AIxsb5TFe8xIWPxo8VXuAMk9+HcdY0hHvGNFg=", + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#127", + "hostname": "node-us-261.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.25" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#127", + "hostname": "node-us-261.protonvpn.net", + "wgpubkey": "YU5vcydVJvB83c6VBS26WWq9spE+9Md9gBn7tesSSGQ=", + "stream": true, + "port_forward": true, + "ips": [ + "72.14.148.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#150", + "hostname": "node-us-208.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.178" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Phoenix", + "server_name": "US-AZ#150", + "hostname": "node-us-208.protonvpn.net", + "wgpubkey": "nSo/1FlBPdm/hotIKPb2dFcY5AwZPQPBcbvLdcL6Zw4=", + "stream": true, + "port_forward": true, + "ips": [ + "193.37.254.178" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#38", + "hostname": "node-us-158.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "107.181.245.74" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#38", + "hostname": "node-us-158.protonvpn.net", + "wgpubkey": "fM5t18SNQhPw5zXr/6crLPu9KseB3/BeDF+McXoclmg=", + "stream": true, + "ips": [ + "107.181.245.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#41", + "hostname": "node-us-226.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "74.63.204.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Salt Lake City", + "server_name": "US-UT#41", + "hostname": "node-us-226.protonvpn.net", + "wgpubkey": "fDSDNxB7yfHbaemo7cAFMWBsEm31bVAAradL4hbBEG0=", + "stream": true, + "ips": [ + "74.63.204.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#1", + "hostname": "node-us-200.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.129" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#1", + "hostname": "node-us-200.protonvpn.net", + "wgpubkey": "DzAE6lLRbKUNuxFkuN2gI+sokPARCKYw/E1DyaXQWHc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.129" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#409", + "hostname": "node-us-250.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.153" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#409", + "hostname": "node-us-250.protonvpn.net", + "wgpubkey": "WGwF8za3sD1rc946cBJZe1SEwJB2NzAGMTDx1iGIrQ0=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.153" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#435", + "hostname": "node-us-251.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.154" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#435", + "hostname": "node-us-251.protonvpn.net", + "wgpubkey": "0abDpTVm9oXMpPL+8W495UD3BCawGKEstNO784GUaj4=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.154" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#461", + "hostname": "node-us-252.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.155" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#461", + "hostname": "node-us-252.protonvpn.net", + "wgpubkey": "84bwJLVJI1YzH99wbU1t6fouJuZGxcMsfKQpBz7LDxI=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.155" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#513", + "hostname": "node-us-255.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.22.84.89" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#513", + "hostname": "node-us-255.protonvpn.net", + "wgpubkey": "Yg7VdAicq2Rj/FNl7dGvm4jB2XlmrzwBj6/eosX5CiY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.22.84.89" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#539", + "hostname": "node-us-199.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.141" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#539", + "hostname": "node-us-199.protonvpn.net", + "wgpubkey": "ADxD28Omx0nDn+PDjlRaZ4DjvRe19Urjz4tJCFtmNXc=", + "stream": true, + "port_forward": true, + "ips": [ + "149.36.48.141" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#77", + "hostname": "node-us-120.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.54.97" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "San Jose", + "server_name": "US-CA#77", + "hostname": "node-us-120.protonvpn.net", + "wgpubkey": "0lVdORRneTkqH7Hh12Z5hnATz+kXmkiSwz8YHHx4Ywg=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.54.97" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#100", + "hostname": "node-us-246.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#100", + "hostname": "node-us-246.protonvpn.net", + "wgpubkey": "mdgZ6wT7AXGznoYqxERZexx9aPEd/FhQ+P6fdXCBuVQ=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#109", + "hostname": "node-us-123.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#109", + "hostname": "node-us-123.protonvpn.net", + "wgpubkey": "mn8WlkJqY66j17ZbwN2DB0Nj74zG/DicuRQZtxtQsTM=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#126", + "hostname": "node-us-124.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#126", + "hostname": "node-us-124.protonvpn.net", + "wgpubkey": "DmLmc8enWKMicpxkxy2md1derQApeMJibtt2UZnCxG4=", + "stream": true, + "port_forward": true, + "ips": [ + "156.146.51.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#143", + "hostname": "node-us-223.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.65" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#143", + "hostname": "node-us-223.protonvpn.net", + "wgpubkey": "MkUR6S5ObCzMx0ZToukggFecdUEjEM2GU/ZhLoz2ICY=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.65" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#57", + "hostname": "node-us-245.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.77" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Seattle", + "server_name": "US-WA#57", + "hostname": "node-us-245.protonvpn.net", + "wgpubkey": "utqNH4P+C0fA1wTgIUaIfhm1b7ai0iEGvXyiw4KC3Fs=", + "stream": true, + "port_forward": true, + "ips": [ + "149.102.254.77" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#100", + "hostname": "node-us-258.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.56" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#100", + "hostname": "node-us-258.protonvpn.net", + "wgpubkey": "rPDCc4RoglCJ/M4BmFgr2eA8Ob7oc9qTTWG/79rApAI=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#101", + "hostname": "node-us-259.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.83" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#101", + "hostname": "node-us-259.protonvpn.net", + "wgpubkey": "KQ0hvdTjgHoRLCzpC/Mf7vDD+PZr8TqW0faHCE4yDlQ=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.83" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#13", + "hostname": "node-us-230.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "205.142.240.210" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#13", + "hostname": "node-us-230.protonvpn.net", + "wgpubkey": "/HvEnSU5JaswyBC/YFs74eGLXqLdzsaFeVT8SD1KYAc=", + "stream": true, + "ips": [ + "205.142.240.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#25", + "hostname": "node-us-256.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.2" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#25", + "hostname": "node-us-256.protonvpn.net", + "wgpubkey": "gU9CLkRxLUarj9+MtswvE/2Tvclx32w5aoSYeY3eEX8=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.2" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#50", + "hostname": "node-us-257.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.29" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#50", + "hostname": "node-us-257.protonvpn.net", + "wgpubkey": "6Ct2qC5B3ayxBtkV2y6ScFzYcLD/6fLmtMmHPCJTAVU=", + "stream": true, + "port_forward": true, + "ips": [ + "163.5.171.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#9", + "hostname": "node-us-31.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "ips": [ + "69.10.63.242" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Secaucus", + "server_name": "US-NJ#9", + "hostname": "node-us-31.protonvpn.net", + "wgpubkey": "kiVlibDLh5yZQOJ6Gaw1MB9wt4YHmKpfXZrAc0No9Gc=", + "stream": true, + "ips": [ + "69.10.63.242" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Washington", + "server_name": "US-DC#26", + "hostname": "node-us-127.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "185.247.68.50" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "city": "Washington", + "server_name": "US-DC#26", + "hostname": "node-us-127.protonvpn.net", + "wgpubkey": "3Lz5VpqnS7wfnOWVYFNCFHl+JuuanJ/hB2TqOKQZxVI=", + "stream": true, + "port_forward": true, + "ips": [ + "185.247.68.50" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "city": "Tashkent", + "server_name": "UZ#25", + "hostname": "uz-02.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.204" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "city": "Tashkent", + "server_name": "UZ#25", + "hostname": "uz-02.protonvpn.net", + "wgpubkey": "kzVmk7etgCK1BeRoschsiUqEGVbMTqmivoDt/5CZDnw=", + "stream": true, + "port_forward": true, + "ips": [ + "79.135.105.204" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "city": "Caracas", + "server_name": "VE#1", + "hostname": "ve-01.protonvpn.net", + "tcp": true, + "udp": true, + "stream": true, + "port_forward": true, + "ips": [ + "45.83.145.1" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "city": "Caracas", + "server_name": "VE#1", + "hostname": "ve-01.protonvpn.net", + "wgpubkey": "Wrjq2Q9OZY4fZz+dnjd0g2zxio4fCKTHaWOX2QqQNFY=", + "stream": true, + "port_forward": true, + "ips": [ + "45.83.145.1" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "SE-VN#1", + "hostname": "node-vn-01.protonvpn.net", + "tcp": true, + "udp": true, + "secure_core": true, + "ips": [ + "185.159.156.85" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "SE-VN#1", + "hostname": "node-vn-01.protonvpn.net", + "wgpubkey": "NfKOMtk2fuDycbQXv36yk5mfdgDA8/8SN6amCdFrKxQ=", + "secure_core": true, + "ips": [ + "185.159.156.85" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "VN#1", + "hostname": "node-vn-01.protonvpn.net", + "tcp": true, + "udp": true, + "port_forward": true, + "ips": [ + "188.214.152.226" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "city": "Hanoi", + "server_name": "VN#1", + "hostname": "node-vn-01.protonvpn.net", + "wgpubkey": "NfKOMtk2fuDycbQXv36yk5mfdgDA8/8SN6amCdFrKxQ=", + "port_forward": true, + "ips": [ + "188.214.152.226" + ] + } + ] + }, + "purevpn": { + "version": 3, + "timestamp": 1702566944, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "al2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "31.171.155.198", + "31.171.155.199" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "al2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "31.171.155.198", + "31.171.155.199" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "91.242.215.105", + "118.127.59.226", + "223.252.60.100", + "223.252.60.202" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "ausd2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "27.50.76.167", + "91.242.215.105", + "91.242.215.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "ausd2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "27.50.76.169", + "91.242.215.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "au2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "118.127.59.226", + "118.127.62.3", + "172.94.124.11", + "223.252.60.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "aume2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "27.50.74.4", + "27.50.74.6", + "118.127.59.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "aume2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "27.50.74.4", + "118.127.59.226" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Victoria", + "city": "Melbourne", + "hostname": "nz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "203.209.219.39", + "203.209.219.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Western Australia", + "city": "Perth", + "hostname": "au2-pe-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "43.250.205.51" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Western Australia", + "city": "Perth", + "hostname": "au2-pe-udp.ptoserver.com", + "udp": true, + "ips": [ + "43.250.205.50", + "43.250.205.53", + "43.250.205.54", + "43.250.205.61", + "172.94.123.4" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Vienna", + "city": "Vienna", + "hostname": "at2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.40.52.198" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Vienna", + "city": "Vienna", + "hostname": "at2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.40.52.197", + "149.40.52.198" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Brussels Capital", + "city": "Brussels", + "hostname": "be2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "154.47.27.70" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Brussels Capital", + "city": "Brussels", + "hostname": "be2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "154.47.27.96" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.251.6" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Sofia-Capital", + "city": "Sofia", + "hostname": "bg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.94.192.134", + "185.94.192.135" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Sofia-Capital", + "city": "Sofia", + "hostname": "bg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.94.192.135", + "185.94.192.136" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.193.135.42", + "104.193.135.43", + "198.144.155.70" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "ca2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.9", + "104.193.135.10", + "104.193.135.12", + "149.34.249.69", + "149.34.249.78" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "caq2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.10", + "104.193.135.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "cav2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.193.135.9", + "104.193.135.10", + "104.193.135.42", + "104.193.135.43" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "British Columbia", + "city": "Vancouver", + "hostname": "cav2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.193.135.11", + "104.193.135.12" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Ontario", + "city": "Toronto", + "hostname": "caq2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "198.144.155.69", + "198.144.155.70" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "San José", + "city": "San Pedro", + "hostname": "cr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "143.202.163.102", + "143.202.163.103" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "San José", + "city": "San Pedro", + "hostname": "cr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "143.202.163.103", + "172.111.170.6" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Nicosia", + "city": "Nicosia", + "hostname": "cy2-auto-tcp.ptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "185.191.206.199" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Prague", + "city": "Prague", + "hostname": "cz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "87.249.135.101", + "87.249.135.102" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Prague", + "city": "Prague", + "hostname": "cz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "87.249.135.102" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Capital Region", + "city": "Copenhagen", + "hostname": "dk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.50.217.132" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Harjumaa", + "city": "Tallinn", + "hostname": "ee2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.174.159.230", + "185.174.159.247" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Harjumaa", + "city": "Tallinn", + "hostname": "ee2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.174.159.246", + "185.174.159.247" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Uusimaa", + "city": "Helsinki", + "hostname": "fi2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "85.208.3.215" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Uusimaa", + "city": "Helsinki", + "hostname": "fi2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "85.208.3.197", + "85.208.3.198", + "85.208.3.215", + "85.208.3.216" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Île-de-France", + "city": "Paris", + "hostname": "fr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "37.19.217.86", + "149.34.245.196", + "149.34.245.197" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Île-de-France", + "city": "Paris", + "hostname": "fr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "37.19.217.86", + "149.34.245.197" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "T'bilisi", + "city": "Tbilisi", + "hostname": "ge2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.138.44.162", + "188.93.88.206" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "T'bilisi", + "city": "Tbilisi", + "hostname": "ge2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.138.44.162", + "188.93.88.206" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "af2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.208.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "af2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.208.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ao2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.84.4", + "172.94.84.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ao2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.84.4", + "172.94.84.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bb2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.228.4", + "172.111.228.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bb2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.228.4", + "172.111.228.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bd2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.46.140.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bd2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.46.140.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bh2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.226.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bh2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.226.4" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bm2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.229.4", + "172.111.229.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bm2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.229.4", + "172.111.229.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bs2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.20.6" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "bs2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.20.4", + "172.94.20.6", + "172.94.20.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "de2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.23.71", + "149.88.19.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "de2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.34.252.48", + "149.88.19.5" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "dz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.243.6", + "172.111.243.19", + "172.111.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "dz2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.243.19", + "172.111.243.21" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ru2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.185.37" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Hesse", + "city": "Frankfurt am Main", + "hostname": "ru2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.185.6", + "172.111.185.21", + "172.111.185.22", + "172.111.185.37" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Attica", + "city": "Athens", + "hostname": "gr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "194.150.167.180", + "194.150.167.181" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Central and Western", + "city": "Hong Kong", + "hostname": "hk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.109.103.85" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Central and Western", + "city": "Hong Kong", + "hostname": "hk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.109.103.85", + "103.109.103.87" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "hu2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.120.70" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Budapest", + "city": "Budapest", + "hostname": "hu2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.120.71" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Jakarta", + "city": "Jakarta", + "hostname": "id2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.60.9.132", + "103.60.9.134" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Jakarta", + "city": "Jakarta", + "hostname": "id2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.60.9.132", + "103.60.9.140", + "103.60.9.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.130.135", + "146.70.130.152" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.130.134", + "146.70.130.135", + "146.70.130.151" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Lombardy", + "city": "Milan", + "hostname": "it2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.50.215.71" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Lombardy", + "city": "Milan", + "hostname": "it2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.50.215.70" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Tokyo", + "city": "Tokyo", + "hostname": "jp2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.250.255.9", + "149.50.210.151" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Nairobi Area", + "city": "Nairobi", + "hostname": "ke2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "62.12.116.86", + "62.12.116.87" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Nairobi Area", + "city": "Nairobi", + "hostname": "ke2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "62.12.116.87" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "region": "Seoul", + "city": "Seoul", + "hostname": "kr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "108.181.50.166", + "108.181.50.182", + "108.181.50.183", + "108.181.52.151" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Riga", + "city": "Riga", + "hostname": "lv2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "213.21.209.36", + "213.21.209.37", + "213.21.215.165" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Riga", + "city": "Riga", + "hostname": "lv2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "213.21.209.37" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Siauliai", + "city": "Šiauliai", + "hostname": "lt2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.199.169.37", + "5.199.169.47", + "5.199.169.70", + "185.150.118.37" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Siauliai", + "city": "Šiauliai", + "hostname": "lt2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.199.169.5", + "5.199.169.47", + "5.199.169.70", + "5.199.169.71" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Querétaro", + "city": "Santiago de Querétaro", + "hostname": "mx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "69.67.148.131", + "69.67.148.154" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Querétaro", + "city": "Santiago de Querétaro", + "hostname": "mx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "69.67.148.132", + "69.67.148.155" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Chișinău Municipality", + "city": "Chisinau", + "hostname": "md2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "178.17.169.228", + "178.17.169.229", + "178.17.169.241" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Chișinău Municipality", + "city": "Chisinau", + "hostname": "md2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "178.17.169.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "eg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.74.55.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "eg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.74.55.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "is2-auto-tcp.ptoserver.com", + "tcp": true, + "udp": true, + "ips": [ + "192.253.250.132", + "192.253.250.133" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mc2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "206.123.130.4", + "206.123.130.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "mc2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "206.123.130.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ng2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.128.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ng2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.128.228", + "172.111.128.229" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "nl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "37.46.122.74", + "185.2.30.215", + "195.181.172.163", + "195.181.172.164" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "nl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.73.203", + "37.46.122.71", + "37.46.122.72", + "149.34.244.230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "om2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "om2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.94.5" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pa2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.94.87.6", + "172.94.87.67", + "172.94.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pa2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.94.87.4", + "172.94.87.6", + "172.94.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.250.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "pr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.250.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ua2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "188.72.101.8", + "188.72.101.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "ua2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "188.72.101.8", + "188.72.101.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "104.243.253.4", + "104.243.253.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "104.243.253.4", + "104.243.253.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vn2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.197.6", + "172.111.197.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "North Holland", + "city": "Amsterdam", + "hostname": "vn2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.197.6", + "172.111.197.68" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Auckland", + "city": "Auckland", + "hostname": "nz2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "203.209.219.5", + "203.209.219.40" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Oslo", + "city": "Oslo", + "hostname": "no2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.170.38" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Oslo", + "city": "Oslo", + "hostname": "no2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.170.39", + "146.70.170.40" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Mazovia", + "city": "Warsaw", + "hostname": "pl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.244.37", + "149.102.244.38" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "lu2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "185.153.151.4", + "185.153.151.6" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "lu2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "185.153.151.6" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Lisbon", + "city": "Lisbon", + "hostname": "pt2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.88.20.134", + "149.88.20.135" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "București", + "city": "Bucharest", + "hostname": "ro2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.239.70", + "149.102.239.71" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "București", + "city": "Bucharest", + "hostname": "ro2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.239.70", + "149.102.239.71" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Central Serbia", + "city": "Belgrade", + "hostname": "rs2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.111.134", + "146.70.111.135" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Central Serbia", + "city": "Belgrade", + "hostname": "rs2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.111.134", + "146.70.111.135" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "bn2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.74.10.7", + "45.74.10.21" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "in2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.60.100", + "149.34.253.68", + "149.34.253.70" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "in2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.60.99", + "138.199.60.100" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "ph2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.175.6", + "172.111.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "ph2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.175.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.50.211.55", + "149.50.211.68", + "149.50.211.69" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.67.198", + "146.70.67.199" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "sk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.34.197", + "138.199.34.198" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "sk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.34.197" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Gauteng", + "city": "Johannesburg", + "hostname": "za2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "154.47.30.166", + "154.47.30.167" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Madrid", + "city": "Madrid", + "hostname": "es2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.213.7" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Stockholm", + "hostname": "se2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "169.150.208.164" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Stockholm", + "city": "Stockholm", + "hostname": "se2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "169.150.208.135", + "169.150.208.137" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Zurich", + "city": "Zürich", + "hostname": "ch2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.102.238.133", + "149.102.238.135" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Zurich", + "city": "Zürich", + "hostname": "ch2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.102.238.133", + "149.102.238.134", + "149.102.238.135" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "103.59.108.214", + "103.59.109.55", + "103.59.109.56" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "103.59.108.214", + "103.59.109.21", + "103.59.109.56" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Istanbul", + "city": "Istanbul", + "hostname": "tr2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.136.155.5", + "45.136.155.6" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Istanbul", + "city": "Istanbul", + "hostname": "tr2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.136.155.5", + "45.136.155.6", + "45.136.155.7", + "45.136.155.10", + "45.136.155.12" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Dubai", + "city": "Dubai", + "hostname": "ae2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.155.8" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Dubai", + "city": "Dubai", + "hostname": "ae2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.155.7", + "146.70.155.10", + "146.70.155.11" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "uk2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.112.102" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "ukl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.106.5", + "5.254.112.69", + "5.254.112.103", + "138.199.31.4", + "138.199.31.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "ukl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.106.6", + "5.254.112.103", + "138.199.31.14" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "uk2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "ukm2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Manchester", + "hostname": "ukm2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "91.90.121.151", + "91.90.121.152" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usca2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.218.71", + "146.70.218.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usca2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.35.38", + "138.199.35.39" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usphx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "217.148.140.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "Los Angeles", + "hostname": "usphx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "217.148.140.134", + "217.148.140.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "San Jose", + "hostname": "ussf2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "93.115.200.86", + "93.115.200.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "California", + "city": "San Jose", + "hostname": "ussf2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "93.115.200.86" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Florida", + "city": "Miami", + "hostname": "usfl2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.142.68", + "146.70.228.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Florida", + "city": "Miami", + "hostname": "usfl2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.142.69", + "146.70.228.87" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us-global-tcp2.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us-global-udp2.ptoserver.com", + "udp": true, + "ips": [ + "45.134.140.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "usga2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "usga2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "45.134.140.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Illinois", + "city": "Chicago", + "hostname": "usil2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "87.249.134.174", + "149.88.25.196", + "149.88.25.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Illinois", + "city": "Chicago", + "hostname": "usil2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "87.249.134.175", + "149.88.25.196" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usnj2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "146.70.212.71", + "146.70.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usnj2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.212.71", + "146.70.212.72" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Secaucus", + "hostname": "usny2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "146.70.215.22", + "149.40.49.133" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New Jersey", + "city": "Weehawken", + "hostname": "usny2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "143.244.44.133", + "149.40.49.133", + "149.40.49.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "ar2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.152.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "ar2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.152.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "aw2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "aw2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.183.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "bo2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "172.111.241.133", + "172.111.241.134" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "bo2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "172.111.241.4", + "172.111.241.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Texas", + "city": "Houston", + "hostname": "ustx2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "149.40.58.197", + "149.40.58.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Texas", + "city": "Houston", + "hostname": "ustx2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "149.40.58.197", + "149.40.58.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Utah", + "city": "Riverton", + "hostname": "usut2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "67.213.219.216" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Utah", + "city": "Riverton", + "hostname": "usut2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "67.213.219.186", + "67.213.219.190" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "usva2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.108.198" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Ashburn", + "hostname": "usva2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.108.197", + "5.254.108.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Herndon", + "hostname": "uswdc2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "5.254.43.229", + "5.254.43.230" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Virginia", + "city": "Herndon", + "hostname": "uswdc2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "5.254.40.39", + "5.254.43.230", + "5.254.43.231", + "5.254.43.232" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Washington", + "city": "Seattle", + "hostname": "ussa2-auto-tcp.ptoserver.com", + "tcp": true, + "ips": [ + "138.199.43.6", + "138.199.43.23", + "138.199.43.24" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Washington", + "city": "Seattle", + "hostname": "ussa2-auto-udp.ptoserver.com", + "udp": true, + "ips": [ + "138.199.43.6", + "138.199.43.7", + "138.199.43.23" + ] + } + ] + }, + "slickvpn": { + "version": 1, + "timestamp": 1679747412, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Brisbane", + "hostname": "gw1.bne1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "43.245.160.142" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Melbourne", + "hostname": "gw2.mel1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "113.52.144.50" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Perth", + "hostname": "gw3.per1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.231.89.206" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw1.syd1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "163.47.126.10" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw1.syd2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.173.66" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Oceania", + "city": "Sydney", + "hostname": "gw2.syd2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.168.12" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Graz", + "hostname": "gw1.grz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.255.212.60" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Ostend", + "hostname": "gw1.ost2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.249.22" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Ostend", + "hostname": "gw2.ost2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.249.81" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "South America", + "city": "Sao Paulo", + "hostname": "gw1.gru2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "177.54.158.153" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw1.yul1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "205.204.85.246" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw1.yul2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "173.209.62.178" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Montreal", + "hostname": "gw2.yul2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "67.215.7.10" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Toronto", + "hostname": "gw1.yyz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.14.142" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Toronto", + "hostname": "gw2.yyz1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.9.120" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "North America", + "city": "Vancouver", + "hostname": "gw1.yvr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.111.132.46" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "South America", + "city": "Vina del Mar", + "hostname": "gw1.kna1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.52.26" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw1.prg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.36.36.51" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw1.prg2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.235.207.24" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "gw2.prg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.36.36.98" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "gw1.cph1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "93.90.116.25" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Lille", + "hostname": "gw1.lil1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.135.81.27" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "gw1.cdg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.67.168.241" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw1.fra1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.159.184" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw1.fra2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.123.80.62" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "hostname": "gw2.fra1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.175.126" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Nürnberg", + "hostname": "gw1.nue1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "31.7.187.233" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gw1.ath1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.226.65.178" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Thessaloniki", + "hostname": "gw1.skg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.166.19" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia", + "city": "Hong Kong", + "hostname": "gw1.hkg2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "158.255.208.240" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "gw1.bud1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.219.239.203" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "gw1.rkv1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.49.172" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia", + "city": "Bangalore", + "hostname": "gw1.blr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.59.42.121" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia", + "city": "Mumbai", + "hostname": "gw1.bom1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.63.74" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia", + "city": "Jakarta", + "hostname": "gw1.cgk1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "119.235.252.142" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "gw1.dub1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "92.51.242.25" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Asia", + "city": "Tel Aviv Yafo", + "hostname": "gw1.tlv2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.182.144.37" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw1.mxp1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.247.49.148" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw1.mxp2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.154.157.221" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "gw2.mxp2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.154.157.112" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia", + "city": "Tokyo", + "hostname": "gw1.nrt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.105.235.210" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia", + "city": "Kuala Lumpur", + "hostname": "gw1.kul1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "117.53.155.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "81.4.102.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.80.222.63" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "151.236.14.29" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw1.ams4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.34.136.13" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "gw2.ams3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "151.236.14.57" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Torp", + "hostname": "gw1.trf1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.125.169.11" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "North America", + "city": "Panama City", + "hostname": "gw2.pty1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "181.174.164.64" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "gw1.waw1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.7.220.28" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "gw1.buh2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.100.116" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "Moscow", + "hostname": "gw1.svo1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "46.38.62.29" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "Moscow", + "hostname": "gw1.svo2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.56.34" + ] + }, + { + "vpn": "openvpn", + "country": "Russian Federation", + "region": "Europe", + "city": "St Petersburg", + "hostname": "gw1.led1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.54.28" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "gw1.beg1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.71.126.18" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw1.sin1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.195.193.181" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw1.sin2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.23.150" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia", + "city": "Singapore", + "hostname": "gw2.sin2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.55.80" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "gw1.lju1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.71.244.13" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "gw2.bcn2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.134.119.168" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "gw1.mad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.53.46" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Halmstad", + "hostname": "gw1.had2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.74.11.69" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "gw1.arn1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.73.210.224" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "gw1.arn3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "159.253.26.130" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "gw1.zrh1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.209.51.203" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia", + "city": "Bangkok", + "hostname": "gw1.bkk1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "124.109.1.191" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kiev", + "hostname": "gw1.iev1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.107.177.226" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Coventry", + "hostname": "gw1.cvt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "77.74.195.22" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Eastleigh near Southampton", + "hostname": "gw1.sou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.143.255.174" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Eastleigh near Southampton", + "hostname": "gw3.sou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "78.143.255.175" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Isle Of Man", + "hostname": "gw1.iom1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.55.43" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw1.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.123.122.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw1.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "176.58.120.179" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw2.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.79.164.214" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw3.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.123.117.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw3.lhr2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "139.162.220.234" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "gw4.lhr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.185.17.165" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "gw1.man2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.109.246.6" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Rochester", + "hostname": "gw1.rcs1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.227.223.185" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw1.atl1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "216.119.148.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw1.atl3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.239.17.108" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Atlanta", + "hostname": "gw2.atl3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.79.221.197" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Boston", + "hostname": "gw1.bos1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.34.83.144" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Buffalo", + "hostname": "gw1.buf1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.94.191.122" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Charlotte", + "hostname": "gw2.clt1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.255.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw1.ord3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "64.187.232.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw1.ord4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.217.136.90" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Chicago", + "hostname": "gw2.ord1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "174.127.124.132" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Columbus", + "hostname": "gw1.cmh1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "207.182.134.3" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw1.dfw2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "174.127.75.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw1.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "96.126.113.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw2.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "198.58.117.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dallas", + "hostname": "gw3.dfw3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.237.128.245" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Denver", + "hostname": "gw1.den1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "23.237.26.56" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Dubuque", + "hostname": "gw1.dbq1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.102.44.15" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Houston", + "hostname": "gw2.hou1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "162.218.229.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Kansas City", + "hostname": "gw1.mci2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.187.101.186" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Las Vegas", + "hostname": "gw1.las1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.143.10.8" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw1.lax1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "172.245.220.35" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw1.lax2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.247.220.10" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Los Angeles", + "hostname": "gw3.lax3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.160.101.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Miami", + "hostname": "gw2.mia3.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.171.19.130" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Miami", + "hostname": "gw2.mia4.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.127.62.98" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Morganton", + "hostname": "gw1.mrn1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.241.190.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "New York", + "hostname": "gw1.lga1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.217.128.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "New York", + "hostname": "gw1.lga2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "206.221.178.210" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw1.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.33.81.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw2.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "162.216.19.236" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Newark", + "hostname": "gw3.ewr1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "50.116.54.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw1.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.81.128.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw2.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.79.88.135" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Palo Alto", + "hostname": "gw3.pao1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "173.255.243.165" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Phoenix", + "hostname": "gw1.phx2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "198.15.66.67" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Salt Lake City", + "hostname": "gw2.slc1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "209.95.48.179" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "San Diego", + "hostname": "gw1.san1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "108.161.151.123" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "San Jose", + "hostname": "gw1.sjc2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "199.195.192.104" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Seattle", + "hostname": "gw1.sea1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "107.181.191.68" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Seattle", + "hostname": "gw1.sea2.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "167.88.112.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "St Louis", + "hostname": "gw1.stl1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "209.135.132.136" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Tampa", + "hostname": "gw1.tpa1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "104.156.54.182" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw1.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.218" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw2.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "North America", + "city": "Washington", + "hostname": "gw3.iad1.slickvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.151.12.242" + ] + } + ] + }, + "surfshark": { + "version": 4, + "timestamp": 1714383413, + "servers": [ + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "hostname": "al-tia.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Albania", + "ips": [ + "31.171.153.19", + "31.171.153.117", + "31.171.153.131", + "31.171.153.133", + "31.171.153.163", + "31.171.153.165", + "31.171.154.101", + "31.171.155.21", + "31.171.155.35", + "31.171.155.37", + "31.171.155.51", + "31.171.155.69", + "31.171.155.99", + "31.171.155.141" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "hostname": "al-tia.prod.surfshark.com", + "retroloc": "Albania", + "wgpubkey": "l8EOWPyzt/njrb74CADY4VOhns/TbUN6KFTbytHcFQw=", + "ips": [ + "31.171.153.19", + "31.171.153.117", + "31.171.153.131", + "31.171.153.133", + "31.171.153.163", + "31.171.153.165", + "31.171.154.101", + "31.171.155.21", + "31.171.155.35", + "31.171.155.37", + "31.171.155.51", + "31.171.155.69", + "31.171.155.99", + "31.171.155.141" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Middle East and Africa", + "city": "Algiers", + "hostname": "dz-alg.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.144.18", + "62.197.144.20", + "62.197.144.34", + "62.197.144.36" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Middle East and Africa", + "city": "Algiers", + "hostname": "dz-alg.prod.surfshark.com", + "wgpubkey": "KyFFiO8bY3wZGpxJf7aqEH3TrG+Jj4ZfNOyh2oS7ICU=", + "ips": [ + "62.197.144.18", + "62.197.144.20", + "62.197.144.34", + "62.197.144.36" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "hostname": "ad-leu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.152.67", + "62.197.152.69", + "62.197.152.83", + "62.197.152.85", + "62.197.152.99", + "62.197.152.101" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "hostname": "ad-leu.prod.surfshark.com", + "wgpubkey": "alv2SqjLM8Aw5yz/7pGZydfALPfYzgwDquAe5dWX12s=", + "ips": [ + "62.197.152.67", + "62.197.152.69", + "62.197.152.83", + "62.197.152.85", + "62.197.152.99", + "62.197.152.101" + ] + }, + { + "vpn": "openvpn", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "hostname": "ar-bua.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Argentina Buenos Aires", + "ips": [ + "91.206.168.86", + "91.206.168.116", + "91.206.168.162", + "91.206.168.164", + "91.206.168.178", + "91.206.168.196", + "91.206.168.212", + "91.206.168.228" + ] + }, + { + "vpn": "wireguard", + "country": "Argentina", + "region": "The Americas", + "city": "Buenos Aires", + "hostname": "ar-bua.prod.surfshark.com", + "retroloc": "Argentina Buenos Aires", + "wgpubkey": "JeHzAD4ZNXnFw4TdG37pi8bHPy6CQQqeRXK09pMHVyU=", + "ips": [ + "91.206.168.86", + "91.206.168.116", + "91.206.168.162", + "91.206.168.164", + "91.206.168.178", + "91.206.168.196", + "91.206.168.212", + "91.206.168.228" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "hostname": "am-evn.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.120.83", + "92.62.120.85", + "92.62.120.99", + "92.62.120.101", + "92.62.120.115", + "92.62.120.117", + "92.62.120.131", + "92.62.120.133" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "hostname": "am-evn.prod.surfshark.com", + "wgpubkey": "B+aSYrw7JSq7b60uK0nrMQGCiJ48QwiUp/aoRpYX2lU=", + "ips": [ + "92.62.120.83", + "92.62.120.85", + "92.62.120.99", + "92.62.120.101", + "92.62.120.115", + "92.62.120.117", + "92.62.120.131", + "92.62.120.133" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "hostname": "au-adl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Adelaide", + "ips": [ + "103.214.20.181", + "103.214.20.187", + "103.214.20.195", + "103.214.20.197", + "103.214.20.205" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Adelaide", + "hostname": "au-adl.prod.surfshark.com", + "retroloc": "Australia Adelaide", + "wgpubkey": "J7N3UrHc71+LJkn8gsI9Ja8YcpTXT8fV789LLKnIXAY=", + "ips": [ + "103.214.20.181", + "103.214.20.187", + "103.214.20.195", + "103.214.20.197", + "103.214.20.205" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "hostname": "au-bne.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Brisbane", + "ips": [ + "144.48.39.11", + "144.48.39.13", + "144.48.39.83", + "144.48.39.85", + "144.48.39.107", + "144.48.39.109", + "144.48.39.123", + "144.48.39.125", + "144.48.39.131", + "144.48.39.133" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "hostname": "au-bne.prod.surfshark.com", + "retroloc": "Australia Brisbane", + "wgpubkey": "Jo+U6dj+eAf8zdtoMqyYPmrJNVQj82mipH0mEDyfUXo=", + "ips": [ + "144.48.39.11", + "144.48.39.13", + "144.48.39.83", + "144.48.39.85", + "144.48.39.107", + "144.48.39.109", + "144.48.39.123", + "144.48.39.125", + "144.48.39.131", + "144.48.39.133" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "hostname": "au-mel.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Melbourne", + "ips": [ + "103.192.80.133", + "103.192.80.149", + "103.192.80.221", + "103.192.80.243", + "103.192.80.251", + "144.48.38.19" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Melbourne", + "hostname": "au-mel.prod.surfshark.com", + "retroloc": "Australia Melbourne", + "wgpubkey": "yYX9yLjHOSWVAsaujcIVWAxF9wYMmHupG1RtJk+u21o=", + "ips": [ + "103.192.80.133", + "103.192.80.149", + "103.192.80.221", + "103.192.80.243", + "103.192.80.251", + "144.48.38.19" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "hostname": "au-per.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Perth", + "ips": [ + "124.150.139.35", + "124.150.139.37", + "124.150.139.45", + "124.150.139.61" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Perth", + "hostname": "au-per.prod.surfshark.com", + "retroloc": "Australia Perth", + "wgpubkey": "oD0TqnE/ETIpvMO8DZObjdLVRf3jhzG7qV5GtM8/Yik=", + "ips": [ + "124.150.139.35", + "124.150.139.37", + "124.150.139.45", + "124.150.139.61" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "hostname": "au-syd.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Australia Sydney", + "ips": [ + "45.248.76.221", + "45.248.76.227", + "45.248.76.229", + "149.88.101.12", + "149.88.101.17", + "149.88.101.22" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "hostname": "au-syd.prod.surfshark.com", + "retroloc": "Australia Sydney", + "wgpubkey": "Y5KM9kHdM0upMsIJWUQquOY1RgkWX69AHw/Dl5KyIk4=", + "ips": [ + "45.248.76.221", + "45.248.76.227", + "45.248.76.229", + "149.88.101.12", + "149.88.101.17", + "149.88.101.22" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "hostname": "at-vie.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Austria", + "ips": [ + "37.19.195.66", + "37.19.195.72", + "37.19.195.74", + "37.19.195.79", + "37.19.195.81", + "87.249.133.7", + "87.249.133.9", + "87.249.133.22", + "87.249.133.73", + "87.249.133.78", + "89.187.168.46", + "89.187.168.56", + "89.187.168.237", + "89.187.168.239" + ] + }, + { + "vpn": "wireguard", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "hostname": "at-vie.prod.surfshark.com", + "retroloc": "Austria", + "wgpubkey": "dPZe8Jq3Hu0k07MDk+Y4+AS2XHSLYalyg91TSFXRYEA=", + "ips": [ + "37.19.195.66", + "37.19.195.72", + "37.19.195.74", + "37.19.195.79", + "37.19.195.81", + "87.249.133.7", + "87.249.133.9", + "87.249.133.22", + "87.249.133.73", + "87.249.133.78", + "89.187.168.46", + "89.187.168.56", + "89.187.168.237", + "89.187.168.239" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Asia Pacific", + "city": "Baku", + "hostname": "az-bak.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Azerbaijan", + "ips": [ + "45.39.203.18", + "45.39.203.20", + "45.39.203.34", + "45.39.203.36" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Asia Pacific", + "city": "Baku", + "hostname": "az-bak.prod.surfshark.com", + "retroloc": "Azerbaijan", + "wgpubkey": "pvWYTFxIpqo25NGTertIIWnccS/sUQ6fIkqd8XJYzEI=", + "ips": [ + "45.39.203.18", + "45.39.203.20", + "45.39.203.34", + "45.39.203.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Bahamas", + "hostname": "bs-nas.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.145.18", + "62.197.145.20", + "62.197.145.34", + "62.197.145.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Bahamas", + "hostname": "bs-nas.prod.surfshark.com", + "wgpubkey": "uM3cUZiQ46nRLALqOQfBz2cqg+RyR/OIHH0Xvwf9wHY=", + "ips": [ + "62.197.145.18", + "62.197.145.20", + "62.197.145.34", + "62.197.145.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "hostname": "bd-dac.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.153.18", + "62.197.153.20", + "62.197.153.34", + "62.197.153.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "hostname": "bd-dac.prod.surfshark.com", + "wgpubkey": "6tOduT4iNbZyqKNzsSgDe/ckziO6101NPZwrnY5WpTk=", + "ips": [ + "62.197.153.18", + "62.197.153.20", + "62.197.153.34", + "62.197.153.36" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Antwerp", + "hostname": "be-anr.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "103.109.244.92", + "103.109.244.96", + "103.109.244.98", + "103.109.244.102", + "103.109.244.104", + "103.109.244.106", + "103.109.244.108", + "103.109.244.112", + "103.109.244.116", + "188.95.54.38", + "188.95.54.48", + "188.95.54.50", + "188.95.54.53", + "188.95.55.125" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Antwerp", + "hostname": "be-anr.prod.surfshark.com", + "wgpubkey": "cTDaqf4qOaNGUbzt/qMRUCcOzL9wknQtG00po/bBt3Y=", + "ips": [ + "103.109.244.92", + "103.109.244.96", + "103.109.244.98", + "103.109.244.102", + "103.109.244.104", + "103.109.244.106", + "103.109.244.108", + "103.109.244.112", + "103.109.244.116", + "188.95.54.38", + "188.95.54.48", + "188.95.54.50", + "188.95.54.53", + "188.95.55.125" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "hostname": "be-bru.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Belgium", + "ips": [ + "146.70.55.197", + "146.70.55.213", + "146.70.123.43", + "146.70.123.51", + "146.70.123.53", + "146.70.123.195", + "146.70.123.213", + "194.110.115.211" + ] + }, + { + "vpn": "wireguard", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "hostname": "be-bru.prod.surfshark.com", + "retroloc": "Belgium", + "wgpubkey": "9wZOjtwuKEc0GBcvc3xJQ4Kjo8G3EMXu6zJRzbanOjc=", + "ips": [ + "146.70.55.197", + "146.70.55.213", + "146.70.123.43", + "146.70.123.51", + "146.70.123.53", + "146.70.123.195", + "146.70.123.213", + "194.110.115.211" + ] + }, + { + "vpn": "openvpn", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "hostname": "bz-blp.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "212.119.33.34", + "212.119.33.36" + ] + }, + { + "vpn": "wireguard", + "country": "Belize", + "region": "The Americas", + "city": "Belmopan", + "hostname": "bz-blp.prod.surfshark.com", + "wgpubkey": "zcxA9gW+ism40rUoF5B4UPV655FLymJ1n4t0WogtZkU=", + "ips": [ + "212.119.33.34", + "212.119.33.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "hostname": "bt-pbh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.157.18", + "62.197.157.20", + "62.197.157.34", + "62.197.157.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "hostname": "bt-pbh.prod.surfshark.com", + "wgpubkey": "R/lGzro0Z8nbQWDVRJbfscimcUvbSrc/raIvXwfDoV4=", + "ips": [ + "62.197.157.18", + "62.197.157.20", + "62.197.157.34", + "62.197.157.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bolivia", + "region": "The Americas", + "city": "Sucre", + "hostname": "bo-sre.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.171.18", + "194.169.171.20", + "194.169.171.34", + "194.169.171.36" + ] + }, + { + "vpn": "wireguard", + "country": "Bolivia", + "region": "The Americas", + "city": "Sucre", + "hostname": "bo-sre.prod.surfshark.com", + "wgpubkey": "YTVk+CUVWELH18qftzEURb8JJfLHfmIMewcx0p8hkT0=", + "ips": [ + "194.169.171.18", + "194.169.171.20", + "194.169.171.34", + "194.169.171.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "hostname": "ba-sjj.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Bosnia and Herzegovina", + "ips": [ + "172.252.89.8", + "172.252.89.10", + "172.252.89.13", + "172.252.89.15", + "172.252.89.20", + "172.252.89.25", + "172.252.89.35", + "172.252.89.38" + ] + }, + { + "vpn": "wireguard", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "hostname": "ba-sjj.prod.surfshark.com", + "retroloc": "Bosnia and Herzegovina", + "wgpubkey": "hsm/ps/uxcsVNzT3OmV/l7ZWv+TRIS+IM+N6/nTymkw=", + "ips": [ + "172.252.89.8", + "172.252.89.10", + "172.252.89.13", + "172.252.89.15", + "172.252.89.20", + "172.252.89.25", + "172.252.89.35", + "172.252.89.38" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "hostname": "br-sao.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Brazil", + "ips": [ + "138.199.58.33", + "138.199.58.35", + "138.199.58.37", + "138.199.58.106", + "146.70.163.195", + "146.70.163.197", + "146.70.163.203", + "193.19.205.93" + ] + }, + { + "vpn": "wireguard", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "hostname": "br-sao.prod.surfshark.com", + "retroloc": "Brazil", + "wgpubkey": "IFTVXxhLEqVgZI/JGOPRtmrNUQW1DNljeBe8Ys7v90A=", + "ips": [ + "138.199.58.33", + "138.199.58.35", + "138.199.58.37", + "138.199.58.106", + "146.70.163.195", + "146.70.163.197", + "146.70.163.203", + "193.19.205.93" + ] + }, + { + "vpn": "openvpn", + "country": "Brunei", + "region": "Asia Pacific", + "city": "Begawan", + "hostname": "bn-bwn.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.158.34", + "62.197.158.36" + ] + }, + { + "vpn": "wireguard", + "country": "Brunei", + "region": "Asia Pacific", + "city": "Begawan", + "hostname": "bn-bwn.prod.surfshark.com", + "wgpubkey": "QE7hpHqVYWqohTmOnmYtKjUv4b6Bb8S2b9AF0EFl638=", + "ips": [ + "62.197.158.34", + "62.197.158.36" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "hostname": "bg-sof.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Bulgaria", + "ips": [ + "37.19.203.78", + "146.70.53.211", + "146.70.53.213", + "146.70.53.219", + "156.146.55.194", + "156.146.55.196" + ] + }, + { + "vpn": "wireguard", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "hostname": "bg-sof.prod.surfshark.com", + "retroloc": "Bulgaria", + "wgpubkey": "LQFiCiZcPEoYasKRLbCfXp2fYYsj8wiMr/L9u6hYqSo=", + "ips": [ + "37.19.203.78", + "146.70.53.211", + "146.70.53.213", + "146.70.53.219", + "156.146.55.194", + "156.146.55.196" + ] + }, + { + "vpn": "openvpn", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "hostname": "kh-pnh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.146.18", + "62.197.146.20", + "62.197.146.34", + "62.197.146.36" + ] + }, + { + "vpn": "wireguard", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "hostname": "kh-pnh.prod.surfshark.com", + "wgpubkey": "z2Ik8BG6XgosyYE/O4Vz4kiPTZyoWSlJvZtFeFlNclI=", + "ips": [ + "62.197.146.18", + "62.197.146.20", + "62.197.146.34", + "62.197.146.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "hostname": "ca-mon.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Montreal", + "ips": [ + "37.120.205.181", + "146.70.112.67", + "146.70.112.75", + "146.70.112.83", + "146.70.112.107", + "146.70.112.109", + "146.70.112.139", + "146.70.112.155", + "146.70.112.171", + "217.138.213.99" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Montreal", + "hostname": "ca-mon.prod.surfshark.com", + "retroloc": "Canada Montreal", + "wgpubkey": "pB//7qgQ/TQyIMQWKO9GvUfJNYCfVZYwjF2nXPGIEX8=", + "ips": [ + "37.120.205.181", + "146.70.112.67", + "146.70.112.75", + "146.70.112.83", + "146.70.112.107", + "146.70.112.109", + "146.70.112.139", + "146.70.112.155", + "146.70.112.171", + "217.138.213.99" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Toronto mp001", + "ips": [ + "138.197.151.26" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Toronto", + "ips": [ + "37.19.211.52", + "138.199.57.36" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "hostname": "ca-tor.prod.surfshark.com", + "retroloc": "Canada Toronto", + "wgpubkey": "W9bzkcL3fiV64vDpB4pbrz8QafNn3y5P9Yc/kQvy4TA=", + "ips": [ + "37.19.211.52", + "138.199.57.36" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "hostname": "ca-van.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Canada Vancouver", + "ips": [ + "66.115.147.67", + "66.115.147.69", + "66.115.147.74", + "66.115.147.77", + "104.200.132.37", + "107.181.177.179", + "198.8.92.72", + "198.8.92.84", + "198.8.92.87", + "208.78.41.107" + ] + }, + { + "vpn": "wireguard", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "hostname": "ca-van.prod.surfshark.com", + "retroloc": "Canada Vancouver", + "wgpubkey": "o4HezxSsbNqJFJZj+VBw/QXFLpfNo7PZu8xe7H2hTw0=", + "ips": [ + "66.115.147.67", + "66.115.147.69", + "66.115.147.74", + "66.115.147.77", + "104.200.132.37", + "107.181.177.179", + "198.8.92.72", + "198.8.92.84", + "198.8.92.87", + "208.78.41.107" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "hostname": "cl-san.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Chile", + "ips": [ + "149.88.104.34", + "149.88.104.36", + "149.88.104.39", + "149.88.104.41" + ] + }, + { + "vpn": "wireguard", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "hostname": "cl-san.prod.surfshark.com", + "retroloc": "Chile", + "wgpubkey": "FdTRnh0g+FYFPj5UURQIcDbygd+2gMRrslErfmZxdDo=", + "ips": [ + "149.88.104.34", + "149.88.104.36", + "149.88.104.39", + "149.88.104.41" + ] + }, + { + "vpn": "openvpn", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "hostname": "co-bog.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Colombia", + "ips": [ + "149.88.111.71", + "149.88.111.76", + "149.88.111.78", + "149.88.111.98" + ] + }, + { + "vpn": "wireguard", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "hostname": "co-bog.prod.surfshark.com", + "retroloc": "Colombia", + "wgpubkey": "lLqqxZuCTtIpBjgZJYWzPQn/7st24iVpJN+/xS7jogs=", + "ips": [ + "149.88.111.71", + "149.88.111.76", + "149.88.111.78", + "149.88.111.98" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "hostname": "cr-sjn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Costa Rica", + "ips": [ + "176.227.241.50", + "176.227.241.52", + "176.227.241.68", + "176.227.241.84" + ] + }, + { + "vpn": "wireguard", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "hostname": "cr-sjn.prod.surfshark.com", + "retroloc": "Costa Rica", + "wgpubkey": "HPggZ80tXf9TpiZzy8xih7PIWjexg4Kyg3lzUGXoDHU=", + "ips": [ + "176.227.241.50", + "176.227.241.52", + "176.227.241.68", + "176.227.241.84" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "hostname": "hr-zag.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Croatia", + "ips": [ + "149.102.247.133", + "149.102.247.135", + "149.102.247.137", + "149.102.247.139", + "149.102.247.141", + "149.102.247.143" + ] + }, + { + "vpn": "wireguard", + "country": "Croatia", + "region": "Europe", + "city": "Zagreb", + "hostname": "hr-zag.prod.surfshark.com", + "retroloc": "Croatia", + "wgpubkey": "nIQmC5T4H0HX4yA2u/Z5rrbLQDAOLA+kFCdt8S94xXg=", + "ips": [ + "149.102.247.133", + "149.102.247.135", + "149.102.247.137", + "149.102.247.139", + "149.102.247.141", + "149.102.247.143" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "hostname": "cy-nic.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Cyprus", + "ips": [ + "193.19.204.74", + "193.19.204.76", + "193.19.204.78", + "193.19.204.80", + "193.19.204.86", + "193.19.204.88" + ] + }, + { + "vpn": "wireguard", + "country": "Cyprus", + "region": "Europe", + "city": "Nicosia", + "hostname": "cy-nic.prod.surfshark.com", + "retroloc": "Cyprus", + "wgpubkey": "kEAQgNChxGgrzoKPpCPFJKh0L1/5rXIq08KSY4g26zY=", + "ips": [ + "193.19.204.74", + "193.19.204.76", + "193.19.204.78", + "193.19.204.80", + "193.19.204.86", + "193.19.204.88" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "cz-prg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Czech Republic", + "ips": [ + "185.152.64.178", + "185.180.14.151", + "185.242.6.67", + "185.242.6.91", + "185.242.6.123", + "185.242.6.125" + ] + }, + { + "vpn": "wireguard", + "country": "Czech Republic", + "region": "Europe", + "city": "Prague", + "hostname": "cz-prg.prod.surfshark.com", + "retroloc": "Czech Republic", + "wgpubkey": "c1bfP+OBTj6WUe8NDH8d6nDTwpQicopfdkHFx3BIaSk=", + "ips": [ + "185.152.64.178", + "185.180.14.151", + "185.242.6.67", + "185.242.6.91", + "185.242.6.123", + "185.242.6.125" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "dk-cph.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Denmark", + "ips": [ + "89.45.7.21", + "146.70.42.147", + "146.70.42.155", + "146.70.92.5", + "146.70.92.11", + "146.70.92.37", + "146.70.92.43", + "146.70.92.61" + ] + }, + { + "vpn": "wireguard", + "country": "Denmark", + "region": "Europe", + "city": "Copenhagen", + "hostname": "dk-cph.prod.surfshark.com", + "retroloc": "Denmark", + "wgpubkey": "peDjRPEdHHmo0hGootZ9f+MQCEXmziFkLhMTl2PeXRM=", + "ips": [ + "89.45.7.21", + "146.70.42.147", + "146.70.42.155", + "146.70.92.5", + "146.70.92.11", + "146.70.92.37", + "146.70.92.43", + "146.70.92.61" + ] + }, + { + "vpn": "openvpn", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "hostname": "ec-uio.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.122.18", + "92.62.122.20", + "92.62.122.34", + "92.62.122.36" + ] + }, + { + "vpn": "wireguard", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "hostname": "ec-uio.prod.surfshark.com", + "wgpubkey": "LErFIOc3YBK1khnmwV+a6fBbYff2OS3h+wnIuOKZQTY=", + "ips": [ + "92.62.122.18", + "92.62.122.20", + "92.62.122.34", + "92.62.122.36" + ] + }, + { + "vpn": "openvpn", + "country": "Egypt", + "region": "Middle East and Africa", + "city": "Cairo", + "hostname": "eg-cai.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.147.51", + "62.197.147.53", + "62.197.147.67", + "62.197.147.69" + ] + }, + { + "vpn": "wireguard", + "country": "Egypt", + "region": "Middle East and Africa", + "city": "Cairo", + "hostname": "eg-cai.prod.surfshark.com", + "wgpubkey": "EKaIyCUV8aqCtRkV6jfkU1IicE5ZaU2RC4VKAdgjOyA=", + "ips": [ + "62.197.147.51", + "62.197.147.53", + "62.197.147.67", + "62.197.147.69" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "hostname": "ee-tll.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Estonia", + "ips": [ + "185.174.159.107", + "185.174.159.115", + "185.174.159.117", + "185.174.159.119", + "185.174.159.121", + "185.174.159.196" + ] + }, + { + "vpn": "wireguard", + "country": "Estonia", + "region": "Europe", + "city": "Tallinn", + "hostname": "ee-tll.prod.surfshark.com", + "retroloc": "Estonia", + "wgpubkey": "CsdrT+WfcMRPhrOWgZeHj9DQiQtJfYFci94K5ztjr2E=", + "ips": [ + "185.174.159.107", + "185.174.159.115", + "185.174.159.117", + "185.174.159.119", + "185.174.159.121", + "185.174.159.196" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "hostname": "fi-hel.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Finland", + "ips": [ + "193.56.113.6", + "193.56.113.8", + "193.56.113.16", + "193.56.113.18", + "193.56.113.33", + "193.56.113.38", + "193.56.113.41", + "193.56.113.46", + "193.56.113.48", + "193.56.113.56", + "193.56.113.58", + "193.56.113.61" + ] + }, + { + "vpn": "wireguard", + "country": "Finland", + "region": "Europe", + "city": "Helsinki", + "hostname": "fi-hel.prod.surfshark.com", + "retroloc": "Finland", + "wgpubkey": "+nv/Z8I2VS0eRdZwkpQW3U9RmsboTz2MUF94jVg5w10=", + "ips": [ + "193.56.113.6", + "193.56.113.8", + "193.56.113.16", + "193.56.113.18", + "193.56.113.33", + "193.56.113.38", + "193.56.113.41", + "193.56.113.46", + "193.56.113.48", + "193.56.113.56", + "193.56.113.58", + "193.56.113.61" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Bordeaux", + "hostname": "fr-bod.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Bordeaux", + "ips": [ + "45.134.79.131", + "45.134.79.133", + "45.134.79.136", + "45.134.79.138", + "45.134.79.141", + "45.134.79.146", + "45.134.79.148", + "45.134.79.153", + "45.134.79.161", + "45.134.79.166" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Bordeaux", + "hostname": "fr-bod.prod.surfshark.com", + "retroloc": "France Bordeaux", + "wgpubkey": "ArE5eVIEOPellzFlGK/oOcHCGnB+AAv0Un4C100COmw=", + "ips": [ + "45.134.79.131", + "45.134.79.133", + "45.134.79.136", + "45.134.79.138", + "45.134.79.141", + "45.134.79.146", + "45.134.79.148", + "45.134.79.153", + "45.134.79.161", + "45.134.79.166" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Marseille", + "hostname": "fr-mrs.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Marseilles", + "ips": [ + "138.199.16.140", + "138.199.16.150", + "138.199.16.152", + "185.166.84.135", + "185.166.84.137", + "185.166.84.141", + "185.166.84.147", + "185.166.84.149" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Marseille", + "hostname": "fr-mrs.prod.surfshark.com", + "retroloc": "France Marseilles", + "wgpubkey": "QYa3ZFLwWAHKiJzOcbM73K7KBE0tdJYuirbGb+uH0H0=", + "ips": [ + "138.199.16.140", + "138.199.16.150", + "138.199.16.152", + "185.166.84.135", + "185.166.84.137", + "185.166.84.141", + "185.166.84.147", + "185.166.84.149" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "fr-par.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "France Paris", + "ips": [ + "82.102.18.243", + "82.102.18.245", + "84.17.43.195", + "84.17.43.208", + "85.204.70.95", + "85.204.70.101", + "143.244.57.81", + "143.244.57.83", + "143.244.57.89", + "143.244.57.119", + "146.70.194.221", + "146.70.194.229", + "146.70.194.235", + "146.70.194.251", + "194.110.113.227", + "194.110.113.229" + ] + }, + { + "vpn": "wireguard", + "country": "France", + "region": "Europe", + "city": "Paris", + "hostname": "fr-par.prod.surfshark.com", + "retroloc": "France Paris", + "wgpubkey": "AsvLuvKKADdc67aA/vHA3vb61S6YnGGx2Pd4aP4wal8=", + "ips": [ + "82.102.18.243", + "82.102.18.245", + "84.17.43.195", + "84.17.43.208", + "85.204.70.95", + "85.204.70.101", + "143.244.57.81", + "143.244.57.83", + "143.244.57.89", + "143.244.57.119", + "146.70.194.221", + "146.70.194.229", + "146.70.194.235", + "146.70.194.251", + "194.110.113.227", + "194.110.113.229" + ] + }, + { + "vpn": "openvpn", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "hostname": "ge-tbs.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "83.97.115.18", + "83.97.115.20", + "83.97.115.34", + "83.97.115.36" + ] + }, + { + "vpn": "wireguard", + "country": "Georgia", + "region": "Europe", + "city": "Tbilisi", + "hostname": "ge-tbs.prod.surfshark.com", + "wgpubkey": "L79E4IoaVZBXOyoMM82TvUIbiKlloRbUnT8R2Cl3PVM=", + "ips": [ + "83.97.115.18", + "83.97.115.20", + "83.97.115.34", + "83.97.115.36" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "hostname": "de-ber.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Berlin", + "ips": [ + "37.120.217.131", + "37.120.217.179", + "37.120.217.181", + "89.36.76.53", + "89.36.76.59", + "89.36.76.61", + "89.36.76.101", + "89.36.76.117", + "89.36.76.123", + "89.36.76.125", + "152.89.163.21", + "152.89.163.243", + "193.176.86.93", + "193.176.86.131", + "193.176.86.173", + "193.176.86.197", + "217.138.216.59", + "217.138.216.229", + "217.138.216.243", + "217.138.216.245", + "217.138.216.251", + "217.138.216.253" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Berlin", + "hostname": "de-ber.prod.surfshark.com", + "retroloc": "Germany Berlin", + "wgpubkey": "d3ldwEjnFcbLwD1o8uC5xC3DaSNek8DGeTpOb/h/IE4=", + "ips": [ + "37.120.217.131", + "37.120.217.179", + "37.120.217.181", + "89.36.76.53", + "89.36.76.59", + "89.36.76.61", + "89.36.76.101", + "89.36.76.117", + "89.36.76.123", + "89.36.76.125", + "152.89.163.21", + "152.89.163.243", + "193.176.86.93", + "193.176.86.131", + "193.176.86.173", + "193.176.86.197", + "217.138.216.59", + "217.138.216.229", + "217.138.216.243", + "217.138.216.245", + "217.138.216.251", + "217.138.216.253" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt mp001", + "ips": [ + "46.101.189.14" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st001", + "ips": [ + "45.87.212.179" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st001.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st001", + "wgpubkey": "kj90Cy2gkEYrHn487636hOfto2EBWEddUngRdrziylM=", + "ips": [ + "45.87.212.179" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st002", + "ips": [ + "45.87.212.181" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st002.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st002", + "wgpubkey": "HnYgO+mu04A2VjWiJiPh5TXFHJpWdcnmzCA1ExC991g=", + "ips": [ + "45.87.212.181" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st003", + "ips": [ + "45.87.212.183" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st003.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st003", + "wgpubkey": "OkHRRG05U3WOYWL5x4+6SGHCQlHH0NxkJyi9aM2gDSo=", + "ips": [ + "45.87.212.183" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st004", + "ips": [ + "195.181.174.226" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st004.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st004", + "wgpubkey": "0e0/gpN0k62p3s9SxSWL8PRhLx3PJZqNxMsK9OfTk0M=", + "ips": [ + "195.181.174.226" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st005", + "ips": [ + "195.181.174.228" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st005.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st005", + "wgpubkey": "CbBv1dSpGADT0Lo23noLP3VNCe+U4C/NzcG/HSdDtwg=", + "ips": [ + "195.181.174.228" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st006.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st006", + "ips": [ + "169.150.209.214" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st006.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st006", + "wgpubkey": "es0zPcbI1T5Vqrzjxl8QdaEKYVE7GDfV8ayR8jmvpRM=", + "ips": [ + "169.150.209.214" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st007.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main st007", + "ips": [ + "149.34.246.35" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra-st007.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main st007", + "wgpubkey": "cyiOxJryKyqB3cdwXjL7ILCUy3KVBPrOXSbFtasEeF8=", + "ips": [ + "149.34.246.35" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Germany Frankfurt am Main", + "ips": [ + "91.199.118.50", + "91.199.118.56", + "91.239.157.186", + "138.199.19.157", + "146.70.160.227", + "146.70.160.245", + "149.102.230.132", + "156.146.33.67", + "156.146.33.81", + "188.95.65.42" + ] + }, + { + "vpn": "wireguard", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt am Main", + "hostname": "de-fra.prod.surfshark.com", + "retroloc": "Germany Frankfurt am Main", + "wgpubkey": "fJDA+OA6jzQxfRcoHfC27xz7m3C8/590fRjpntzSpGo=", + "ips": [ + "91.199.118.50", + "91.199.118.56", + "91.239.157.186", + "138.199.19.157", + "146.70.160.227", + "146.70.160.245", + "149.102.230.132", + "156.146.33.67", + "156.146.33.81", + "188.95.65.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ghana", + "region": "Middle East and Africa", + "city": "Accra", + "hostname": "gh-acc.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "196.44.118.18", + "196.44.118.20", + "196.44.118.34", + "196.44.118.36" + ] + }, + { + "vpn": "wireguard", + "country": "Ghana", + "region": "Middle East and Africa", + "city": "Accra", + "hostname": "gh-acc.prod.surfshark.com", + "wgpubkey": "UH3qS1ysggFDEBP8Hzgz19Sw0T+SKxFldkatHRKMqBY=", + "ips": [ + "196.44.118.18", + "196.44.118.20", + "196.44.118.34", + "196.44.118.36" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gr-ath.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Greece", + "ips": [ + "149.102.246.98", + "149.102.246.100", + "149.102.246.103", + "149.102.246.106", + "149.102.246.109", + "149.102.246.111" + ] + }, + { + "vpn": "wireguard", + "country": "Greece", + "region": "Europe", + "city": "Athens", + "hostname": "gr-ath.prod.surfshark.com", + "retroloc": "Greece", + "wgpubkey": "bXnjQGLhuauvBMg51YIAhwX40YqNL2ImyEub5DpHaBk=", + "ips": [ + "149.102.246.98", + "149.102.246.100", + "149.102.246.103", + "149.102.246.106", + "149.102.246.109", + "149.102.246.111" + ] + }, + { + "vpn": "openvpn", + "country": "Greenland", + "region": "Europe", + "city": "Nuuk", + "hostname": "gl-goh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.123.18", + "92.62.123.20", + "92.62.123.34", + "92.62.123.36" + ] + }, + { + "vpn": "wireguard", + "country": "Greenland", + "region": "Europe", + "city": "Nuuk", + "hostname": "gl-goh.prod.surfshark.com", + "wgpubkey": "zPg3ZJ7OsztQ0CRSSvH5o2KVL1DYgDGW65DFwLsYwyw=", + "ips": [ + "92.62.123.18", + "92.62.123.20", + "92.62.123.34", + "92.62.123.36" + ] + }, + { + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "hostname": "hk-hkg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "118.99.2.2", + "118.99.2.14", + "118.99.2.20", + "118.99.2.22", + "118.99.2.24", + "118.99.2.36", + "118.99.2.44", + "118.99.2.46", + "138.199.62.12", + "138.199.62.22", + "138.199.62.24", + "156.146.45.113", + "156.146.45.153", + "156.146.45.193", + "156.146.45.196", + "156.146.45.200" + ] + }, + { + "vpn": "wireguard", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "hostname": "hk-hkg.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "JYHdktdtuM7inbtsxRKSDpnBVTWQ5+QLZ/cWWmf4VRg=", + "ips": [ + "118.99.2.2", + "118.99.2.14", + "118.99.2.20", + "118.99.2.22", + "118.99.2.24", + "118.99.2.36", + "118.99.2.44", + "118.99.2.46", + "138.199.62.12", + "138.199.62.22", + "138.199.62.24", + "156.146.45.113", + "156.146.45.153", + "156.146.45.193", + "156.146.45.196", + "156.146.45.200" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "hu-bud.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hungary", + "ips": [ + "146.70.120.11", + "146.70.120.13", + "146.70.120.19", + "146.70.120.21", + "146.70.120.27", + "146.70.120.29", + "146.70.120.35", + "146.70.120.37", + "146.70.120.43", + "146.70.120.45" + ] + }, + { + "vpn": "wireguard", + "country": "Hungary", + "region": "Europe", + "city": "Budapest", + "hostname": "hu-bud.prod.surfshark.com", + "retroloc": "Hungary", + "wgpubkey": "Pk3+iZNP0uWkDTSmEHlUeSA3WyiFXLXgYgAQ5wNyIBk=", + "ips": [ + "146.70.120.11", + "146.70.120.13", + "146.70.120.19", + "146.70.120.21", + "146.70.120.27", + "146.70.120.29", + "146.70.120.35", + "146.70.120.37", + "146.70.120.43", + "146.70.120.45" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "is-rkv.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Iceland", + "ips": [ + "45.139.252.4", + "45.139.252.8", + "45.139.252.14", + "45.139.252.16", + "45.139.252.18", + "45.139.252.22" + ] + }, + { + "vpn": "wireguard", + "country": "Iceland", + "region": "Europe", + "city": "Reykjavik", + "hostname": "is-rkv.prod.surfshark.com", + "retroloc": "Iceland", + "wgpubkey": "d0m2sIa0JGcxCBvoWDU77SjmPoiWI/oKoX1TL2f2fTA=", + "ips": [ + "45.139.252.4", + "45.139.252.8", + "45.139.252.14", + "45.139.252.16", + "45.139.252.18", + "45.139.252.22" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia Pacific", + "city": "Delhi", + "hostname": "in-del.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "92.62.121.35", + "92.62.121.37", + "92.62.121.67", + "92.62.121.69", + "92.62.121.83", + "92.62.121.85", + "92.62.121.117", + "92.62.121.131", + "92.62.121.133", + "92.62.121.147", + "92.62.121.163", + "92.62.121.165", + "92.62.121.179", + "92.62.121.181" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Asia Pacific", + "city": "Delhi", + "hostname": "in-del.prod.surfshark.com", + "wgpubkey": "+dmGrWPM9NI3vQkZ9E7hMRKAJKYzd3YMXGq10sjbN0A=", + "ips": [ + "92.62.121.35", + "92.62.121.37", + "92.62.121.67", + "92.62.121.69", + "92.62.121.83", + "92.62.121.85", + "92.62.121.117", + "92.62.121.131", + "92.62.121.133", + "92.62.121.147", + "92.62.121.163", + "92.62.121.165", + "92.62.121.179", + "92.62.121.181" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Asia Pacific", + "city": "Mumbai", + "hostname": "in-mum.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "176.227.240.16", + "176.227.240.22", + "176.227.240.28", + "176.227.240.46", + "176.227.240.50", + "176.227.240.62", + "176.227.240.64", + "176.227.240.68", + "176.227.240.74", + "176.227.240.76" + ] + }, + { + "vpn": "wireguard", + "country": "India", + "region": "Asia Pacific", + "city": "Mumbai", + "hostname": "in-mum.prod.surfshark.com", + "wgpubkey": "nZBv1nNW6HSvjybgCO9TNHI1pkX+C6GjyAHUtkJRjRI=", + "ips": [ + "176.227.240.16", + "176.227.240.22", + "176.227.240.28", + "176.227.240.46", + "176.227.240.50", + "176.227.240.62", + "176.227.240.64", + "176.227.240.68", + "176.227.240.74", + "176.227.240.76" + ] + }, + { + "vpn": "openvpn", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "hostname": "id-jak.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Indonesia", + "ips": [ + "93.185.162.11", + "93.185.162.17", + "93.185.162.21", + "93.185.162.23" + ] + }, + { + "vpn": "wireguard", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "hostname": "id-jak.prod.surfshark.com", + "retroloc": "Indonesia", + "wgpubkey": "qyghLDfpfyparp0M52OVcmhKckayOvbRO2DDLkgJqyk=", + "ips": [ + "93.185.162.11", + "93.185.162.17", + "93.185.162.21", + "93.185.162.23" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "ie-dub.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Ireland", + "ips": [ + "84.247.48.211", + "146.70.94.181", + "146.70.94.189", + "146.70.94.245", + "146.70.130.165", + "149.34.242.59", + "149.34.242.74", + "149.34.242.87", + "149.34.242.89", + "149.34.242.97" + ] + }, + { + "vpn": "wireguard", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "hostname": "ie-dub.prod.surfshark.com", + "retroloc": "Ireland", + "wgpubkey": "TjYxodFNdGlefxnWqe9vWWJHnz3meYWWhiIJyU8rgg8=", + "ips": [ + "84.247.48.211", + "146.70.94.181", + "146.70.94.189", + "146.70.94.245", + "146.70.130.165", + "149.34.242.59", + "149.34.242.74", + "149.34.242.87", + "149.34.242.89", + "149.34.242.97" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "hostname": "im-iom.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.148.51", + "62.197.148.53", + "62.197.148.67", + "62.197.148.69" + ] + }, + { + "vpn": "wireguard", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "hostname": "im-iom.prod.surfshark.com", + "wgpubkey": "PQKiTkyLs9+rvDkmhnHYBKUZAZwBpZYIZ7/mefvYKko=", + "ips": [ + "62.197.148.51", + "62.197.148.53", + "62.197.148.67", + "62.197.148.69" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "region": "Middle East and Africa", + "city": "Tel Aviv", + "hostname": "il-tlv.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Israel", + "ips": [ + "169.150.227.2", + "169.150.227.4", + "169.150.227.135", + "169.150.227.137", + "169.150.227.140", + "169.150.227.142", + "169.150.227.145", + "169.150.227.147" + ] + }, + { + "vpn": "wireguard", + "country": "Israel", + "region": "Middle East and Africa", + "city": "Tel Aviv", + "hostname": "il-tlv.prod.surfshark.com", + "retroloc": "Israel", + "wgpubkey": "ZEG2fUrtohnVePblUlDM6wyyeTobzsABnMjTTFmqNUE=", + "ips": [ + "169.150.227.2", + "169.150.227.4", + "169.150.227.135", + "169.150.227.137", + "169.150.227.140", + "169.150.227.142", + "169.150.227.145", + "169.150.227.147" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "it-mil.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Italy Milan", + "ips": [ + "84.17.58.154", + "84.17.58.195", + "84.17.58.202", + "146.70.182.53", + "146.70.182.83", + "146.70.182.91", + "212.102.54.130", + "212.102.54.135", + "212.102.54.143", + "212.102.54.165" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "hostname": "it-mil.prod.surfshark.com", + "retroloc": "Italy Milan", + "wgpubkey": "vIMHzH5FHdVkrhOOc0u/FySVhumaLC3XUk39Wk34LnE=", + "ips": [ + "84.17.58.154", + "84.17.58.195", + "84.17.58.202", + "146.70.182.53", + "146.70.182.83", + "146.70.182.91", + "212.102.54.130", + "212.102.54.135", + "212.102.54.143", + "212.102.54.165" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "hostname": "it-rom.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Italy Rome", + "ips": [ + "37.120.207.91", + "37.120.207.155", + "37.120.207.163", + "37.120.207.173", + "37.120.207.179", + "37.120.207.181", + "37.120.207.187", + "37.120.207.205" + ] + }, + { + "vpn": "wireguard", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "hostname": "it-rom.prod.surfshark.com", + "retroloc": "Italy Rome", + "wgpubkey": "fqxSeDr7n249iywruwLMwkV3r36svPT1tLf9TJOTFAw=", + "ips": [ + "37.120.207.91", + "37.120.207.155", + "37.120.207.163", + "37.120.207.173", + "37.120.207.179", + "37.120.207.181", + "37.120.207.187", + "37.120.207.205" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st014.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.187" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st015.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.22.153" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st015.prod.surfshark.com", + "wgpubkey": "nRaQb3Sa6SPDMW6QC0C6mC949iSTfKY4uytfyfZm8n0=", + "ips": [ + "138.199.22.153" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st016.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.177" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st016.prod.surfshark.com", + "wgpubkey": "2Fn9Do6+JKXV8mDZpB3DfWmaJHZwDXE/3GpckVKGzC8=", + "ips": [ + "37.19.205.177" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st017.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.179" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st017.prod.surfshark.com", + "wgpubkey": "T5aWKn3n64TkxqGqOv0ynTxY/w4ktVjc8AePLkDIM2Q=", + "ips": [ + "37.19.205.179" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st018.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.182" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st018.prod.surfshark.com", + "wgpubkey": "kRIGOWrV9eCe0FmFIFwtawoRjzZVCaQs+7FDfPRoAkU=", + "ips": [ + "37.19.205.182" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st019.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.184" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st019.prod.surfshark.com", + "wgpubkey": "RV46b4hNW5tn2I+REE4kJ36rKf5+nDVNE/SYM16XqDw=", + "ips": [ + "37.19.205.184" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st020.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.167" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st020.prod.surfshark.com", + "wgpubkey": "vEPOb23yMjJ37NF/KSXPKCL56LZO4UCulS3XbP+TKFs=", + "ips": [ + "37.19.205.167" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st021.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.169" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st021.prod.surfshark.com", + "wgpubkey": "821FvIHfdxW+gFPj8QNtEe2BgzSb5ryQxTNeRP+I6WE=", + "ips": [ + "37.19.205.169" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st022.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.162" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st022.prod.surfshark.com", + "wgpubkey": "nOobAMCxM7p0filChMAW6abz3BWDGzUFDB1Xyza0nCc=", + "ips": [ + "37.19.205.162" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st023.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.205.164" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st023.prod.surfshark.com", + "wgpubkey": "cwEDkT+qAO1+yQJGe8r7ajc69oXqUYGbMHp1L+lHkHM=", + "ips": [ + "37.19.205.164" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st024.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.2" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st024.prod.surfshark.com", + "wgpubkey": "4wdPRcmcFo2/pRi4zaXSKFZkR4rE54dCvgFDnomsEAs=", + "ips": [ + "89.187.161.2" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st025.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.4" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok-st025.prod.surfshark.com", + "wgpubkey": "IpGp7fS8+qpTPq24EN9NqOdvAjOTfyC/cI8DB5kndFY=", + "ips": [ + "89.187.161.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Japan Tokyo", + "ips": [ + "138.199.22.145", + "146.70.205.181", + "154.47.23.110", + "193.148.16.59", + "193.148.16.107", + "193.148.16.117" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "hostname": "jp-tok.prod.surfshark.com", + "retroloc": "Japan Tokyo", + "wgpubkey": "YJSjrc/WWOjQUyUi4iYcHb7LsWWoCY+2fK8/8VtC/BY=", + "ips": [ + "138.199.22.145", + "146.70.205.181", + "154.47.23.110", + "193.148.16.59", + "193.148.16.107", + "193.148.16.117" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Oral", + "hostname": "kz-ura.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.130.139.24", + "45.130.139.28", + "45.130.139.30", + "45.130.139.32", + "45.130.139.36", + "45.130.139.40", + "45.130.139.42" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Oral", + "hostname": "kz-ura.prod.surfshark.com", + "wgpubkey": "c8SPrUWVMjSm3xdZRF4eg57sdEo2TFmBDVKP+A+quHM=", + "ips": [ + "45.130.139.24", + "45.130.139.28", + "45.130.139.30", + "45.130.139.32", + "45.130.139.36", + "45.130.139.40", + "45.130.139.42" + ] + }, + { + "vpn": "openvpn", + "country": "Laos", + "region": "Asia Pacific", + "city": "Vientiane", + "hostname": "la-vte.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.168.18", + "194.169.168.20", + "194.169.168.34", + "194.169.168.36" + ] + }, + { + "vpn": "wireguard", + "country": "Laos", + "region": "Asia Pacific", + "city": "Vientiane", + "hostname": "la-vte.prod.surfshark.com", + "wgpubkey": "yIlpSftvkSE2+T0uqxWl9HeQSrmPg+HkyvGLi55UqG0=", + "ips": [ + "194.169.168.18", + "194.169.168.20", + "194.169.168.34", + "194.169.168.36" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "hostname": "lv-rig.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Latvia", + "ips": [ + "80.246.31.80", + "80.246.31.82", + "80.246.31.98", + "80.246.31.100", + "80.246.31.104", + "80.246.31.215" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "hostname": "lv-rig.prod.surfshark.com", + "retroloc": "Latvia", + "wgpubkey": "EmghYf9rIpwOQ0uIjIxgCXs/WwHJthNvPIv5iKseE3A=", + "ips": [ + "80.246.31.80", + "80.246.31.82", + "80.246.31.98", + "80.246.31.100", + "80.246.31.104", + "80.246.31.215" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "hostname": "li-qvu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.150.67", + "62.197.150.69" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "hostname": "li-qvu.prod.surfshark.com", + "wgpubkey": "ZSCz5PqrLnu+Eu9wjiMDLscEHTBcfD0H3CGz0i8pXxc=", + "ips": [ + "62.197.150.67", + "62.197.150.69" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "hostname": "lt-vno.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.149.109", + "62.197.149.122" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "hostname": "lt-vno.prod.surfshark.com", + "wgpubkey": "pC7xJD56uFFJ7qHpe3XvXXhjwZcoMco09ySHOg4h+iA=", + "ips": [ + "62.197.149.109", + "62.197.149.122" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "hostname": "lu-ste.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Luxembourg", + "ips": [ + "185.153.151.134", + "185.153.151.139", + "185.153.151.144", + "185.153.151.154", + "185.153.151.156", + "185.153.151.166", + "185.153.151.171", + "185.153.151.181" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "hostname": "lu-ste.prod.surfshark.com", + "retroloc": "Luxembourg", + "wgpubkey": "68JVBL/M2AYQ9gYHtcpmZ6Pl+ayhJjTL2sr6Ej1VEFg=", + "ips": [ + "185.153.151.134", + "185.153.151.139", + "185.153.151.144", + "185.153.151.154", + "185.153.151.156", + "185.153.151.166", + "185.153.151.171", + "185.153.151.181" + ] + }, + { + "vpn": "openvpn", + "country": "Macau", + "region": "Asia Pacific", + "city": "Macao", + "hostname": "mo-mfm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.154.18", + "62.197.154.20", + "62.197.154.34", + "62.197.154.36" + ] + }, + { + "vpn": "wireguard", + "country": "Macau", + "region": "Asia Pacific", + "city": "Macao", + "hostname": "mo-mfm.prod.surfshark.com", + "wgpubkey": "uMD8IFggqtF0ZbviJJFMQFhR3R52mVqhoJmKPt+aACs=", + "ips": [ + "62.197.154.18", + "62.197.154.20", + "62.197.154.34", + "62.197.154.36" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "hostname": "my-kul.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Malaysia", + "ips": [ + "185.196.0.10", + "185.196.0.15", + "185.196.0.20", + "185.196.0.25" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "hostname": "my-kul.prod.surfshark.com", + "retroloc": "Malaysia", + "wgpubkey": "AS84LXlJfgBwGHc70MvtGRxsMqNNucZ2pNOBayJUm04=", + "ips": [ + "185.196.0.10", + "185.196.0.15", + "185.196.0.20", + "185.196.0.25" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "hostname": "mt-mla.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "193.228.56.132", + "193.228.56.134", + "193.228.56.137", + "193.228.56.139" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "hostname": "mt-mla.prod.surfshark.com", + "wgpubkey": "c9EuAnWYvGUyFrzrV70Fph0onkFv2xe3Bc0gTCFuKRw=", + "ips": [ + "193.228.56.132", + "193.228.56.134", + "193.228.56.137", + "193.228.56.139" + ] + }, + { + "vpn": "openvpn", + "country": "Marocco", + "region": "Middle East and Africa", + "city": "Rabat", + "hostname": "ma-rab.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.169.169.18", + "194.169.169.20", + "194.169.169.34", + "194.169.169.36" + ] + }, + { + "vpn": "wireguard", + "country": "Marocco", + "region": "Middle East and Africa", + "city": "Rabat", + "hostname": "ma-rab.prod.surfshark.com", + "wgpubkey": "Tl7KINtNnar9fVQD8LG2dswOEqSKmUP9ioimCjo6jHc=", + "ips": [ + "194.169.169.18", + "194.169.169.20", + "194.169.169.34", + "194.169.169.36" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "Americas", + "city": "Queretaro", + "hostname": "mx-qro.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.22.66", + "149.88.22.68", + "149.88.22.71", + "149.88.22.73", + "149.88.22.76", + "149.88.22.78" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "Americas", + "city": "Queretaro", + "hostname": "mx-qro.prod.surfshark.com", + "wgpubkey": "6C8O3L/Li0JOO5aWvL6PrciiZOOaRBtWmempOUENLQs=", + "ips": [ + "149.88.22.66", + "149.88.22.68", + "149.88.22.71", + "149.88.22.73", + "149.88.22.76", + "149.88.22.78" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "hostname": "md-chi.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Moldova", + "ips": [ + "178.175.128.235", + "185.181.229.227", + "185.181.229.229", + "185.181.230.102", + "185.181.230.104", + "194.33.40.112" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "hostname": "md-chi.prod.surfshark.com", + "retroloc": "Moldova", + "wgpubkey": "4Exn42t337sxoBzYHxgmDBNq+AhTYz6nvEj98TWY50Y=", + "ips": [ + "178.175.128.235", + "185.181.229.227", + "185.181.229.229", + "185.181.230.102", + "185.181.230.104", + "194.33.40.112" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "hostname": "mc-mcm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.151.18", + "62.197.151.20", + "62.197.151.34", + "62.197.151.36" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "hostname": "mc-mcm.prod.surfshark.com", + "wgpubkey": "rj9PNit3SCy52Knw0QmHUfN2W59nB4oMOtmOZq1q/Hc=", + "ips": [ + "62.197.151.18", + "62.197.151.20", + "62.197.151.34", + "62.197.151.36" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "hostname": "mn-uln.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "62.197.155.18", + "62.197.155.20", + "62.197.155.34", + "62.197.155.36" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "hostname": "mn-uln.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "3nLHy4uBd2nBUDuAuR6AM58yHLiX2CAXg8kdgEr6tV4=", + "ips": [ + "62.197.155.18", + "62.197.155.20", + "62.197.155.34", + "62.197.155.36" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "hostname": "me-tgd.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "62.197.159.18", + "62.197.159.20", + "62.197.159.34", + "62.197.159.36" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "hostname": "me-tgd.prod.surfshark.com", + "wgpubkey": "Jhiez1pdO7tqUX0OmUubd9SPfvUc/ypSLRzWiyr3SRM=", + "ips": [ + "62.197.159.18", + "62.197.159.20", + "62.197.159.34", + "62.197.159.36" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "hostname": "mm-nyt.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.242.18", + "45.95.242.20", + "45.95.242.34", + "45.95.242.36" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "hostname": "mm-nyt.prod.surfshark.com", + "wgpubkey": "tehGZzcmdK59x99I9dbfuWOHSxBdPsz5lB+uAoT75kE=", + "ips": [ + "45.95.242.18", + "45.95.242.20", + "45.95.242.34", + "45.95.242.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam mp001", + "ips": [ + "188.166.43.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam st001", + "ips": [ + "81.19.209.51" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams-st001.prod.surfshark.com", + "retroloc": "Netherlands Amsterdam st001", + "wgpubkey": "6nnixEne6MUyAmsjhA/1O7evl+STAL00AoLcY5+Hb1Y=", + "ips": [ + "81.19.209.51" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Netherlands Amsterdam", + "ips": [ + "81.19.208.91", + "81.19.216.251", + "89.46.223.52", + "89.46.223.54", + "89.46.223.56", + "89.46.223.187", + "143.244.42.89", + "143.244.42.91", + "146.70.175.13", + "146.70.175.21", + "146.70.175.27", + "146.70.175.75", + "146.70.175.91", + "178.239.173.51", + "212.102.35.204", + "212.102.35.206", + "212.102.35.214", + "212.102.35.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "hostname": "nl-ams.prod.surfshark.com", + "retroloc": "Netherlands Amsterdam", + "wgpubkey": "Lxg3jAOKcBA9tGBtB6vEWMFl5LUEB6AwOpuniYn1cig=", + "ips": [ + "81.19.208.91", + "81.19.216.251", + "89.46.223.52", + "89.46.223.54", + "89.46.223.56", + "89.46.223.187", + "143.244.42.89", + "143.244.42.91", + "146.70.175.13", + "146.70.175.21", + "146.70.175.27", + "146.70.175.75", + "146.70.175.91", + "178.239.173.51", + "212.102.35.204", + "212.102.35.206", + "212.102.35.214", + "212.102.35.218" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "hostname": "nz-akl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "New Zealand", + "ips": [ + "180.149.231.3", + "180.149.231.5", + "180.149.231.11", + "180.149.231.43", + "180.149.231.115", + "180.149.231.117", + "180.149.231.163", + "180.149.231.165" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "hostname": "nz-akl.prod.surfshark.com", + "retroloc": "New Zealand", + "wgpubkey": "xv8P19y0m9ojrLelCaPzGtaVv7tlPzLgZxvAD7lpYDg=", + "ips": [ + "180.149.231.3", + "180.149.231.5", + "180.149.231.11", + "180.149.231.43", + "180.149.231.115", + "180.149.231.117", + "180.149.231.163", + "180.149.231.165" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Middle East and Africa", + "city": "Lagos", + "hostname": "ng-lag.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Nigeria", + "ips": [ + "213.109.151.18", + "213.109.151.20", + "213.109.151.34", + "213.109.151.36" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Middle East and Africa", + "city": "Lagos", + "hostname": "ng-lag.prod.surfshark.com", + "retroloc": "Nigeria", + "wgpubkey": "mMmsmMyqtASb4V42H5nxyD8BgauWrNhCCZdBHCsbC00=", + "ips": [ + "213.109.151.18", + "213.109.151.20", + "213.109.151.34", + "213.109.151.36" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "hostname": "mk-skp.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "North Macedonia", + "ips": [ + "185.225.28.67", + "185.225.28.69", + "185.225.28.91", + "185.225.28.93", + "185.225.28.107", + "185.225.28.243", + "185.225.28.245" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "hostname": "mk-skp.prod.surfshark.com", + "retroloc": "North Macedonia", + "wgpubkey": "dZNq48noPkey9rwSbAU+masbafpDSaAmtAMaP+gzLxA=", + "ips": [ + "185.225.28.67", + "185.225.28.69", + "185.225.28.91", + "185.225.28.93", + "185.225.28.107", + "185.225.28.243", + "185.225.28.245" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "hostname": "no-osl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Norway", + "ips": [ + "146.70.103.221", + "146.70.103.229", + "146.70.103.237", + "185.253.97.91", + "185.253.97.99", + "185.253.97.101", + "185.253.97.115", + "185.253.97.117" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "hostname": "no-osl.prod.surfshark.com", + "retroloc": "Norway", + "wgpubkey": "pXfZi2vsdd88qrnqh+bwqHG4IYD42pj3T1wCm3PIGmw=", + "ips": [ + "146.70.103.221", + "146.70.103.229", + "146.70.103.237", + "185.253.97.91", + "185.253.97.99", + "185.253.97.101", + "185.253.97.115", + "185.253.97.117" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "hostname": "pk-khi.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "113.203.221.3", + "113.203.221.5", + "113.203.221.19", + "113.203.221.21" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "hostname": "pk-khi.prod.surfshark.com", + "wgpubkey": "DLb7wUFYkOcx5iiNxbNquP5rH+EJdiQfrdFaQoojskU=", + "ips": [ + "113.203.221.3", + "113.203.221.5", + "113.203.221.19", + "113.203.221.21" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama", + "hostname": "pa-pac.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.139.18", + "185.244.139.20", + "185.244.139.34", + "185.244.139.36" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama", + "hostname": "pa-pac.prod.surfshark.com", + "wgpubkey": "9L1tbh/IHrrtImJnuEsVc1eN7xChlLzS6nCMaVyH/iQ=", + "ips": [ + "185.244.139.18", + "185.244.139.20", + "185.244.139.34", + "185.244.139.36" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "hostname": "py-asu.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "194.26.131.18", + "194.26.131.20", + "194.26.131.34", + "194.26.131.36" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "hostname": "py-asu.prod.surfshark.com", + "wgpubkey": "vY6iX5ivkYIrIADMPQMtzR8onU7UYlB52XH5loAeDn0=", + "ips": [ + "194.26.131.18", + "194.26.131.20", + "194.26.131.34", + "194.26.131.36" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "hostname": "pe-lim.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "193.218.35.34", + "193.218.35.50" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "hostname": "pe-lim.prod.surfshark.com", + "wgpubkey": "mR3GelqqkAL6IKKbzcdxJm3f3uyVNxdzCCtTcLT+wUc=", + "ips": [ + "193.218.35.34", + "193.218.35.50" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "hostname": "ph-mnl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Philippines", + "ips": [ + "23.230.151.50", + "23.230.151.52", + "23.230.151.82", + "23.230.151.84", + "23.230.151.114", + "23.230.151.116" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "hostname": "ph-mnl.prod.surfshark.com", + "retroloc": "Philippines", + "wgpubkey": "utXZy1ELBSQKa6s9/K/W4sV11Jod6sSLoikKqKRPyQs=", + "ips": [ + "23.230.151.50", + "23.230.151.52", + "23.230.151.82", + "23.230.151.84", + "23.230.151.114", + "23.230.151.116" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Gdansk", + "hostname": "pl-gdn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Poland Gdansk", + "ips": [ + "5.133.9.203", + "5.133.9.205", + "5.187.52.203", + "5.187.52.205", + "5.187.54.149", + "37.28.156.227", + "37.28.156.229", + "37.28.156.235", + "37.28.156.237", + "37.28.156.245" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Gdansk", + "hostname": "pl-gdn.prod.surfshark.com", + "retroloc": "Poland Gdansk", + "wgpubkey": "4lZhg/fKDCRLjvULGntx21qfebzQv5TJjZ1pc82sUgc=", + "ips": [ + "5.133.9.203", + "5.133.9.205", + "5.187.52.203", + "5.187.52.205", + "5.187.54.149", + "37.28.156.227", + "37.28.156.229", + "37.28.156.235", + "37.28.156.237", + "37.28.156.245" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "pl-waw.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Poland Warsaw", + "ips": [ + "45.128.38.131", + "45.128.38.133", + "45.134.212.226", + "45.134.212.228", + "146.70.161.235", + "146.70.161.237", + "146.70.161.243", + "146.70.161.245" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "hostname": "pl-waw.prod.surfshark.com", + "retroloc": "Poland Warsaw", + "wgpubkey": "vBa3HK7QXietG64rHRLm085VMS2cAX2paeAaphB/SEU=", + "ips": [ + "45.128.38.131", + "45.128.38.133", + "45.134.212.226", + "45.134.212.228", + "146.70.161.235", + "146.70.161.237", + "146.70.161.243", + "146.70.161.245" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "hostname": "pt-lis.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Portugal Lisbon", + "ips": [ + "149.88.20.73", + "149.88.20.85", + "149.88.20.89", + "149.88.20.95", + "149.88.20.97", + "185.92.210.70", + "185.92.210.131", + "185.92.210.137", + "185.92.210.139", + "185.92.210.141" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "hostname": "pt-lis.prod.surfshark.com", + "retroloc": "Portugal Lisbon", + "wgpubkey": "JgYlpt7jFh0FV2QO0QQ3yFfsnqikUq977V3cObFGTQ4=", + "ips": [ + "149.88.20.73", + "149.88.20.85", + "149.88.20.89", + "149.88.20.95", + "149.88.20.97", + "185.92.210.70", + "185.92.210.131", + "185.92.210.137", + "185.92.210.139", + "185.92.210.141" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Porto", + "hostname": "pt-opo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Portugal Porto", + "ips": [ + "103.192.205.50", + "103.192.205.52", + "103.192.205.54", + "103.192.205.56", + "103.192.205.58", + "103.192.205.60" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Porto", + "hostname": "pt-opo.prod.surfshark.com", + "retroloc": "Portugal Porto", + "wgpubkey": "F24iHyEt6YSSaUry/nQAfIEOwXncH0RHUtkte0znvkE=", + "ips": [ + "103.192.205.50", + "103.192.205.52", + "103.192.205.54", + "103.192.205.56", + "103.192.205.58", + "103.192.205.60" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "hostname": "pr-sju.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.139.253.2", + "45.139.253.4" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "hostname": "pr-sju.prod.surfshark.com", + "wgpubkey": "aShaCPgmFn4fHK6wY7pVEIirZ3J961+93d3Qicz6swE=", + "ips": [ + "45.139.253.2", + "45.139.253.4" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "ro-buc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Romania", + "ips": [ + "85.204.124.93", + "89.33.8.195", + "185.102.217.159", + "185.102.217.161", + "217.148.143.197" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "hostname": "ro-buc.prod.surfshark.com", + "retroloc": "Romania", + "wgpubkey": "uRT3uSAUwvm7Rp+s3n5V9JibsKHKAZ/8+SU3psG8QxI=", + "ips": [ + "85.204.124.93", + "89.33.8.195", + "185.102.217.159", + "185.102.217.161", + "217.148.143.197" + ] + }, + { + "vpn": "openvpn", + "country": "Saudi Arabia", + "region": "Middle East and Africa", + "city": "Riyadh", + "hostname": "sa-ruh.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.150.5.2", + "45.150.5.18" + ] + }, + { + "vpn": "wireguard", + "country": "Saudi Arabia", + "region": "Middle East and Africa", + "city": "Riyadh", + "hostname": "sa-ruh.prod.surfshark.com", + "wgpubkey": "quiGeZeYE8T2FBBfz3mGikY9m7cTTyA0q/ROFakbfwU=", + "ips": [ + "45.150.5.2", + "45.150.5.18" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "rs-beg.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Serbia", + "ips": [ + "37.120.193.227", + "37.120.193.229", + "146.70.111.85", + "146.70.111.91", + "146.70.111.93", + "146.70.111.99", + "146.70.111.101", + "146.70.111.109" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "hostname": "rs-beg.prod.surfshark.com", + "retroloc": "Serbia", + "wgpubkey": "A3vmr6/umw5sP8anxNyipgi5oEnOnZdqB1K/cbQpMiI=", + "ips": [ + "37.120.193.227", + "37.120.193.229", + "146.70.111.85", + "146.70.111.91", + "146.70.111.93", + "146.70.111.99", + "146.70.111.101", + "146.70.111.109" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Singapore mp001", + "ips": [ + "206.189.94.229" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.175" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st005.prod.surfshark.com", + "wgpubkey": "d9+f+QTkJH5vYt5dah62rKQLVIudeMERjEssTg3txnQ=", + "ips": [ + "138.199.60.175" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st006.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.177" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st006.prod.surfshark.com", + "wgpubkey": "r5IE8U+/CmPJBQFULLUPwfE4AESkUU7Z4wWBOpHvFyA=", + "ips": [ + "138.199.60.177" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st007.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.170" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st007.prod.surfshark.com", + "wgpubkey": "4geWIYI3+Zn7GmtzJ4D9/QIhRjWGpWwIhqssT3Yl9RE=", + "ips": [ + "138.199.60.170" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st008.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.172" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st008.prod.surfshark.com", + "wgpubkey": "6GvYCh8LaRnbp3OwvNB2BPCaNOjGYKGwfen6eVUP6hc=", + "ips": [ + "138.199.60.172" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st009.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.180" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st009.prod.surfshark.com", + "wgpubkey": "sk0YuJx8nO9hhJnQz5rn1aboekY7Hdl9ZfebCSXBGAY=", + "ips": [ + "138.199.60.180" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st010.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.60.182" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng-st010.prod.surfshark.com", + "wgpubkey": "eL2WOQ130amedxlJ50x71eZUI3QWg8wuqwgqc9vjSRo=", + "ips": [ + "138.199.60.182" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Singapore", + "ips": [ + "89.187.163.217", + "146.70.192.157", + "146.70.192.179", + "149.34.253.146", + "156.146.56.130", + "156.146.56.135" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "hostname": "sg-sng.prod.surfshark.com", + "retroloc": "Singapore", + "wgpubkey": "MGfgkhJsMVMTO33h1wr76+z6gQr/93VcGdClfbaPsnU=", + "ips": [ + "89.187.163.217", + "146.70.192.157", + "146.70.192.179", + "149.34.253.146", + "156.146.56.130", + "156.146.56.135" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "hostname": "sk-bts.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Slovekia", + "ips": [ + "146.70.114.35", + "146.70.114.37", + "185.76.8.210", + "185.76.8.212", + "185.76.8.215", + "185.76.8.217" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "hostname": "sk-bts.prod.surfshark.com", + "retroloc": "Slovekia", + "wgpubkey": "T5b7+uwUFqN5r1WsfBXURpSnYCYRLFAVreKkIQHGOlw=", + "ips": [ + "146.70.114.35", + "146.70.114.37", + "185.76.8.210", + "185.76.8.212", + "185.76.8.215", + "185.76.8.217" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "si-lju.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Slovenia", + "ips": [ + "195.158.249.19", + "195.158.249.21", + "195.158.249.23", + "195.158.249.29" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "hostname": "si-lju.prod.surfshark.com", + "retroloc": "Slovenia", + "wgpubkey": "yPdmxOfzm06fotkt/dlaAiyxWPaWfCuDPaUljNx+c38=", + "ips": [ + "195.158.249.19", + "195.158.249.21", + "195.158.249.23", + "195.158.249.29" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Middle East and Africa", + "city": "Johannesburg", + "hostname": "za-jnb.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "South Africa", + "ips": [ + "154.47.30.98", + "154.47.30.100", + "154.47.30.108", + "154.47.30.110" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Middle East and Africa", + "city": "Johannesburg", + "hostname": "za-jnb.prod.surfshark.com", + "retroloc": "South Africa", + "wgpubkey": "Wj/fSWxNLs1igL1uTRp4zLFNohe4S1wqNTYRHevthUA=", + "ips": [ + "154.47.30.98", + "154.47.30.100", + "154.47.30.108", + "154.47.30.110" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "hostname": "kr-seo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Korea", + "ips": [ + "27.255.75.21", + "27.255.75.23", + "61.97.244.36", + "61.97.244.38", + "61.255.174.13", + "61.255.174.212", + "61.255.174.251", + "103.249.31.26", + "103.249.31.28" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "hostname": "kr-seo.prod.surfshark.com", + "retroloc": "Korea", + "wgpubkey": "bD/m2mdKxJXG2wTkLsmWpiW8xZwkDdrrrwC44auOhQg=", + "ips": [ + "27.255.75.21", + "27.255.75.23", + "61.97.244.36", + "61.97.244.38", + "61.255.174.13", + "61.255.174.212", + "61.255.174.251", + "103.249.31.26", + "103.249.31.28" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "es-bcn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Barcelona", + "ips": [ + "185.188.61.23", + "185.188.61.40", + "185.188.61.42", + "185.188.61.50", + "185.188.61.52", + "185.188.61.54" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "hostname": "es-bcn.prod.surfshark.com", + "retroloc": "Spain Barcelona", + "wgpubkey": "3EC6079YDlzJKcNLdrm/t+JLG8hV3wPpoWE4MypjYnw=", + "ips": [ + "185.188.61.23", + "185.188.61.40", + "185.188.61.42", + "185.188.61.50", + "185.188.61.52", + "185.188.61.54" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "es-mad.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Madrid", + "ips": [ + "45.134.213.245", + "89.37.95.208", + "89.37.95.212", + "89.37.95.220", + "89.37.95.222", + "212.102.48.4" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "hostname": "es-mad.prod.surfshark.com", + "retroloc": "Spain Madrid", + "wgpubkey": "a30vOQfjwPzjRxGNi2dvSAMdaPHEYatR84cUjXKOwls=", + "ips": [ + "45.134.213.245", + "89.37.95.208", + "89.37.95.212", + "89.37.95.220", + "89.37.95.222", + "212.102.48.4" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "region": "Europe", + "city": "Valencia", + "hostname": "es-vlc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Spain Valencia", + "ips": [ + "193.19.207.84", + "193.19.207.86", + "193.19.207.88", + "193.19.207.90", + "193.19.207.92", + "193.19.207.94", + "193.19.207.96", + "193.19.207.98", + "193.19.207.100", + "193.19.207.102" + ] + }, + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Valencia", + "hostname": "es-vlc.prod.surfshark.com", + "retroloc": "Spain Valencia", + "wgpubkey": "TlYKGW07dqFfedNfAnVIPv2WPfC54h96se+dcIDuNhU=", + "ips": [ + "193.19.207.84", + "193.19.207.86", + "193.19.207.88", + "193.19.207.90", + "193.19.207.92", + "193.19.207.94", + "193.19.207.96", + "193.19.207.98", + "193.19.207.100", + "193.19.207.102" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "hostname": "lk-cmb.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Hong Kong", + "ips": [ + "62.197.156.18", + "62.197.156.20", + "62.197.156.34", + "62.197.156.36" + ] + }, + { + "vpn": "wireguard", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "hostname": "lk-cmb.prod.surfshark.com", + "retroloc": "Hong Kong", + "wgpubkey": "+8TxSpyyEGiZK6d/5V+94Zc7nxOV3F1ag7sM6AN86GY=", + "ips": [ + "62.197.156.18", + "62.197.156.20", + "62.197.156.34", + "62.197.156.36" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "se-sto.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Sweden", + "ips": [ + "146.70.21.171", + "146.70.21.181", + "185.76.9.34", + "185.76.9.36", + "185.76.9.44", + "185.76.9.46", + "185.76.9.55", + "185.76.9.57" + ] + }, + { + "vpn": "wireguard", + "country": "Sweden", + "region": "Europe", + "city": "Stockholm", + "hostname": "se-sto.prod.surfshark.com", + "retroloc": "Sweden", + "wgpubkey": "oUFRc+2emXgogDVWnJF4RAzr72PyafCzMVeQOgG92lY=", + "ips": [ + "146.70.21.171", + "146.70.21.181", + "185.76.9.34", + "185.76.9.36", + "185.76.9.44", + "185.76.9.46", + "185.76.9.55", + "185.76.9.57" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "ch-zur.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Switzerland", + "ips": [ + "84.17.53.166", + "84.17.53.214", + "84.17.53.216", + "84.17.53.219", + "84.17.53.225", + "89.37.173.25", + "89.37.173.29", + "89.37.173.37", + "89.37.173.41", + "89.37.173.51", + "89.37.173.53", + "169.150.197.2", + "169.150.197.7", + "212.102.36.232" + ] + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "hostname": "ch-zur.prod.surfshark.com", + "retroloc": "Switzerland", + "wgpubkey": "qFuwaE8IyDbNBTNar3xAXRGaBdkTtmLh1uIGMJxTxUs=", + "ips": [ + "84.17.53.166", + "84.17.53.214", + "84.17.53.216", + "84.17.53.219", + "84.17.53.225", + "89.37.173.25", + "89.37.173.29", + "89.37.173.37", + "89.37.173.41", + "89.37.173.51", + "89.37.173.53", + "169.150.197.2", + "169.150.197.7", + "212.102.36.232" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taichung City", + "hostname": "tw-tai.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Taiwan", + "ips": [ + "45.144.227.7", + "45.144.227.16", + "45.144.227.22", + "45.144.227.28", + "45.144.227.41", + "45.144.227.51", + "45.144.227.56", + "45.144.227.61", + "45.144.227.68", + "45.144.227.81", + "45.144.227.83", + "45.144.227.88" + ] + }, + { + "vpn": "wireguard", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taichung City", + "hostname": "tw-tai.prod.surfshark.com", + "retroloc": "Taiwan", + "wgpubkey": "P0vaGUOUE7V5bbGOYY2WgQeZnTZEHvIr+dfebU7W4Ao=", + "ips": [ + "45.144.227.7", + "45.144.227.16", + "45.144.227.22", + "45.144.227.28", + "45.144.227.41", + "45.144.227.51", + "45.144.227.56", + "45.144.227.61", + "45.144.227.68", + "45.144.227.81", + "45.144.227.83", + "45.144.227.88" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "hostname": "th-bkk.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Thailand", + "ips": [ + "103.176.152.2", + "103.176.152.4", + "103.176.152.7", + "103.176.152.9", + "103.176.152.12", + "103.176.152.17", + "103.176.152.19", + "103.176.152.22", + "103.176.152.24", + "103.176.152.34", + "103.176.152.37", + "103.176.152.39", + "103.176.152.42", + "103.176.152.44" + ] + }, + { + "vpn": "wireguard", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "hostname": "th-bkk.prod.surfshark.com", + "retroloc": "Thailand", + "wgpubkey": "OoFY46j/w4uQFyFu/OQ/h3x+ymJ1DJ4UR1fwGNxOxk0=", + "ips": [ + "103.176.152.2", + "103.176.152.4", + "103.176.152.7", + "103.176.152.9", + "103.176.152.12", + "103.176.152.17", + "103.176.152.19", + "103.176.152.22", + "103.176.152.24", + "103.176.152.34", + "103.176.152.37", + "103.176.152.39", + "103.176.152.42", + "103.176.152.44" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "region": "Europe", + "city": "Istanbul", + "hostname": "tr-ist.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Turkey Istanbul", + "ips": [ + "45.136.155.50", + "45.136.155.51", + "45.136.155.53", + "45.136.155.55", + "45.136.155.58", + "45.136.155.193" + ] + }, + { + "vpn": "wireguard", + "country": "Turkey", + "region": "Europe", + "city": "Istanbul", + "hostname": "tr-ist.prod.surfshark.com", + "retroloc": "Turkey Istanbul", + "wgpubkey": "sF/TlxU9XaDN3QQBT/lu2Pw9qpD3XpDqLBfInBtff2A=", + "ips": [ + "45.136.155.50", + "45.136.155.51", + "45.136.155.53", + "45.136.155.55", + "45.136.155.58", + "45.136.155.193" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "hostname": "ua-iev.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "Ukraine", + "ips": [ + "143.244.46.66", + "143.244.46.76", + "143.244.46.103", + "143.244.46.108", + "143.244.46.110", + "143.244.46.113", + "143.244.46.120", + "143.244.46.226", + "143.244.46.231", + "143.244.46.233" + ] + }, + { + "vpn": "wireguard", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "hostname": "ua-iev.prod.surfshark.com", + "retroloc": "Ukraine", + "wgpubkey": "wy+PhWBP715KfBrsQR4P3JUalYc9a77FmZWQinwYLmo=", + "ips": [ + "143.244.46.66", + "143.244.46.76", + "143.244.46.103", + "143.244.46.108", + "143.244.46.110", + "143.244.46.113", + "143.244.46.120", + "143.244.46.226", + "143.244.46.231", + "143.244.46.233" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "region": "Middle East and Africa", + "city": "Dubai", + "hostname": "ae-dub.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "United Arab Emirates", + "ips": [ + "146.70.102.181", + "146.70.102.189", + "146.70.102.195", + "146.70.102.197" + ] + }, + { + "vpn": "wireguard", + "country": "United Arab Emirates", + "region": "Middle East and Africa", + "city": "Dubai", + "hostname": "ae-dub.prod.surfshark.com", + "retroloc": "United Arab Emirates", + "wgpubkey": "6dZGkg0iAMgQuOCGknAgBAqDEeJeBQ4Of5eblO4aNC8=", + "ips": [ + "146.70.102.181", + "146.70.102.189", + "146.70.102.195", + "146.70.102.197" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "hostname": "uk-edi.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "188.240.57.87", + "188.240.57.91", + "188.240.57.95", + "188.240.57.105", + "188.240.57.113", + "188.240.57.115", + "188.240.57.117", + "188.240.57.121", + "188.240.57.123", + "188.240.57.125" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "hostname": "uk-edi.prod.surfshark.com", + "wgpubkey": "f0fMBZNOzoTDfU28EKhtvYy3keiG5Jkh4fLBov1DI0U=", + "ips": [ + "188.240.57.87", + "188.240.57.91", + "188.240.57.95", + "188.240.57.105", + "188.240.57.113", + "188.240.57.115", + "188.240.57.117", + "188.240.57.121", + "188.240.57.123", + "188.240.57.125" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "hostname": "uk-gla.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK Glasgow", + "ips": [ + "185.108.105.37", + "185.108.105.39", + "185.108.105.77", + "185.108.105.105", + "185.108.105.107", + "185.108.105.113", + "185.108.105.117", + "185.108.105.131", + "185.108.105.133", + "185.108.105.145", + "185.108.105.147", + "185.108.105.236" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "hostname": "uk-gla.prod.surfshark.com", + "retroloc": "UK Glasgow", + "wgpubkey": "QiFHJ7wtwhXEztRqBjGrFphsFXtlAFWwMDgruFKq0XE=", + "ips": [ + "185.108.105.37", + "185.108.105.39", + "185.108.105.77", + "185.108.105.105", + "185.108.105.107", + "185.108.105.113", + "185.108.105.117", + "185.108.105.131", + "185.108.105.133", + "185.108.105.145", + "185.108.105.147", + "185.108.105.236" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London mp001", + "ips": [ + "206.189.119.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st001", + "ips": [ + "217.146.82.83" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st001.prod.surfshark.com", + "retroloc": "UK London st001", + "wgpubkey": "G+Jv9y9nMXdTIe92fXG4cYAKpsyIHmMwYSujCL+1uCo=", + "ips": [ + "217.146.82.83" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st002", + "ips": [ + "185.134.22.80" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st002.prod.surfshark.com", + "retroloc": "UK London st002", + "wgpubkey": "+zZlWRDv4SAZ1j1DpyZKBzFVM7yV0hgBNKf8/nG2hWo=", + "ips": [ + "185.134.22.80" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st003", + "ips": [ + "185.134.22.92" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st003.prod.surfshark.com", + "retroloc": "UK London st003", + "wgpubkey": "/Ae1VALCWv/m+TU80A+1NB7NLffdSGKyCgpgW9NRNEI=", + "ips": [ + "185.134.22.92" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st004", + "ips": [ + "185.44.76.186" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st004.prod.surfshark.com", + "retroloc": "UK London st004", + "wgpubkey": "G+gdwCKtJUgSce/FwjMSh0xeEhvk55jjbqhBnTYgg3o=", + "ips": [ + "185.44.76.186" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London st005", + "ips": [ + "185.44.76.188" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon-st005.prod.surfshark.com", + "retroloc": "UK London st005", + "wgpubkey": "QWhiKTxKWp9wo3blPDcMdA1Y/Vn69u2d8WQKQMTuoWw=", + "ips": [ + "185.44.76.188" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK London", + "ips": [ + "138.199.29.132", + "138.199.29.135", + "138.199.29.225", + "154.47.24.83", + "178.238.10.144", + "178.239.163.51", + "178.239.163.53", + "178.239.163.87", + "178.239.172.59", + "185.44.77.52", + "185.44.77.54", + "185.44.77.125", + "185.245.82.48", + "217.146.82.193" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "hostname": "uk-lon.prod.surfshark.com", + "retroloc": "UK London", + "wgpubkey": "iBJRXLZwXuWWrOZE1ZrAXEKMgV/z0WjG0Tks5rnWLBI=", + "ips": [ + "138.199.29.132", + "138.199.29.135", + "138.199.29.225", + "154.47.24.83", + "178.238.10.144", + "178.239.163.51", + "178.239.163.53", + "178.239.163.87", + "178.239.172.59", + "185.44.77.52", + "185.44.77.54", + "185.44.77.125", + "185.245.82.48", + "217.146.82.193" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "uk-man.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "UK Manchester", + "ips": [ + "37.120.159.131", + "37.120.159.133", + "37.120.159.141", + "37.120.233.171", + "37.120.233.173", + "37.120.233.237", + "84.39.114.157", + "86.106.136.117", + "89.238.135.45", + "89.238.138.235", + "91.90.121.213", + "103.214.44.48", + "103.214.44.51", + "103.219.21.1", + "103.219.21.3", + "103.219.21.40", + "103.219.21.112", + "103.219.21.130", + "139.28.176.21", + "139.28.176.51", + "139.28.176.149", + "194.37.98.101" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Manchester", + "hostname": "uk-man.prod.surfshark.com", + "retroloc": "UK Manchester", + "wgpubkey": "9R8He1cP8Laf5MT58FcaEYtPW/qnN3M9MQThIXOIvHs=", + "ips": [ + "37.120.159.131", + "37.120.159.133", + "37.120.159.141", + "37.120.233.171", + "37.120.233.173", + "37.120.233.237", + "84.39.114.157", + "86.106.136.117", + "89.238.135.45", + "89.238.138.235", + "91.90.121.213", + "103.214.44.48", + "103.214.44.51", + "103.219.21.1", + "103.219.21.3", + "103.219.21.40", + "103.219.21.112", + "103.219.21.130", + "139.28.176.21", + "139.28.176.51", + "139.28.176.149", + "194.37.98.101" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Ashburn", + "hostname": "us-ash.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "37.19.206.34", + "37.19.206.51", + "45.144.115.26", + "45.144.115.34", + "45.144.115.50", + "45.144.115.146", + "149.102.227.103", + "185.156.46.102", + "185.156.46.105", + "185.156.46.117" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Ashburn", + "hostname": "us-ash.prod.surfshark.com", + "wgpubkey": "9ef2f8mXHnAxx06lx4OxhtzASfJgv6YfEimuVyef6QE=", + "ips": [ + "37.19.206.34", + "37.19.206.51", + "45.144.115.26", + "45.144.115.34", + "45.144.115.50", + "45.144.115.146", + "149.102.227.103", + "185.156.46.102", + "185.156.46.105", + "185.156.46.117" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "hostname": "us-atl.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Atlanta", + "ips": [ + "92.119.16.32", + "92.119.16.40", + "92.119.19.10", + "92.119.19.50", + "92.119.19.56", + "92.119.19.58", + "92.119.19.64", + "138.199.2.135", + "138.199.2.137", + "156.146.47.232", + "156.146.47.237", + "185.238.28.21", + "195.181.171.226", + "195.181.171.231" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "hostname": "us-atl.prod.surfshark.com", + "retroloc": "US Atlanta", + "wgpubkey": "SgciXll6wGQhcyxPUdp0V0z6WwN9P3fqDoeh3N3xNjc=", + "ips": [ + "92.119.16.32", + "92.119.16.40", + "92.119.19.10", + "92.119.19.50", + "92.119.19.56", + "92.119.19.58", + "92.119.19.64", + "138.199.2.135", + "138.199.2.137", + "156.146.47.232", + "156.146.47.237", + "185.238.28.21", + "195.181.171.226", + "195.181.171.231" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Bend", + "hostname": "us-bdn.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Bend", + "ips": [ + "66.235.168.191", + "66.235.168.193", + "66.235.168.195", + "66.235.168.197", + "66.235.168.209", + "66.235.168.212", + "66.235.168.218", + "66.235.168.221", + "104.255.173.141", + "104.255.173.143" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Bend", + "hostname": "us-bdn.prod.surfshark.com", + "retroloc": "US Bend", + "wgpubkey": "YaxEFQHtwF/EGvf5s/aLlX5Jr0djKTV5oNcAcIwAz0E=", + "ips": [ + "66.235.168.191", + "66.235.168.193", + "66.235.168.195", + "66.235.168.197", + "66.235.168.209", + "66.235.168.212", + "66.235.168.218", + "66.235.168.221", + "104.255.173.141", + "104.255.173.143" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Boston", + "hostname": "us-bos.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Boston", + "ips": [ + "43.225.189.108", + "43.225.189.110", + "43.225.189.116", + "149.40.50.199", + "149.40.50.201", + "149.40.50.209", + "149.40.50.211", + "149.40.50.214", + "149.40.50.221" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Boston", + "hostname": "us-bos.prod.surfshark.com", + "retroloc": "US Boston", + "wgpubkey": "V0vpMcp0/586Y/q1EzW9PhM45JhypnCYgmrP0rzDEVw=", + "ips": [ + "43.225.189.108", + "43.225.189.110", + "43.225.189.116", + "149.40.50.199", + "149.40.50.201", + "149.40.50.209", + "149.40.50.211", + "149.40.50.214", + "149.40.50.221" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "hostname": "us-buf.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Buffalo", + "ips": [ + "172.93.148.163", + "172.93.148.165", + "172.93.148.171", + "172.93.148.179", + "172.93.148.181", + "172.93.148.187", + "172.93.148.189", + "172.93.153.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "hostname": "us-buf.prod.surfshark.com", + "retroloc": "US Buffalo", + "wgpubkey": "156ry2sOmv+I9KYTy2jR4/BLTnPT+Qn+DoCNqOon1ys=", + "ips": [ + "172.93.148.163", + "172.93.148.165", + "172.93.148.171", + "172.93.148.179", + "172.93.148.181", + "172.93.148.187", + "172.93.148.189", + "172.93.153.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "hostname": "us-clt.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Charlotte", + "ips": [ + "165.140.84.37", + "165.140.84.47", + "165.140.84.50", + "191.96.101.165", + "191.96.101.167", + "191.96.101.173", + "191.96.101.175", + "192.158.224.186", + "192.158.231.249", + "192.158.238.12", + "192.158.238.14", + "192.158.239.199" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "hostname": "us-clt.prod.surfshark.com", + "retroloc": "US Charlotte", + "wgpubkey": "tLnNDtNUOScxIU6t70ujsx1erSWOj9hWkWJD5iJwPwc=", + "ips": [ + "165.140.84.37", + "165.140.84.47", + "165.140.84.50", + "191.96.101.165", + "191.96.101.167", + "191.96.101.173", + "191.96.101.175", + "192.158.224.186", + "192.158.231.249", + "192.158.238.12", + "192.158.238.14", + "192.158.239.199" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "hostname": "us-chi.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Chicago", + "ips": [ + "138.199.42.129", + "138.199.42.135", + "138.199.42.141", + "138.199.42.166", + "138.199.42.171", + "138.199.42.184", + "143.244.60.167", + "143.244.60.182", + "149.34.240.97", + "149.34.240.102", + "149.34.240.107", + "149.34.240.112", + "154.47.25.11", + "154.47.25.98", + "154.47.25.100", + "154.47.25.112", + "185.246.209.55", + "185.246.209.57" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "hostname": "us-chi.prod.surfshark.com", + "retroloc": "US Chicago", + "wgpubkey": "DpMfulanF/MVHmt3AX4dqLqcyE0dpPqYBjDlWMaUI00=", + "ips": [ + "138.199.42.129", + "138.199.42.135", + "138.199.42.141", + "138.199.42.166", + "138.199.42.171", + "138.199.42.184", + "143.244.60.167", + "143.244.60.182", + "149.34.240.97", + "149.34.240.102", + "149.34.240.107", + "149.34.240.112", + "154.47.25.11", + "154.47.25.98", + "154.47.25.100", + "154.47.25.112", + "185.246.209.55", + "185.246.209.57" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "hostname": "us-dal.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Dallas", + "ips": [ + "2.56.189.72", + "2.56.189.82", + "2.56.189.96", + "2.56.189.98", + "2.56.189.106", + "2.56.189.114", + "2.56.189.122", + "2.56.189.176", + "2.56.189.178", + "37.19.200.98", + "37.19.200.103", + "37.19.200.105", + "37.19.200.110", + "37.19.200.114", + "169.150.254.71", + "169.150.254.73", + "169.150.254.78", + "169.150.254.81", + "169.150.254.89", + "169.150.254.101", + "212.102.40.66", + "212.102.40.78" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "hostname": "us-dal.prod.surfshark.com", + "retroloc": "US Dallas", + "wgpubkey": "0iwHQpV+rsOg38ogv4g4XMLJa51YqWY/yKWR9UEUMDk=", + "ips": [ + "2.56.189.72", + "2.56.189.82", + "2.56.189.96", + "2.56.189.98", + "2.56.189.106", + "2.56.189.114", + "2.56.189.122", + "2.56.189.176", + "2.56.189.178", + "37.19.200.98", + "37.19.200.103", + "37.19.200.105", + "37.19.200.110", + "37.19.200.114", + "169.150.254.71", + "169.150.254.73", + "169.150.254.78", + "169.150.254.81", + "169.150.254.89", + "169.150.254.101", + "212.102.40.66", + "212.102.40.78" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "hostname": "us-den.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Denver", + "ips": [ + "169.150.231.196", + "212.102.44.71", + "212.102.44.73", + "212.102.44.81", + "212.102.44.118", + "212.102.44.120" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "hostname": "us-den.prod.surfshark.com", + "retroloc": "US Denver", + "wgpubkey": "AnRLZKBwCfuGFZfoa3dsdjpcpvgFsQhASmjHXhIJLgM=", + "ips": [ + "169.150.231.196", + "212.102.44.71", + "212.102.44.73", + "212.102.44.81", + "212.102.44.118", + "212.102.44.120" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Detroit", + "hostname": "us-dtw.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Gahanna", + "ips": [ + "185.141.119.50", + "185.141.119.58", + "185.141.119.78", + "185.141.119.98", + "185.141.119.102", + "185.141.119.106", + "185.141.119.108", + "185.141.119.110" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Detroit", + "hostname": "us-dtw.prod.surfshark.com", + "retroloc": "US Gahanna", + "wgpubkey": "WFhlLK8H1pRzgMggza5NhBMjIcGhmsCqjR8+yFRfXhg=", + "ips": [ + "185.141.119.50", + "185.141.119.58", + "185.141.119.78", + "185.141.119.98", + "185.141.119.102", + "185.141.119.106", + "185.141.119.108", + "185.141.119.110" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Houston", + "hostname": "us-hou.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Houston", + "ips": [ + "37.19.221.66", + "37.19.221.76", + "37.19.221.78", + "37.19.221.84", + "37.19.221.88", + "37.19.221.91", + "107.179.20.155", + "107.179.20.157", + "107.179.20.163", + "107.179.20.173", + "107.179.20.181", + "107.179.20.195", + "107.179.20.197", + "107.179.20.203", + "107.179.20.205", + "107.179.20.213", + "149.40.58.2", + "149.40.58.4" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Houston", + "hostname": "us-hou.prod.surfshark.com", + "retroloc": "US Houston", + "wgpubkey": "1g84fGxVJokKXdMYEJKjN6/opyYN/YSHmrMyw0v6VnM=", + "ips": [ + "37.19.221.66", + "37.19.221.76", + "37.19.221.78", + "37.19.221.84", + "37.19.221.88", + "37.19.221.91", + "107.179.20.155", + "107.179.20.157", + "107.179.20.163", + "107.179.20.173", + "107.179.20.181", + "107.179.20.195", + "107.179.20.197", + "107.179.20.203", + "107.179.20.205", + "107.179.20.213", + "149.40.58.2", + "149.40.58.4" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "hostname": "us-kan.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Kansas City", + "ips": [ + "74.80.182.89", + "74.80.182.94", + "74.80.182.97", + "74.80.182.99" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Kansas City", + "hostname": "us-kan.prod.surfshark.com", + "retroloc": "US Kansas City", + "wgpubkey": "SWN/jzfK69ucEUqQyPejKb9wWxwUoOgG37YlgeCmvjg=", + "ips": [ + "74.80.182.89", + "74.80.182.94", + "74.80.182.97", + "74.80.182.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Las Vegas", + "hostname": "us-las.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Las Vegas", + "ips": [ + "45.89.173.179", + "45.89.173.181", + "45.89.173.211", + "79.110.53.11", + "185.242.5.229", + "185.242.5.235" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Las Vegas", + "hostname": "us-las.prod.surfshark.com", + "retroloc": "US Las Vegas", + "wgpubkey": "Nw5CG5BOvqb8GXVEKLOo7v3gGvP7WaUYlJT++c3c31g=", + "ips": [ + "45.89.173.179", + "45.89.173.181", + "45.89.173.211", + "79.110.53.11", + "185.242.5.229", + "185.242.5.235" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Latham", + "hostname": "us-ltm.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Latham", + "ips": [ + "154.16.169.91", + "154.16.169.93" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Latham", + "hostname": "us-ltm.prod.surfshark.com", + "retroloc": "US Latham", + "wgpubkey": "Smruh1SmMqi7CecjV/+yI4Sy62gpAr+Uddq+9K6iLB0=", + "ips": [ + "154.16.169.91", + "154.16.169.93" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "hostname": "us-lax.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Los Angeles", + "ips": [ + "89.187.187.76", + "89.187.187.88", + "138.199.35.7", + "169.150.203.201" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "hostname": "us-lax.prod.surfshark.com", + "retroloc": "US Los Angeles", + "wgpubkey": "m+L7BVQWDwU2TxjfspMRLkRctvmo7fOkd+eVk6KC5lM=", + "ips": [ + "89.187.187.76", + "89.187.187.88", + "138.199.35.7", + "169.150.203.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "hostname": "us-mia.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Miami", + "ips": [ + "89.38.227.187", + "89.187.173.201", + "146.70.45.171", + "146.70.45.181", + "146.70.183.197", + "146.70.183.205", + "149.34.250.56", + "149.102.224.194", + "149.102.224.199", + "149.102.224.201", + "149.102.224.204", + "149.102.224.211", + "149.102.224.214", + "212.102.61.136", + "212.102.61.138", + "212.102.61.146", + "212.102.61.148", + "212.102.61.150" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "hostname": "us-mia.prod.surfshark.com", + "retroloc": "US Miami", + "wgpubkey": "KvJ/jtWb8BsBI85OcZnOIJu9kfh12mCMR4cejWFpDCc=", + "ips": [ + "89.38.227.187", + "89.187.173.201", + "146.70.45.171", + "146.70.45.181", + "146.70.183.197", + "146.70.183.205", + "149.34.250.56", + "149.102.224.194", + "149.102.224.199", + "149.102.224.201", + "149.102.224.204", + "149.102.224.211", + "149.102.224.214", + "212.102.61.136", + "212.102.61.138", + "212.102.61.146", + "212.102.61.148", + "212.102.61.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City mp001", + "ips": [ + "45.55.60.159" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st001", + "ips": [ + "92.119.177.19" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st001.prod.surfshark.com", + "retroloc": "US New York City st001", + "wgpubkey": "7UmSjyjD6Sf4AnjYpBQGQYx9IGYa/sM8mZOQ+yJ5REo=", + "ips": [ + "92.119.177.19" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st002.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st002", + "ips": [ + "92.119.177.21" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st002.prod.surfshark.com", + "retroloc": "US New York City st002", + "wgpubkey": "PWjVpuAt3zKbKrxc30uiq2jOzKAVEZU402isK6Bunwc=", + "ips": [ + "92.119.177.21" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st003.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st003", + "ips": [ + "92.119.177.23" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st003.prod.surfshark.com", + "retroloc": "US New York City st003", + "wgpubkey": "nuqSzswFHh7PK/NdEmfXIe/UYgZlc+L7shI5e6OMUH4=", + "ips": [ + "92.119.177.23" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st004.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st004", + "ips": [ + "193.148.18.51" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st004.prod.surfshark.com", + "retroloc": "US New York City st004", + "wgpubkey": "RQ3ZRcXYnTl5lRjTuEolYsTfBRFtIeiZirFkBdcKw14=", + "ips": [ + "193.148.18.51" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st005.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City st005", + "ips": [ + "193.148.18.53" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc-st005.prod.surfshark.com", + "retroloc": "US New York City st005", + "wgpubkey": "5/AGlscGX/hFpNuAq06M+gIP1HUxfbox+0Pi4M9ybjE=", + "ips": [ + "193.148.18.53" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US New York City", + "ips": [ + "84.17.35.66", + "84.17.35.101", + "84.17.35.106", + "91.246.58.138", + "91.246.58.178", + "138.199.40.167", + "138.199.40.169", + "138.199.40.172", + "138.199.40.184", + "146.70.186.147", + "146.70.186.155", + "194.33.45.96" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "New York", + "hostname": "us-nyc.prod.surfshark.com", + "retroloc": "US New York City", + "wgpubkey": "rhuoCmHdyYrh0zW3J0YXZK4aN3It7DD26TXlACuWnwU=", + "ips": [ + "84.17.35.66", + "84.17.35.101", + "84.17.35.106", + "91.246.58.138", + "91.246.58.178", + "138.199.40.167", + "138.199.40.169", + "138.199.40.172", + "138.199.40.184", + "146.70.186.147", + "146.70.186.155", + "194.33.45.96" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "hostname": "us-phx.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Phoenix", + "ips": [ + "45.86.208.8", + "45.86.208.24", + "45.86.208.26", + "45.86.208.112", + "45.86.208.120", + "45.86.208.122", + "45.86.211.1", + "45.86.211.16", + "45.86.211.58", + "45.86.211.66" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Phoenix", + "hostname": "us-phx.prod.surfshark.com", + "retroloc": "US Phoenix", + "wgpubkey": "HDCyeD2+lw6KHVMu7Opkt4V4ikYZHzQNWmwklBMb4Ac=", + "ips": [ + "45.86.208.8", + "45.86.208.24", + "45.86.208.26", + "45.86.208.112", + "45.86.208.120", + "45.86.208.122", + "45.86.211.1", + "45.86.211.16", + "45.86.211.58", + "45.86.211.66" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "hostname": "us-slc.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Salt Lake City", + "ips": [ + "93.152.220.155", + "93.152.220.160", + "93.152.220.162", + "93.152.220.165", + "93.152.220.167", + "93.152.220.172", + "93.152.220.229", + "93.152.220.231", + "93.152.220.245", + "93.152.220.247" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Salt Lake City", + "hostname": "us-slc.prod.surfshark.com", + "retroloc": "US Salt Lake City", + "wgpubkey": "jxotWPy1jNzKzjqSqg6KkWnoOsp/FbrTK4+j9gluSFA=", + "ips": [ + "93.152.220.155", + "93.152.220.160", + "93.152.220.162", + "93.152.220.165", + "93.152.220.167", + "93.152.220.172", + "93.152.220.229", + "93.152.220.231", + "93.152.220.245", + "93.152.220.247" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo-mp001.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US San Francisco mp001", + "ips": [ + "165.232.53.25" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US San Francisco", + "ips": [ + "93.152.210.166", + "93.152.210.171", + "93.152.210.178", + "93.152.210.183", + "93.152.210.193", + "93.152.210.196", + "93.152.210.198", + "93.152.210.206", + "93.152.210.208", + "93.152.210.211" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Francisco", + "hostname": "us-sfo.prod.surfshark.com", + "retroloc": "US San Francisco", + "wgpubkey": "7SpGSSI78hf8jy689ec5Ql0/Gsq0LLHDmjEFsGUWl1k=", + "ips": [ + "93.152.210.166", + "93.152.210.171", + "93.152.210.178", + "93.152.210.183", + "93.152.210.193", + "93.152.210.196", + "93.152.210.198", + "93.152.210.206", + "93.152.210.208", + "93.152.210.211" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "San Jose", + "hostname": "us-sjc.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "149.36.48.68", + "149.36.48.77", + "149.36.48.82", + "149.36.48.164", + "156.146.54.53", + "156.146.54.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "San Jose", + "hostname": "us-sjc.prod.surfshark.com", + "wgpubkey": "sDDS1f/+IqVljMN7GzMFeAbNescQUTLIt0xio0W61Q0=", + "ips": [ + "149.36.48.68", + "149.36.48.77", + "149.36.48.82", + "149.36.48.164", + "156.146.54.53", + "156.146.54.69" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "hostname": "us-sea.prod.surfshark.com", + "tcp": true, + "udp": true, + "retroloc": "US Seatle", + "ips": [ + "84.17.41.75", + "138.199.12.52", + "138.199.12.55", + "149.102.254.4", + "149.102.254.7", + "149.102.254.9", + "149.102.254.29", + "212.102.46.35", + "212.102.46.39", + "212.102.46.42", + "212.102.46.45", + "212.102.46.46", + "212.102.46.51", + "212.102.46.54", + "212.102.46.65", + "212.102.46.69" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Seattle", + "hostname": "us-sea.prod.surfshark.com", + "retroloc": "US Seatle", + "wgpubkey": "SpMH/p90bg9ZAG6V2DWJQ9csWPVnKcDVppIp9Xul5G8=", + "ips": [ + "84.17.41.75", + "138.199.12.52", + "138.199.12.55", + "149.102.254.4", + "149.102.254.7", + "149.102.254.9", + "149.102.254.29", + "212.102.46.35", + "212.102.46.39", + "212.102.46.42", + "212.102.46.45", + "212.102.46.46", + "212.102.46.51", + "212.102.46.54", + "212.102.46.65", + "212.102.46.69" + ] + }, + { + "vpn": "openvpn", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "hostname": "uy-mvd.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "212.119.32.18", + "212.119.32.36" + ] + }, + { + "vpn": "wireguard", + "country": "Uruguay", + "region": "The Americas", + "city": "Montevideo", + "hostname": "uy-mvd.prod.surfshark.com", + "wgpubkey": "N4HQsZ7deamq3itB5Pmj9MhtjjDNYKY4YfiUFkfWlBo=", + "ips": [ + "212.119.32.18", + "212.119.32.36" + ] + }, + { + "vpn": "openvpn", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "hostname": "uz-tas.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "94.154.124.18", + "94.154.124.20", + "94.154.124.34", + "94.154.124.36" + ] + }, + { + "vpn": "wireguard", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "hostname": "uz-tas.prod.surfshark.com", + "wgpubkey": "CX6N+j5AfK2LVl3tfAop6/oXFb15tCnuDbPy7CbrKXw=", + "ips": [ + "94.154.124.18", + "94.154.124.20", + "94.154.124.34", + "94.154.124.36" + ] + }, + { + "vpn": "openvpn", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "hostname": "ve-car.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "45.149.3.18", + "45.149.3.20", + "45.149.3.34", + "45.149.3.36" + ] + }, + { + "vpn": "wireguard", + "country": "Venezuela", + "region": "The Americas", + "city": "Caracas", + "hostname": "ve-car.prod.surfshark.com", + "wgpubkey": "fK7yvbWdPrpginzYzhQu7IT6J+Mf18/K+VNrwyXqriU=", + "ips": [ + "45.149.3.18", + "45.149.3.20", + "45.149.3.34", + "45.149.3.36" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Ho Chi Minh City", + "hostname": "vn-hcm.prod.surfshark.com", + "tcp": true, + "udp": true, + "ips": [ + "83.97.112.34", + "83.97.112.36" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Ho Chi Minh City", + "hostname": "vn-hcm.prod.surfshark.com", + "wgpubkey": "Mioou38fh5H+3LWMpitLOWT3JaDGg2gXxqjl2eXkPFU=", + "ips": [ + "83.97.112.34", + "83.97.112.36" + ] + } + ] + }, + "torguard": { + "version": 3, + "timestamp": 1689696112, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "93.115.35.98", + "93.115.35.106", + "93.115.35.114", + "93.115.35.122", + "93.115.35.130", + "93.115.35.138", + "93.115.35.146", + "93.115.35.154", + "193.56.253.18", + "193.56.253.34", + "193.56.253.50", + "193.56.253.66", + "193.56.253.82", + "193.56.253.98", + "193.56.253.114", + "193.56.253.130", + "217.138.205.98", + "217.138.205.106", + "217.138.205.114", + "217.138.205.202", + "217.138.205.210", + "217.138.205.218" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "aus.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.155.2", + "37.120.155.10", + "37.120.155.18", + "37.120.155.26", + "37.120.155.34" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "bg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "89.249.73.130", + "89.249.73.162", + "89.249.73.170", + "89.249.73.250", + "185.104.186.2", + "185.232.21.34", + "185.232.21.42", + "185.232.21.210", + "185.232.21.242", + "185.232.21.250", + "194.187.251.34" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.180.130", + "45.133.180.138", + "45.133.180.146", + "45.133.180.154", + "45.133.180.162" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "bul.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.23.170", + "82.102.23.178", + "82.102.23.186", + "82.102.23.194", + "82.102.23.202", + "82.102.23.210", + "82.102.23.218" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "ca.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.137.2", + "146.70.137.18", + "146.70.137.34", + "146.70.137.42", + "146.70.137.50", + "146.70.137.58", + "146.70.137.66", + "146.70.137.74", + "146.70.137.82", + "146.70.137.90", + "146.70.137.98", + "146.70.137.106", + "146.70.137.114", + "146.70.137.122", + "146.70.137.130", + "146.70.137.138", + "146.70.137.146", + "146.70.137.154", + "146.70.137.194", + "146.70.137.210", + "146.70.137.218", + "146.70.137.226" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "cavan.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "107.181.189.34", + "107.181.189.35", + "107.181.189.36", + "107.181.189.37", + "107.181.189.38", + "107.181.189.39", + "107.181.189.40", + "107.181.189.41", + "107.181.189.42", + "107.181.189.43", + "107.181.189.44", + "107.181.189.45", + "107.181.189.46", + "107.181.189.47", + "107.181.189.48" + ] + }, + { + "vpn": "openvpn", + "country": "Chile", + "hostname": "ch.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.235.52.19", + "37.235.52.64", + "193.235.146.104" + ] + }, + { + "vpn": "openvpn", + "country": "Czech", + "hostname": "cz.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.189.115.98", + "185.189.115.103", + "185.189.115.108", + "185.189.115.113", + "185.189.115.118" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dn.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "2.58.46.138", + "2.58.46.146", + "2.58.46.154", + "2.58.46.162", + "2.58.46.170", + "2.58.46.178", + "45.12.221.2", + "45.12.221.10", + "45.12.221.18", + "45.12.221.26", + "45.12.221.34", + "45.12.221.42", + "185.245.84.74" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "fn.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.197.186", + "91.132.197.188", + "91.132.197.192" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "fr.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.158.138", + "93.177.75.2", + "93.177.75.10", + "93.177.75.26", + "93.177.75.34", + "93.177.75.42", + "93.177.75.50", + "93.177.75.58", + "93.177.75.66", + "93.177.75.74", + "93.177.75.90", + "93.177.75.98", + "93.177.75.106", + "93.177.75.114", + "93.177.75.122", + "93.177.75.130", + "93.177.75.138", + "93.177.75.146", + "93.177.75.154", + "93.177.75.162", + "93.177.75.202", + "93.177.75.218" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "hostname": "ger.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "93.177.73.66", + "93.177.73.74", + "93.177.73.82", + "93.177.73.90", + "93.177.73.98", + "93.177.73.106", + "93.177.73.114", + "93.177.73.122", + "93.177.73.130", + "93.177.73.138", + "93.177.73.146", + "93.177.73.154", + "93.177.73.194", + "93.177.73.202", + "93.177.73.210", + "93.177.73.218", + "93.177.73.226", + "93.177.73.234" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "gre.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.92.33.2", + "45.92.33.10", + "45.92.33.18" + ] + }, + { + "vpn": "openvpn", + "country": "Hong", + "city": "Kong", + "hostname": "hk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "86.107.104.82", + "86.107.104.90", + "86.107.104.98", + "86.107.104.106", + "89.45.6.18", + "89.45.6.202", + "89.45.6.210", + "89.45.6.218", + "89.45.6.226", + "89.45.6.234" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.144.98", + "37.120.144.106" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "ice.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.192.210", + "45.133.192.214", + "45.133.192.218", + "45.133.192.226", + "45.133.192.230", + "45.133.192.234", + "45.133.192.250", + "45.133.192.254" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "city": "Bangalore", + "hostname": "in.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.142.10", + "146.70.142.34", + "146.70.142.42" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "hostname": "ire.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "77.81.139.58", + "77.81.139.66", + "77.81.139.74", + "77.81.139.82", + "77.81.139.90" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "isr-loc1.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.191.204.154", + "185.191.204.155" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "hostname": "it.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.251.14", + "45.9.251.178", + "45.9.251.182", + "185.128.27.106", + "192.145.127.190" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "jp.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.76.58", + "146.70.76.66", + "146.70.76.74", + "146.70.76.82", + "146.70.76.90", + "146.70.76.98", + "146.70.76.106", + "146.70.76.114" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "hostname": "lux.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.204.58", + "5.253.204.66", + "5.253.204.74", + "5.253.204.82" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.180.2", + "45.133.180.10", + "45.133.180.18", + "45.133.180.26", + "45.133.180.34" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "md.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.131.106", + "178.175.131.114", + "178.175.138.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.156.172.146", + "206.217.216.3", + "206.217.216.6", + "206.217.216.7", + "206.217.216.9", + "206.217.216.10", + "206.217.216.11", + "206.217.216.12", + "206.217.216.13", + "206.217.216.14", + "206.217.216.15", + "206.217.216.16", + "206.217.216.17", + "206.217.216.18", + "206.217.216.19", + "206.217.216.20", + "206.217.216.21", + "206.217.216.22", + "206.217.216.23", + "206.217.216.24", + "206.217.216.25", + "206.217.216.26", + "206.217.216.27", + "206.217.216.28" + ] + }, + { + "vpn": "openvpn", + "country": "New", + "city": "Zealand", + "hostname": "nz.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "103.108.94.50", + "103.108.94.58", + "103.231.90.2", + "103.231.90.10", + "103.231.90.18", + "103.231.90.26", + "103.231.90.34", + "103.231.90.42", + "103.231.90.202" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "no.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.125.168.247", + "185.125.168.248", + "185.125.169.24", + "185.125.169.25", + "185.125.169.26", + "185.125.169.27", + "185.125.169.29", + "185.125.169.30", + "185.125.169.31", + "185.125.169.32", + "185.181.61.36", + "185.181.61.37", + "185.181.61.39", + "185.181.61.40", + "185.181.61.151" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "pl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.170", + "37.120.156.178", + "37.120.156.186", + "37.120.156.194", + "37.120.156.202" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "pg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "94.46.179.65", + "94.46.179.70", + "94.46.179.80" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "ro.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "31.14.252.18", + "31.14.252.90", + "31.14.252.146", + "31.14.252.178", + "89.40.71.106", + "89.46.103.106", + "93.120.27.162", + "185.45.14.122", + "185.45.14.250", + "185.45.15.106", + "194.59.248.202", + "194.59.248.210" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.25.2", + "82.102.25.226", + "91.245.253.134", + "91.245.253.138", + "92.119.178.22", + "92.119.178.26", + "185.200.116.250", + "185.200.117.138", + "185.200.117.142", + "185.200.117.186" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "slk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.122", + "193.37.255.130", + "193.37.255.138", + "193.37.255.146", + "193.37.255.162" + ] + }, + { + "vpn": "openvpn", + "country": "South", + "city": "Korea", + "hostname": "sk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "172.107.248.154", + "172.107.248.162", + "172.107.248.170", + "172.107.248.178", + "172.107.248.194" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "sp.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "89.238.178.206", + "89.238.178.234", + "192.145.124.174", + "192.145.124.186", + "192.145.124.190", + "192.145.124.226", + "192.145.124.230", + "192.145.124.234", + "192.145.124.238", + "192.145.124.242" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "swe.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.153.2", + "37.120.153.7", + "37.120.153.12", + "37.120.153.17", + "37.120.153.22", + "37.120.153.27", + "37.120.153.32", + "37.120.153.37", + "37.120.153.42", + "37.120.153.47", + "37.120.153.52", + "37.120.153.57", + "37.120.153.62", + "37.120.153.67", + "37.120.153.72", + "37.120.153.77", + "37.120.153.82", + "37.120.153.87", + "37.120.153.92", + "37.120.153.97", + "37.120.153.102", + "37.120.153.107" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "swiss.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.210", + "185.236.201.215", + "195.206.105.2", + "195.206.105.7", + "195.206.105.12", + "195.206.105.17", + "195.206.105.22", + "195.206.105.27", + "195.206.105.32", + "195.206.105.37", + "195.206.105.42", + "195.206.105.47", + "195.206.105.52", + "195.206.105.57", + "217.138.203.154", + "217.138.203.242" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", + "hostname": "tw.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.133.181.66" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "th.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "202.129.16.42", + "202.129.16.104", + "202.129.16.106", + "202.129.16.140", + "202.129.16.143" + ] + }, + { + "vpn": "openvpn", + "country": "UAE", + "hostname": "uae.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "45.9.249.158", + "45.9.249.238", + "45.9.250.10" + ] + }, + { + "vpn": "openvpn", + "country": "UK", + "city": "London", + "hostname": "uk.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.198.162", + "146.70.83.130", + "146.70.83.146", + "146.70.83.154", + "146.70.83.162", + "146.70.83.170", + "146.70.83.178", + "146.70.83.186", + "146.70.83.194", + "146.70.83.202", + "146.70.83.210", + "146.70.83.218", + "146.70.83.226", + "146.70.83.234", + "146.70.83.242", + "146.70.83.250", + "146.70.95.18", + "146.70.95.34", + "146.70.95.42", + "146.70.95.50", + "146.70.95.58", + "146.70.95.66", + "185.253.98.42" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Atlanta", + "hostname": "us-atl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.57.2", + "146.70.57.10", + "146.70.57.18", + "146.70.57.26", + "146.70.57.34", + "146.70.57.42", + "146.70.57.50", + "146.70.57.58", + "146.70.57.66", + "146.70.57.74" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Chicago", + "hostname": "us-chi-loc2.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.63.98", + "64.44.140.250", + "167.88.3.210", + "167.88.15.50" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Dallas", + "hostname": "us-dal.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "64.44.147.98", + "64.44.147.106", + "64.44.147.114", + "64.44.147.122", + "146.70.50.2", + "146.70.50.10", + "146.70.50.18", + "146.70.50.26", + "146.70.50.34", + "146.70.50.42", + "146.70.50.50", + "146.70.50.58", + "146.70.50.66", + "146.70.50.74", + "146.70.50.82", + "146.70.50.90", + "146.70.50.98", + "146.70.50.106", + "146.70.50.114", + "146.70.50.122", + "146.70.50.130", + "146.70.50.138", + "146.70.50.146", + "146.70.50.154", + "146.70.50.162", + "146.70.50.170", + "146.70.50.178", + "146.70.50.186", + "146.70.50.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Las Vegas", + "hostname": "us-lv.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.147.234", + "37.120.147.242", + "37.120.147.250", + "45.89.173.98", + "45.89.173.106", + "45.89.173.114", + "45.89.173.122", + "45.89.173.162", + "185.242.5.66", + "185.242.5.74", + "185.242.5.82", + "185.242.5.90", + "185.242.5.162", + "185.242.5.170", + "185.242.5.178", + "185.242.5.186" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Los Angeles", + "hostname": "us-la.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.147.130", + "37.120.214.114", + "37.120.214.122", + "91.219.212.242", + "91.219.212.250", + "139.28.216.74", + "139.28.216.218", + "146.70.49.2", + "146.70.49.10", + "146.70.49.18", + "146.70.49.26", + "146.70.49.34", + "146.70.49.42", + "146.70.49.50", + "146.70.49.58", + "146.70.49.66", + "146.70.49.74", + "146.70.49.82", + "146.70.49.90", + "146.70.49.98", + "146.70.49.106", + "146.70.49.114", + "185.253.161.186", + "217.138.217.2" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Miami", + "hostname": "us-fl.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.51.2", + "146.70.51.10", + "146.70.51.18", + "146.70.51.26", + "146.70.51.34", + "146.70.51.42", + "146.70.51.50", + "146.70.51.58", + "146.70.51.66", + "146.70.51.74", + "146.70.51.82", + "146.70.51.90", + "146.70.51.98", + "146.70.51.106", + "146.70.51.114", + "146.70.51.122", + "146.70.51.130", + "146.70.51.138", + "146.70.51.146", + "146.70.51.154", + "146.70.51.162", + "146.70.51.170", + "146.70.51.178", + "146.70.51.186", + "146.70.51.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New Jersey", + "hostname": "us-nj.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.34.2", + "146.70.34.10", + "146.70.34.18", + "146.70.34.26", + "146.70.34.34", + "146.70.34.42", + "146.70.34.50", + "146.70.34.58", + "146.70.34.66", + "146.70.34.74", + "146.70.34.82", + "146.70.34.90", + "146.70.34.98", + "146.70.34.106", + "146.70.34.114", + "146.70.34.122", + "146.70.34.130", + "146.70.34.138", + "146.70.34.146", + "146.70.34.154", + "146.70.34.162", + "146.70.34.170", + "146.70.34.178", + "146.70.34.186", + "146.70.34.194" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "New York", + "hostname": "us-ny.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "67.213.221.3", + "67.213.221.4", + "67.213.221.5", + "67.213.221.6", + "67.213.221.7", + "67.213.221.8", + "67.213.221.9", + "67.213.221.10", + "67.213.221.11", + "67.213.221.12", + "67.213.221.14", + "67.213.221.15", + "67.213.221.16", + "67.213.221.17", + "67.213.221.18", + "67.213.221.19", + "67.213.221.20", + "67.213.221.22", + "67.213.221.23", + "67.213.221.24", + "67.213.221.25", + "67.213.221.26", + "67.213.221.27" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "San Francisco", + "hostname": "us-sf.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "143.198.101.109", + "167.99.103.222", + "167.99.109.166", + "167.99.163.123", + "167.99.171.156", + "206.189.64.78", + "206.189.64.126", + "206.189.169.41", + "206.189.208.52", + "206.189.208.113", + "206.189.214.46", + "206.189.214.52", + "206.189.218.112", + "206.189.218.114", + "206.189.218.238" + ] + }, + { + "vpn": "openvpn", + "country": "USA", + "city": "Seattle", + "hostname": "us-sa.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "199.229.250.34", + "199.229.250.38", + "199.229.250.42", + "199.229.250.66", + "199.229.250.74", + "199.229.250.78", + "199.229.250.82", + "199.229.250.86", + "199.229.250.90", + "199.229.250.94", + "199.229.250.106", + "199.229.250.114", + "199.229.250.118", + "199.229.250.122", + "199.229.250.130", + "199.229.250.131", + "199.229.250.133", + "199.229.250.134", + "199.229.250.135", + "199.229.250.136", + "199.229.250.137", + "199.229.250.138", + "199.229.250.140", + "199.229.250.142", + "199.229.250.146", + "199.229.250.149" + ] + }, + { + "vpn": "openvpn", + "country": "serbia", + "hostname": "serbia.torguard.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.54.90", + "146.70.54.98" + ] + } + ] + }, + "vpn unlimited": { + "version": 1, + "timestamp": 1708534611, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "city": "Sydney", + "hostname": "au-syd.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.79.239.47", + "139.99.130.220", + "139.99.131.38", + "170.64.132.24", + "170.64.132.105", + "170.64.132.155", + "170.64.132.164", + "170.64.132.166", + "170.64.132.168" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "hostname": "at.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "50.7.115.19", + "95.164.36.217", + "95.164.36.221", + "95.164.36.222", + "95.164.36.223", + "176.120.65.51", + "176.120.65.52" + ] + }, + { + "vpn": "openvpn", + "country": "Belgium", + "hostname": "be.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.143.178" + ] + }, + { + "vpn": "openvpn", + "country": "Bosnia and Herzegovina", + "hostname": "ba.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.164.35.37" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "hostname": "br.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "216.238.105.38", + "216.238.111.125", + "216.238.116.106", + "216.238.117.122", + "216.238.117.129" + ] + }, + { + "vpn": "openvpn", + "country": "Bulgaria", + "hostname": "bg.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "77.91.100.3", + "77.91.100.61", + "77.91.100.173" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "hostname": "ca.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "192.99.6.164", + "192.99.6.166", + "192.99.7.170", + "192.99.14.158", + "192.99.37.199" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Toronto", + "hostname": "ca-tr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "104.254.90.34", + "104.254.90.58", + "162.253.131.106", + "184.75.213.42", + "184.75.213.50", + "184.75.213.194", + "204.187.100.82" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "city": "Vancouver", + "hostname": "ca-vn.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "162.221.202.17" + ] + }, + { + "vpn": "openvpn", + "country": "Costa Rica", + "hostname": "cr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "145.14.131.24", + "145.14.131.50", + "145.14.131.59", + "145.14.131.81", + "145.14.131.173", + "145.14.131.176", + "145.14.131.187", + "145.14.131.194" + ] + }, + { + "vpn": "openvpn", + "country": "Croatia", + "hostname": "hr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "85.10.51.3", + "85.10.56.3", + "85.10.56.4", + "85.10.56.100" + ] + }, + { + "vpn": "openvpn", + "country": "Cyprus", + "hostname": "cy.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "194.30.136.102", + "194.30.136.123" + ] + }, + { + "vpn": "openvpn", + "country": "Czech Republic", + "hostname": "cz.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.97.31", + "94.131.97.159", + "94.131.97.199", + "185.216.35.46" + ] + }, + { + "vpn": "openvpn", + "country": "Denmark", + "hostname": "dk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.194.174", + "89.45.7.90", + "185.206.224.50" + ] + }, + { + "vpn": "openvpn", + "country": "Estonia", + "hostname": "ee.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.181.23.37", + "94.131.15.52", + "95.164.8.18" + ] + }, + { + "vpn": "openvpn", + "country": "Finland", + "hostname": "fi.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.159.249.138", + "45.159.249.162", + "45.159.249.205" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "hostname": "fr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "51.159.99.123", + "62.210.38.83", + "62.210.132.5", + "62.210.132.12", + "62.210.188.244", + "62.210.204.161", + "62.210.206.27", + "62.210.207.15", + "195.154.166.20", + "195.154.169.66", + "195.154.199.175", + "195.154.204.36", + "195.154.221.54", + "195.154.222.168" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "city": "Roubaix", + "hostname": "fr-rbx.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "51.255.71.16", + "147.135.137.107", + "151.80.27.199" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "city": "Düsseldorf", + "hostname": "de-dus.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "85.14.243.42", + "146.0.32.121", + "146.0.42.77" + ] + }, + { + "vpn": "openvpn", + "country": "Greece", + "hostname": "gr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.8.45", + "94.131.8.47" + ] + }, + { + "vpn": "openvpn", + "country": "Hungary", + "hostname": "hu.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.182.38.132", + "5.182.38.193", + "77.91.72.105" + ] + }, + { + "vpn": "openvpn", + "country": "Iceland", + "hostname": "is.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.194.161.20", + "91.194.161.21", + "91.194.161.22" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "hostname": "in.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "162.218.95.14", + "198.145.227.50", + "198.145.227.51", + "198.145.227.52", + "198.145.227.53", + "198.145.227.54", + "198.145.227.55", + "198.145.227.56", + "198.145.227.57", + "198.145.227.58", + "198.145.227.59", + "198.145.227.60", + "198.145.227.61", + "198.145.227.62", + "198.145.227.63", + "198.145.227.64", + "198.145.227.65", + "198.145.227.66", + "198.145.227.67", + "198.145.227.68", + "198.145.227.69", + "198.145.227.70" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "city": "Dublin", + "hostname": "ie-dub.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.108.129.58", + "188.241.178.118", + "194.4.51.233", + "194.4.51.234", + "194.4.51.235" + ] + }, + { + "vpn": "openvpn", + "country": "Isle of Man", + "hostname": "im.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.235.55.14", + "37.235.55.45", + "37.235.55.57", + "37.235.55.62", + "37.235.55.68", + "37.235.55.240", + "192.71.211.15" + ] + }, + { + "vpn": "openvpn", + "country": "Israel", + "hostname": "il.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.225.218.142", + "91.225.218.143", + "91.225.218.144", + "193.182.144.23" + ] + }, + { + "vpn": "openvpn", + "country": "Italy", + "city": "Milan", + "hostname": "it-mil.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.193.5.50" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "hostname": "jp.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.76.49.6", + "45.76.220.224", + "66.42.38.10", + "85.208.110.122", + "107.191.60.241", + "108.160.139.177", + "139.162.125.238", + "139.180.197.252", + "139.180.206.179" + ] + }, + { + "vpn": "openvpn", + "country": "Korea", + "hostname": "kr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "141.164.34.194", + "141.164.39.45", + "158.247.213.101" + ] + }, + { + "vpn": "openvpn", + "country": "Kuala Lumpur", + "hostname": "mys.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "111.90.141.34" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "hostname": "lt.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.14.222", + "94.131.14.223", + "94.131.14.224", + "94.131.14.225", + "94.131.14.226" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "hostname": "mx.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "216.238.66.6", + "216.238.66.40", + "216.238.69.229", + "216.238.72.203", + "216.238.73.64", + "216.238.73.252", + "216.238.75.254", + "216.238.76.115", + "216.238.77.95", + "216.238.78.81", + "216.238.79.163", + "216.238.79.200", + "216.238.80.169", + "216.238.81.55", + "216.238.82.61", + "216.238.83.73" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "hostname": "md.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.67.229.191", + "45.67.229.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "hostname": "nl.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.32.236.232", + "50.7.176.51", + "50.7.176.116", + "82.196.12.12", + "95.85.21.9", + "95.85.21.11", + "95.85.21.12", + "95.85.21.13", + "95.179.150.23", + "199.247.27.95" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "hostname": "nz.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.99.133.64", + "185.99.133.177" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "hostname": "no.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.225.217.27", + "91.225.217.28", + "91.225.217.29", + "91.225.217.30", + "91.225.217.31" + ] + }, + { + "vpn": "openvpn", + "country": "Oman", + "hostname": "om.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.226.124.110" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "hostname": "pl.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "37.120.156.234" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "hostname": "pt.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.10.98", + "94.131.10.99", + "94.131.10.100", + "94.131.10.101" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "hostname": "ro.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "77.81.98.70", + "185.144.83.11", + "185.144.83.13" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg-free.vpnunlimitedapp.com", + "udp": true, + "free": true, + "ips": [ + "178.128.48.177", + "178.128.117.139", + "188.166.177.236", + "206.189.80.158" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "hostname": "sg.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "139.99.62.61", + "143.198.207.137", + "143.198.207.145", + "143.198.207.218", + "143.198.208.19", + "143.198.208.211", + "143.198.212.21", + "143.198.216.60", + "143.198.216.119", + "143.198.216.142", + "143.198.216.213", + "159.65.0.220", + "159.223.48.163", + "159.223.63.231", + "159.223.85.125", + "159.223.91.73", + "174.138.22.2", + "174.138.24.49", + "178.128.85.6", + "178.128.107.38", + "209.97.161.18" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "hostname": "sk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.252.23.93", + "5.252.23.194", + "45.89.54.32", + "45.89.54.232", + "45.89.54.234" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "hostname": "si.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "91.132.94.91", + "91.132.94.240", + "192.71.244.28", + "192.71.244.38" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "hostname": "za.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "129.232.129.157", + "129.232.130.179", + "129.232.130.186", + "129.232.130.187", + "129.232.133.41", + "129.232.134.122", + "129.232.219.195", + "129.232.219.196" + ] + }, + { + "vpn": "openvpn", + "country": "Spain", + "hostname": "es.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "65.20.97.197", + "176.120.74.254", + "185.231.204.2", + "185.231.204.4", + "185.231.204.9", + "185.231.204.14", + "185.231.204.16", + "208.85.19.114", + "208.85.21.129" + ] + }, + { + "vpn": "openvpn", + "country": "Sweden", + "hostname": "se.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "70.34.201.81", + "70.34.202.181", + "70.34.214.117", + "94.131.98.211", + "94.131.98.217", + "94.131.98.218", + "94.131.115.4", + "94.131.115.66" + ] + }, + { + "vpn": "openvpn", + "country": "Switzerland", + "hostname": "ch.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "94.131.12.81", + "94.131.12.83", + "94.131.12.90", + "94.131.12.96", + "94.131.12.104", + "94.131.12.116" + ] + }, + { + "vpn": "openvpn", + "country": "Thailand", + "hostname": "th.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.64.186.97" + ] + }, + { + "vpn": "openvpn", + "country": "Turkey", + "hostname": "tr.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.17.115.62", + "185.73.202.218", + "185.123.101.149" + ] + }, + { + "vpn": "openvpn", + "country": "United Arab Emirates", + "hostname": "ae.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.9.249.201", + "45.9.249.202", + "45.9.249.209", + "45.9.249.211", + "45.9.249.216", + "45.9.250.143", + "45.9.250.145", + "147.78.0.91", + "147.78.0.93" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "hostname": "uk.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.152.213.186", + "77.245.65.2", + "88.150.180.82", + "88.150.224.74", + "176.227.198.122" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-cv.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.101.143.66", + "5.101.169.146", + "178.159.10.78" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "city": "London", + "hostname": "uk-lon.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "5.101.136.154", + "78.110.160.6" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "us-stream.vpnunlimitedapp.com", + "udp": true, + "stream": true, + "ips": [ + "64.227.111.143", + "128.199.9.51", + "138.197.203.142", + "143.110.156.9", + "143.110.225.79", + "159.89.128.183", + "161.35.236.242", + "164.90.144.44", + "165.227.49.171", + "167.99.96.113", + "178.128.79.75", + "192.241.194.208", + "198.199.96.52", + "198.199.97.247", + "198.199.103.88", + "198.199.103.243", + "198.199.105.87", + "198.199.114.155", + "206.189.165.44", + "206.189.211.205" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "hostname": "us.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "108.181.57.249", + "108.181.132.151", + "108.181.132.193", + "108.181.132.195", + "172.106.167.229", + "199.115.117.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Chicago", + "hostname": "us-chi.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "66.23.205.226", + "108.181.62.129", + "108.181.62.187", + "108.181.62.189", + "108.181.62.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Dallas", + "hostname": "us-dal.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "172.241.113.19", + "172.241.115.99" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Denver", + "hostname": "us-den.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.237.26.20", + "23.237.26.25", + "23.237.26.26", + "23.237.26.67", + "23.237.26.68", + "23.237.26.74" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Houston", + "hostname": "us-hou.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "66.187.75.122", + "162.218.228.194", + "162.218.228.196", + "162.218.229.106" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Las Vegas", + "hostname": "us-lv.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "185.242.5.18", + "185.242.5.22" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Los Angeles", + "hostname": "us-la.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.83.37.209", + "23.83.37.213", + "45.136.131.40", + "64.31.33.154", + "69.162.99.70" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Miami", + "hostname": "us-mia.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "45.32.174.147", + "45.77.74.249", + "45.77.95.122", + "45.77.161.227", + "45.77.165.103", + "45.77.196.77", + "140.82.29.71", + "144.202.44.138", + "144.202.44.229", + "149.28.111.111", + "207.246.75.109" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "us-ny-free.vpnunlimitedapp.com", + "udp": true, + "free": true, + "ips": [ + "64.227.9.14", + "137.184.131.0", + "137.184.199.252", + "137.184.218.195", + "143.198.124.34" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "New York", + "hostname": "us-ny.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.105.134.162", + "64.42.178.202", + "64.42.178.226" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Salt Lake City", + "hostname": "us-slc.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "209.95.53.223", + "209.95.53.225" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "San Francisco", + "hostname": "us-sf.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "209.58.135.75", + "209.58.135.106", + "209.58.137.71" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "city": "Seattle", + "hostname": "us-sea.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "23.81.209.137", + "64.120.123.48", + "108.62.60.89", + "216.244.82.50" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "hostname": "vn.vpnunlimitedapp.com", + "udp": true, + "ips": [ + "146.196.67.7" + ] + } + ] + }, + "vpnsecure": { + "version": 1, + "timestamp": 1714383841, + "servers": [ + { + "vpn": "openvpn", + "country": "Australia", + "region": "New South Wales", + "city": "Sydney", + "hostname": "au1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "103.75.119.47" + ] + }, + { + "vpn": "openvpn", + "country": "Brazil", + "region": "São Paulo", + "city": "São Paulo", + "hostname": "br1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "109.104.155.30" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca0.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "198.100.159.195" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "149.56.46.132" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "158.69.7.165" + ] + }, + { + "vpn": "openvpn", + "country": "Canada", + "region": "Quebec", + "city": "Montreal", + "hostname": "ca3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "158.69.7.185" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Flanders", + "city": "Antwerp", + "hostname": "fr2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "5.135.35.186" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Flanders", + "city": "Antwerp", + "hostname": "fr4.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "5.135.35.180" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Hauts-de-France", + "city": "Roubaix", + "hostname": "fr1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "151.80.148.41" + ] + }, + { + "vpn": "openvpn", + "country": "France", + "region": "Hauts-de-France", + "city": "Roubaix", + "hostname": "fr3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "151.80.148.150" + ] + }, + { + "vpn": "openvpn", + "country": "India", + "region": "Maharashtra", + "city": "Mumbai", + "hostname": "in1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "103.26.10.96" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie1.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.197.164" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.199.37" + ] + }, + { + "vpn": "openvpn", + "country": "Ireland", + "region": "Leinster", + "city": "Dublin", + "hostname": "ie3.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "185.224.196.102" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Île-de-France", + "city": "Paris", + "hostname": "nl1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "51.158.252.2" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Lower Silesia", + "city": "Wroclaw", + "hostname": "pl1.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "87.98.234.252" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "region": "Moscow", + "city": "Moscow", + "hostname": "ru1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "213.183.56.143" + ] + }, + { + "vpn": "openvpn", + "country": "Russia", + "region": "Moscow", + "city": "Moscow", + "hostname": "ru2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "213.183.56.232" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Kyiv City", + "city": "Kyiv", + "hostname": "ua1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "139.28.38.117" + ] + }, + { + "vpn": "openvpn", + "country": "Ukraine", + "region": "Kyiv City", + "city": "Kyiv", + "hostname": "ua2.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "139.28.39.103" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Erith", + "hostname": "uk2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "51.195.174.153" + ] + }, + { + "vpn": "openvpn", + "country": "United Kingdom", + "region": "England", + "city": "Erith", + "hostname": "uk4.isponeder.com", + "tcp": true, + "udp": true, + "premium": true, + "ips": [ + "51.195.174.150" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us10.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.62" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us6.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.58" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us7.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.59" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us8.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.60" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "Georgia", + "city": "Atlanta", + "hostname": "us9.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "64.42.181.61" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us1.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.26" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us2.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.27" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us3.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.28" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us4.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.29" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "New York", + "city": "New York", + "hostname": "us5.isponeder.com", + "tcp": true, + "udp": true, + "ips": [ + "172.96.166.30" + ] + } + ] + }, + "vyprvpn": { + "version": 3, + "timestamp": 1709814473, + "servers": [ + { + "vpn": "openvpn", + "region": "Algeria", + "hostname": "dz1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.104.254" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "hostname": "ar1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Melbourne", + "hostname": "au2.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Perth", + "hostname": "au3.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.19" + ] + }, + { + "vpn": "openvpn", + "region": "Australia Sydney", + "hostname": "au1.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.18" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "hostname": "at1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.148.254" + ] + }, + { + "vpn": "openvpn", + "region": "Bahrain", + "hostname": "bh1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.63.254" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "hostname": "be1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.145.254" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "hostname": "br1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.20" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "hostname": "bg1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.167.254" + ] + }, + { + "vpn": "openvpn", + "region": "Canada", + "hostname": "ca1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.33" + ] + }, + { + "vpn": "openvpn", + "region": "Columbia", + "hostname": "co1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.21" + ] + }, + { + "vpn": "openvpn", + "region": "Costa Rica", + "hostname": "cr1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.22" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "hostname": "cz1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.164.254" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "hostname": "dk1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.154.254" + ] + }, + { + "vpn": "openvpn", + "region": "Dubai", + "hostname": "ae1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.101.254" + ] + }, + { + "vpn": "openvpn", + "region": "Egypt", + "hostname": "eg1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.10.254" + ] + }, + { + "vpn": "openvpn", + "region": "El Salvador", + "hostname": "sv1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.20" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "hostname": "fi1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.166.254" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "hostname": "fr1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.141.254" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "hostname": "de1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.128.254" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "hostname": "gr1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.11.254" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "hostname": "hk1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.36" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "hostname": "is1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.17.254" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "hostname": "in1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.60.254" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "hostname": "id1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.20" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "hostname": "ie1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.19.254" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "hostname": "il1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.59.254" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "hostname": "it1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.161.254" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "hostname": "jp1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.113.18" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "hostname": "lv1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.174.254" + ] + }, + { + "vpn": "openvpn", + "region": "Liechtenstein", + "hostname": "li1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.177.254" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "hostname": "lt1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.173.254" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "hostname": "lu1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.165.254" + ] + }, + { + "vpn": "openvpn", + "region": "Macao", + "hostname": "mo1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.31.254" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "hostname": "my1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.21" + ] + }, + { + "vpn": "openvpn", + "region": "Maldives", + "hostname": "mv1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.26" + ] + }, + { + "vpn": "openvpn", + "region": "Marshall Islands", + "hostname": "mh1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.25" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "hostname": "mx1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.23" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "hostname": "eu1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.135.254" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "hostname": "nz1.vyprvpn.com", + "udp": true, + "ips": [ + "64.253.88.20" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "hostname": "no1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.163.254" + ] + }, + { + "vpn": "openvpn", + "region": "Pakistan", + "hostname": "pk1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.58.254" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "hostname": "pa1.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.23" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "hostname": "ph1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.22" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "hostname": "pl1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.170.254" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "hostname": "pt1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.168.254" + ] + }, + { + "vpn": "openvpn", + "region": "Qatar", + "hostname": "qa1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.62.254" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "hostname": "ro1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.171.254" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "hostname": "ru1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.151.254" + ] + }, + { + "vpn": "openvpn", + "region": "Saudi Arabia", + "hostname": "sa1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.61.254" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "hostname": "sg1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.18" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "hostname": "sk1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.176.254" + ] + }, + { + "vpn": "openvpn", + "region": "Slovenia", + "hostname": "si1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.175.254" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "hostname": "kr1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.113.19" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "hostname": "es1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.157.254" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "hostname": "se1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.159.254" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "hostname": "ch1.vyprvpn.com", + "udp": true, + "ips": [ + "31.6.41.254" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "hostname": "tw1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.32.254" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "hostname": "th1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.23" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "hostname": "tr1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.169.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Austin", + "hostname": "us3.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.27" + ] + }, + { + "vpn": "openvpn", + "region": "USA Chicago", + "hostname": "us6.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.21" + ] + }, + { + "vpn": "openvpn", + "region": "USA Los Angeles", + "hostname": "us1.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.28.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Miami", + "hostname": "us4.vyprvpn.com", + "udp": true, + "ips": [ + "216.168.16.18" + ] + }, + { + "vpn": "openvpn", + "region": "USA New York", + "hostname": "us5.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.31" + ] + }, + { + "vpn": "openvpn", + "region": "USA San Francisco", + "hostname": "us7.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.29.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Seattle", + "hostname": "us8.vyprvpn.com", + "udp": true, + "ips": [ + "69.167.30.254" + ] + }, + { + "vpn": "openvpn", + "region": "USA Washington DC", + "hostname": "us2.vyprvpn.com", + "udp": true, + "ips": [ + "209.160.115.254" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "hostname": "ua1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.172.254" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "hostname": "uk1.vyprvpn.com", + "udp": true, + "ips": [ + "178.208.168.254" + ] + }, + { + "vpn": "openvpn", + "region": "Uruguay", + "hostname": "uy1.vyprvpn.com", + "udp": true, + "ips": [ + "128.90.34.25" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "hostname": "vn1.vyprvpn.com", + "udp": true, + "ips": [ + "209.99.1.24" + ] + } + ] + }, + "wevpn": { + "version": 2, + "timestamp": 1679755674, + "servers": [ + { + "vpn": "openvpn", + "city": "Amsterdam", + "hostname": "amsterdam.wevpn.com", + "udp": true, + "ips": [ + "89.238.177.234" + ] + }, + { + "vpn": "openvpn", + "city": "Athens", + "hostname": "athens.wevpn.com", + "udp": true, + "ips": [ + "185.51.134.210" + ] + }, + { + "vpn": "openvpn", + "city": "Atlanta", + "hostname": "atlanta.wevpn.com", + "udp": true, + "ips": [ + "104.223.91.146" + ] + }, + { + "vpn": "openvpn", + "city": "Auckland", + "hostname": "auckland.wevpn.com", + "udp": true, + "ips": [ + "103.108.94.226" + ] + }, + { + "vpn": "openvpn", + "city": "Belgrade", + "hostname": "belgrade.wevpn.com", + "udp": true, + "ips": [ + "37.120.193.170" + ] + }, + { + "vpn": "openvpn", + "city": "Brussels", + "hostname": "brussels.wevpn.com", + "udp": true, + "ips": [ + "77.243.191.178" + ] + }, + { + "vpn": "openvpn", + "city": "Bucharest", + "hostname": "bucharest.wevpn.com", + "udp": true, + "ips": [ + "86.105.25.162" + ] + }, + { + "vpn": "openvpn", + "city": "Budapest", + "hostname": "budapest.wevpn.com", + "udp": true, + "ips": [ + "185.128.26.130" + ] + }, + { + "vpn": "openvpn", + "city": "Buenos Aires", + "hostname": "buenosaires.wevpn.com", + "udp": true, + "ips": [ + "131.255.4.140" + ] + }, + { + "vpn": "openvpn", + "city": "Cairo", + "hostname": "cairo.wevpn.com", + "udp": true, + "ips": [ + "188.214.122.138" + ] + }, + { + "vpn": "openvpn", + "city": "Chennai", + "hostname": "chennai.wevpn.com", + "udp": true, + "ips": [ + "169.38.107.52" + ] + }, + { + "vpn": "openvpn", + "city": "Chicago", + "hostname": "chicago.wevpn.com", + "udp": true, + "ips": [ + "69.39.239.72" + ] + }, + { + "vpn": "openvpn", + "city": "Copenhagen", + "hostname": "copenhagen.wevpn.com", + "udp": true, + "ips": [ + "37.120.194.82" + ] + }, + { + "vpn": "openvpn", + "city": "Dallas", + "hostname": "dallas.wevpn.com", + "udp": true, + "ips": [ + "194.110.112.74" + ] + }, + { + "vpn": "openvpn", + "city": "Denizli", + "hostname": "bursa.wevpn.com", + "udp": true, + "ips": [ + "89.252.132.138" + ] + }, + { + "vpn": "openvpn", + "city": "Denver", + "hostname": "denver.wevpn.com", + "udp": true, + "ips": [ + "70.39.71.2" + ] + }, + { + "vpn": "openvpn", + "city": "Dubai", + "hostname": "dubai.wevpn.com", + "udp": true, + "ips": [ + "217.138.193.42" + ] + }, + { + "vpn": "openvpn", + "city": "Dublin", + "hostname": "dublin.wevpn.com", + "udp": true, + "ips": [ + "217.138.222.138" + ] + }, + { + "vpn": "openvpn", + "city": "Frankfurt", + "hostname": "frankfurt.wevpn.com", + "udp": true, + "ips": [ + "45.141.152.178" + ] + }, + { + "vpn": "openvpn", + "city": "Hanoi", + "hostname": "hanoi.wevpn.com", + "udp": true, + "ips": [ + "188.214.152.194" + ] + }, + { + "vpn": "openvpn", + "city": "Helsinki", + "hostname": "helsinki.wevpn.com", + "udp": true, + "ips": [ + "185.212.149.152" + ] + }, + { + "vpn": "openvpn", + "city": "Hong Kong", + "hostname": "hongkong.wevpn.com", + "udp": true, + "ips": [ + "84.17.37.55" + ] + }, + { + "vpn": "openvpn", + "city": "Jakarta", + "hostname": "jakarta.wevpn.com", + "udp": true, + "ips": [ + "45.133.181.58" + ] + }, + { + "vpn": "openvpn", + "city": "Johannesburg", + "hostname": "johannesburg.wevpn.com", + "udp": true, + "ips": [ + "102.165.20.38" + ] + }, + { + "vpn": "openvpn", + "city": "Kiev", + "hostname": "kyiv.wevpn.com", + "udp": true, + "ips": [ + "37.19.218.197" + ] + }, + { + "vpn": "openvpn", + "city": "Lagos", + "hostname": "lagos.wevpn.com", + "udp": true, + "ips": [ + "102.129.144.142" + ] + }, + { + "vpn": "openvpn", + "city": "Lisbon", + "hostname": "lisbon.wevpn.com", + "udp": true, + "ips": [ + "185.90.57.152" + ] + }, + { + "vpn": "openvpn", + "city": "London", + "hostname": "london.wevpn.com", + "udp": true, + "ips": [ + "45.141.154.2" + ] + }, + { + "vpn": "openvpn", + "city": "London-PF", + "hostname": "london-pf.wevpn.com", + "udp": true, + "ips": [ + "77.243.177.78" + ] + }, + { + "vpn": "openvpn", + "city": "Los Angeles", + "hostname": "losangeles.wevpn.com", + "udp": true, + "ips": [ + "45.152.182.82" + ] + }, + { + "vpn": "openvpn", + "city": "Los Angeles-PF", + "hostname": "losangeles-pf.wevpn.com", + "udp": true, + "ips": [ + "66.55.92.75" + ] + }, + { + "vpn": "openvpn", + "city": "Luxembourg", + "hostname": "luxembourg.wevpn.com", + "udp": true, + "ips": [ + "5.253.204.194" + ] + }, + { + "vpn": "openvpn", + "city": "Madrid", + "hostname": "madrid.wevpn.com", + "udp": true, + "ips": [ + "45.152.183.242" + ] + }, + { + "vpn": "openvpn", + "city": "Manchester", + "hostname": "manchester.wevpn.com", + "udp": true, + "ips": [ + "86.106.136.98" + ] + }, + { + "vpn": "openvpn", + "city": "Manila", + "hostname": "manila.wevpn.com", + "udp": true, + "ips": [ + "188.214.125.106" + ] + }, + { + "vpn": "openvpn", + "city": "Melbourne", + "hostname": "melbourne.wevpn.com", + "udp": true, + "ips": [ + "116.206.230.130" + ] + }, + { + "vpn": "openvpn", + "city": "Mexico City", + "hostname": "mexico.wevpn.com", + "udp": true, + "ips": [ + "169.57.35.97" + ] + }, + { + "vpn": "openvpn", + "city": "Miami", + "hostname": "miami.wevpn.com", + "udp": true, + "ips": [ + "96.47.224.2" + ] + }, + { + "vpn": "openvpn", + "city": "Milan", + "hostname": "milan.wevpn.com", + "udp": true, + "ips": [ + "217.138.197.138" + ] + }, + { + "vpn": "openvpn", + "city": "Montreal", + "hostname": "montreal.wevpn.com", + "udp": true, + "ips": [ + "217.138.200.242" + ] + }, + { + "vpn": "openvpn", + "city": "Moscow", + "hostname": "moscow.wevpn.com", + "udp": true, + "ips": [ + "80.93.181.194" + ] + }, + { + "vpn": "openvpn", + "city": "New Jersey", + "hostname": "newjersey.wevpn.com", + "udp": true, + "ips": [ + "23.226.131.146" + ] + }, + { + "vpn": "openvpn", + "city": "New York", + "hostname": "newyork.wevpn.com", + "udp": true, + "ips": [ + "217.138.206.98" + ] + }, + { + "vpn": "openvpn", + "city": "New York-PF", + "hostname": "newyork-pf.wevpn.com", + "udp": true, + "ips": [ + "188.241.179.2" + ] + }, + { + "vpn": "openvpn", + "city": "Oslo", + "hostname": "oslo.wevpn.com", + "udp": true, + "ips": [ + "84.247.50.10" + ] + }, + { + "vpn": "openvpn", + "city": "Oulu", + "hostname": "oulu.wevpn.com", + "udp": true, + "ips": [ + "188.126.89.174" + ] + }, + { + "vpn": "openvpn", + "city": "Paris", + "hostname": "paris.wevpn.com", + "udp": true, + "ips": [ + "37.120.136.234" + ] + }, + { + "vpn": "openvpn", + "city": "Phoenix", + "hostname": "phoenix.wevpn.com", + "udp": true, + "ips": [ + "170.130.15.34" + ] + }, + { + "vpn": "openvpn", + "city": "Prague", + "hostname": "prague.wevpn.com", + "udp": true, + "ips": [ + "217.138.199.138" + ] + }, + { + "vpn": "openvpn", + "city": "Salt Lake City", + "hostname": "saltlakecity.wevpn.com", + "udp": true, + "ips": [ + "107.182.234.233" + ] + }, + { + "vpn": "openvpn", + "city": "San Jose", + "hostname": "sanjose.wevpn.com", + "udp": true, + "ips": [ + "66.115.157.226" + ] + }, + { + "vpn": "openvpn", + "city": "Sao Paulo", + "hostname": "saopaulo.wevpn.com", + "udp": true, + "ips": [ + "177.54.152.89" + ] + }, + { + "vpn": "openvpn", + "city": "Seattle", + "hostname": "seattle.wevpn.com", + "udp": true, + "ips": [ + "104.140.21.178" + ] + }, + { + "vpn": "openvpn", + "city": "Seoul", + "hostname": "seoul.wevpn.com", + "udp": true, + "ips": [ + "169.56.83.206" + ] + }, + { + "vpn": "openvpn", + "city": "Sibu", + "hostname": "kualalumpur.wevpn.com", + "udp": true, + "ips": [ + "223.25.246.4" + ] + }, + { + "vpn": "openvpn", + "city": "Singapore", + "hostname": "singapore.wevpn.com", + "udp": true, + "ips": [ + "84.17.38.144" + ] + }, + { + "vpn": "openvpn", + "city": "Sofia", + "hostname": "sofia.wevpn.com", + "udp": true, + "ips": [ + "217.138.221.42" + ] + }, + { + "vpn": "openvpn", + "city": "St Petersburg", + "hostname": "petersburg.wevpn.com", + "udp": true, + "ips": [ + "82.202.220.242" + ] + }, + { + "vpn": "openvpn", + "city": "Stockholm", + "hostname": "stockholm.wevpn.com", + "udp": true, + "ips": [ + "45.83.91.66" + ] + }, + { + "vpn": "openvpn", + "city": "Sydney", + "hostname": "sydney.wevpn.com", + "udp": true, + "ips": [ + "46.102.153.106" + ] + }, + { + "vpn": "openvpn", + "city": "Taipei", + "hostname": "taipei.wevpn.com", + "udp": true, + "ips": [ + "188.214.106.98" + ] + }, + { + "vpn": "openvpn", + "city": "Tel Aviv", + "hostname": "telaviv.wevpn.com", + "udp": true, + "ips": [ + "212.199.61.55" + ] + }, + { + "vpn": "openvpn", + "city": "Tokyo", + "hostname": "tokyo.wevpn.com", + "udp": true, + "ips": [ + "84.17.34.8" + ] + }, + { + "vpn": "openvpn", + "city": "Toronto", + "hostname": "toronto.wevpn.com", + "udp": true, + "ips": [ + "184.75.208.234" + ] + }, + { + "vpn": "openvpn", + "city": "Vancouver", + "hostname": "vancouver.wevpn.com", + "udp": true, + "ips": [ + "71.19.249.109" + ] + }, + { + "vpn": "openvpn", + "city": "Vienna", + "hostname": "vienna.wevpn.com", + "udp": true, + "ips": [ + "37.120.212.162" + ] + }, + { + "vpn": "openvpn", + "city": "Warsaw", + "hostname": "warsaw.wevpn.com", + "udp": true, + "ips": [ + "217.138.209.122" + ] + }, + { + "vpn": "openvpn", + "city": "Washington DC", + "hostname": "washington.wevpn.com", + "udp": true, + "ips": [ + "70.32.0.208" + ] + }, + { + "vpn": "openvpn", + "city": "Zurich", + "hostname": "zurich.wevpn.com", + "udp": true, + "ips": [ + "37.120.137.82" + ] + } + ] + }, + "windscribe": { + "version": 2, + "timestamp": 1722459630, + "servers": [ + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-283.windscribe.com", + "ips": [ + "194.113.94.210", + "194.113.94.211" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-003.whiskergalaxy.com", + "wgpubkey": "/8WvGXPoWTiPmrQsmakiEk7wFhn0ab7FWqN5k13oszQ=", + "ips": [ + "194.113.94.212" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-423.windscribe.com", + "ips": [ + "87.120.103.226", + "87.120.103.227" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-004.whiskergalaxy.com", + "wgpubkey": "Y+/gx8qgmaUqnfVJ0Sp/y6ji6oPrPj4ESLwLWIwOIHg=", + "ips": [ + "87.120.103.228" + ] + }, + { + "vpn": "openvpn", + "region": "Albania", + "city": "Tirana", + "hostname": "al-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tia-423.windscribe.com", + "ips": [ + "87.120.103.242", + "87.120.103.243" + ] + }, + { + "vpn": "wireguard", + "region": "Albania", + "city": "Tirana", + "hostname": "al-005.whiskergalaxy.com", + "wgpubkey": "Y+/gx8qgmaUqnfVJ0Sp/y6ji6oPrPj4ESLwLWIwOIHg=", + "ips": [ + "87.120.103.244" + ] + }, + { + "vpn": "openvpn", + "region": "Argentina", + "city": "Buenos Aires", + "hostname": "ar-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "eze-278.windscribe.com", + "ips": [ + "190.103.176.146", + "190.103.176.147" + ] + }, + { + "vpn": "wireguard", + "region": "Argentina", + "city": "Buenos Aires", + "hostname": "ar-008.whiskergalaxy.com", + "wgpubkey": "2+O8VAshLkyWM1b6Ye2Cuoa3R/guKZgQ+YLoCsseWCU=", + "ips": [ + "190.103.176.148" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "adl-319.windscribe.com", + "ips": [ + "116.90.72.242", + "116.90.72.243" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-008.whiskergalaxy.com", + "wgpubkey": "tEh6Z8bnFmQU2KWHWYOS7yuDFZgwn3LGOZAdR1hN8kU=", + "ips": [ + "116.90.72.244" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "adl-354.windscribe.com", + "ips": [ + "103.108.92.82", + "103.108.92.83" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Adelaide", + "hostname": "au-011.whiskergalaxy.com", + "wgpubkey": "Sb5VSMZhhqSo5absckjzPn9HWhT7UrKk1AQv0me0zhI=", + "ips": [ + "103.108.92.84" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bne-225.windscribe.com", + "ips": [ + "103.62.50.130", + "103.62.50.131" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-007.whiskergalaxy.com", + "wgpubkey": "KvFr7Te5+RaFATDKJzrNXKf44ws8J6E9WbNVsMPvY1I=", + "ips": [ + "103.62.50.132" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bne-357.windscribe.com", + "ips": [ + "103.108.95.226", + "103.108.95.227" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Brisbane", + "hostname": "au-018.whiskergalaxy.com", + "wgpubkey": "iY4MhQqQTP4uT7U4w9DfUEVxi5I3HJvjZcIL2dwmtTw=", + "ips": [ + "103.108.95.228" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mel-224.windscribe.com", + "ips": [ + "103.137.14.34", + "103.137.14.35" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-005.whiskergalaxy.com", + "wgpubkey": "sDDXsvjyVqpB8fecUsjX0/Y8YdZye+oiV1Dy9BfUkwE=", + "ips": [ + "103.137.14.36" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mel-356.windscribe.com", + "ips": [ + "116.206.228.178", + "116.206.228.179" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Melbourne", + "hostname": "au-017.whiskergalaxy.com", + "wgpubkey": "r5BDU0T+VGZU6I+zuF3vlGrdORtgNvLhY08gQxrFRCw=", + "ips": [ + "116.206.228.180" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Perth", + "hostname": "au-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "per-223.windscribe.com", + "ips": [ + "45.121.208.128", + "45.121.208.160" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Perth", + "hostname": "au-004.whiskergalaxy.com", + "wgpubkey": "dqRF96aFvKwZ/UZXC+VuIciE6e2Iy138Vx54D2iHug8=", + "ips": [ + "45.121.208.161" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Perth", + "hostname": "au-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "per-355.windscribe.com", + "ips": [ + "103.77.234.210", + "103.77.234.211" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Perth", + "hostname": "au-012.whiskergalaxy.com", + "wgpubkey": "Jhhq6jvPxABM8OmzaM4/zJbcoRBR5OZalIHrZaFuXAU=", + "ips": [ + "103.77.234.212" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-226.windscribe.com", + "ips": [ + "103.1.213.210", + "103.1.213.211" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-015.whiskergalaxy.com", + "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", + "ips": [ + "103.1.213.212" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-226.windscribe.com", + "ips": [ + "103.1.212.242", + "103.1.212.243" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-016.whiskergalaxy.com", + "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", + "ips": [ + "103.1.212.244" + ] + }, + { + "vpn": "openvpn", + "region": "Australia", + "city": "Sydney", + "hostname": "au-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "syd-243.windscribe.com", + "ips": [ + "103.77.232.74", + "103.77.232.75" + ] + }, + { + "vpn": "wireguard", + "region": "Australia", + "city": "Sydney", + "hostname": "au-019.whiskergalaxy.com", + "wgpubkey": "eSxX+L8qX+1MdmwjtlZGIDbDivFdURBh5Rm1KfUpYzc=", + "ips": [ + "103.77.232.76" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-308.windscribe.com", + "ips": [ + "89.187.168.65", + "89.187.168.66" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-004.whiskergalaxy.com", + "wgpubkey": "KtJIKy9zsCXtKwFMQeGDEZVXtqw+X1+5z10Rh84/N0s=", + "ips": [ + "89.187.168.67" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-308.windscribe.com", + "ips": [ + "154.47.19.129", + "154.47.19.130" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-005.whiskergalaxy.com", + "wgpubkey": "KtJIKy9zsCXtKwFMQeGDEZVXtqw+X1+5z10Rh84/N0s=", + "ips": [ + "154.47.19.131" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-87.windscribe.com", + "ips": [ + "146.70.244.18", + "146.70.244.19" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-006.whiskergalaxy.com", + "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", + "ips": [ + "146.70.244.20" + ] + }, + { + "vpn": "openvpn", + "region": "Austria", + "city": "Vienna", + "hostname": "at-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vie-87.windscribe.com", + "ips": [ + "146.70.244.2", + "146.70.244.3" + ] + }, + { + "vpn": "wireguard", + "region": "Austria", + "city": "Vienna", + "hostname": "at-007.whiskergalaxy.com", + "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", + "ips": [ + "146.70.244.4" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bru-99.windscribe.com", + "ips": [ + "146.70.176.242", + "146.70.176.243" + ] + }, + { + "vpn": "wireguard", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-007.whiskergalaxy.com", + "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", + "ips": [ + "146.70.176.244" + ] + }, + { + "vpn": "openvpn", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bru-99.windscribe.com", + "ips": [ + "146.70.123.98", + "146.70.123.99" + ] + }, + { + "vpn": "wireguard", + "region": "Belgium", + "city": "Brussels", + "hostname": "be-008.whiskergalaxy.com", + "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", + "ips": [ + "146.70.123.100" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia", + "city": "Novi Travnik", + "hostname": "ba-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjj-410.windscribe.com", + "ips": [ + "45.156.248.50", + "45.156.248.51" + ] + }, + { + "vpn": "wireguard", + "region": "Bosnia", + "city": "Novi Travnik", + "hostname": "ba-002.whiskergalaxy.com", + "wgpubkey": "T9eiZMCJSOeNgm9n6s5/5WKDjMTN2TAKLbRvUNrGKUo=", + "ips": [ + "45.156.248.52" + ] + }, + { + "vpn": "openvpn", + "region": "Bosnia", + "city": "Sarajevo", + "hostname": "ba-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjj-286.windscribe.com", + "ips": [ + "185.164.35.16", + "185.99.3.24" + ] + }, + { + "vpn": "wireguard", + "region": "Bosnia", + "city": "Sarajevo", + "hostname": "ba-001.whiskergalaxy.com", + "wgpubkey": "6oMHpHHL3pq6Pdr2HoDRYuyjcyQGxfQaSRQR+HPyvgc=", + "ips": [ + "185.99.3.25" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-231.windscribe.com", + "ips": [ + "149.78.184.70", + "149.78.184.98" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-007.whiskergalaxy.com", + "wgpubkey": "bfeZeTGkISX5GVgVOkTMRlqvWlTI8obCb7vVdy8XGWk=", + "ips": [ + "149.78.184.99" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-165.windscribe.com", + "ips": [ + "149.102.251.206", + "149.102.251.207" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-008.whiskergalaxy.com", + "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", + "ips": [ + "149.102.251.208" + ] + }, + { + "vpn": "openvpn", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "gru-165.windscribe.com", + "ips": [ + "149.102.251.193", + "149.102.251.194" + ] + }, + { + "vpn": "wireguard", + "region": "Brazil", + "city": "Sao Paulo", + "hostname": "br-009.whiskergalaxy.com", + "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", + "ips": [ + "149.102.251.195" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sof-100.windscribe.com", + "ips": [ + "185.94.192.194", + "185.94.192.195" + ] + }, + { + "vpn": "wireguard", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-004.whiskergalaxy.com", + "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", + "ips": [ + "185.94.192.196" + ] + }, + { + "vpn": "openvpn", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sof-100.windscribe.com", + "ips": [ + "185.94.192.210", + "185.94.192.211" + ] + }, + { + "vpn": "wireguard", + "region": "Bulgaria", + "city": "Sofia", + "hostname": "bg-005.whiskergalaxy.com", + "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", + "ips": [ + "185.94.192.212" + ] + }, + { + "vpn": "openvpn", + "region": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pnh-374.windscribe.com", + "ips": [ + "195.80.149.242", + "195.80.149.243" + ] + }, + { + "vpn": "wireguard", + "region": "Cambodia", + "city": "Phnom Penh", + "hostname": "kh-001.whiskergalaxy.com", + "wgpubkey": "V95mJcGcpBFRAy3rQQJc6pWe5VA/28YoWKTl53slzz4=", + "ips": [ + "195.80.149.244" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yhz-386.windscribe.com", + "ips": [ + "23.191.80.2", + "23.191.80.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-021.whiskergalaxy.com", + "wgpubkey": "w262TI0UyIg9pFunMiekVURYUuT/z4qXRor2Z7VcOn4=", + "ips": [ + "23.191.80.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-048.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yhz-386.windscribe.com", + "ips": [ + "23.191.80.98", + "23.191.80.99" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Halifax", + "hostname": "ca-048.whiskergalaxy.com", + "wgpubkey": "w262TI0UyIg9pFunMiekVURYUuT/z4qXRor2Z7VcOn4=", + "ips": [ + "23.191.80.100" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-027.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "38.170.155.242", + "38.153.115.1" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-027.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.153.115.2" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-028.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "23.236.161.50", + "38.153.115.33" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-028.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.153.115.34" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-032.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-316.windscribe.com", + "ips": [ + "23.236.161.210", + "38.170.148.1" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-032.whiskergalaxy.com", + "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", + "ips": [ + "38.170.148.2" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.82.2", + "172.98.82.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-050.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.82.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.194", + "172.98.68.195" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-051.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.196" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-052.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.205", + "172.98.68.206" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-052.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.207" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yul-359.windscribe.com", + "ips": [ + "172.98.68.216", + "172.98.68.217" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Montreal", + "hostname": "ca-053.whiskergalaxy.com", + "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", + "ips": [ + "172.98.68.218" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "104.254.92.10", + "104.254.92.11" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-002.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "104.254.92.12" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "104.254.92.90", + "104.254.92.91" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-009.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "104.254.92.92" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-72.windscribe.com", + "ips": [ + "184.75.212.90", + "184.75.212.91" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-017.whiskergalaxy.com", + "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", + "ips": [ + "184.75.212.92" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-056.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-197.windscribe.com", + "ips": [ + "149.88.98.65", + "149.88.98.66" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-056.whiskergalaxy.com", + "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", + "ips": [ + "149.88.98.67" + ] + }, + { + "vpn": "openvpn", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-197.windscribe.com", + "ips": [ + "149.88.98.81", + "149.88.98.82" + ] + }, + { + "vpn": "wireguard", + "region": "Canada East", + "city": "Toronto", + "hostname": "ca-057.whiskergalaxy.com", + "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", + "ips": [ + "149.88.98.83" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "208.78.41.130", + "208.78.41.131" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-017.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "208.78.41.132" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "208.78.41.162", + "208.78.41.163" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-019.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "208.78.41.164" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-311.windscribe.com", + "ips": [ + "198.8.92.98", + "198.8.92.99" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-020.whiskergalaxy.com", + "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", + "ips": [ + "198.8.92.100" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-124.windscribe.com", + "ips": [ + "167.88.50.2", + "167.88.50.3" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-021.whiskergalaxy.com", + "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", + "ips": [ + "167.88.50.4" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-124.windscribe.com", + "ips": [ + "167.88.50.34", + "167.88.50.35" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-022.whiskergalaxy.com", + "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", + "ips": [ + "167.88.50.36" + ] + }, + { + "vpn": "openvpn", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-023.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yvr-187.windscribe.com", + "ips": [ + "95.173.219.1", + "95.173.219.2" + ] + }, + { + "vpn": "wireguard", + "region": "Canada West", + "city": "Vancouver", + "hostname": "ca-west-023.whiskergalaxy.com", + "wgpubkey": "hHmf2yS/Hjkh6ZJ4seoO5Vwv0LwNlYFTnUK3v9lGvEQ=", + "ips": [ + "95.173.219.3" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "scl-373.windscribe.com", + "ips": [ + "149.88.104.225", + "149.88.104.226" + ] + }, + { + "vpn": "wireguard", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-003.whiskergalaxy.com", + "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", + "ips": [ + "149.88.104.227" + ] + }, + { + "vpn": "openvpn", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "scl-373.windscribe.com", + "ips": [ + "149.88.104.238", + "149.88.104.239" + ] + }, + { + "vpn": "wireguard", + "region": "Chile", + "city": "Santiago", + "hostname": "cl-004.whiskergalaxy.com", + "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", + "ips": [ + "149.88.104.240" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bog-360.windscribe.com", + "ips": [ + "149.88.111.14", + "149.88.111.15" + ] + }, + { + "vpn": "wireguard", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-003.whiskergalaxy.com", + "wgpubkey": "QpdeoH7VxAatKlFm0sPo8phHjv1tiiHdqQaACmzMJjE=", + "ips": [ + "149.88.111.16" + ] + }, + { + "vpn": "openvpn", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bog-360.windscribe.com", + "ips": [ + "149.88.111.1", + "149.88.111.2" + ] + }, + { + "vpn": "wireguard", + "region": "Colombia", + "city": "Bogota", + "hostname": "co-004.whiskergalaxy.com", + "wgpubkey": "QpdeoH7VxAatKlFm0sPo8phHjv1tiiHdqQaACmzMJjE=", + "ips": [ + "149.88.111.3" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zag-252.windscribe.com", + "ips": [ + "154.47.29.161", + "154.47.29.162" + ] + }, + { + "vpn": "wireguard", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-005.whiskergalaxy.com", + "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", + "ips": [ + "154.47.29.163" + ] + }, + { + "vpn": "openvpn", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zag-252.windscribe.com", + "ips": [ + "154.47.29.174", + "154.47.29.175" + ] + }, + { + "vpn": "wireguard", + "region": "Croatia", + "city": "Zagreb", + "hostname": "hr-006.whiskergalaxy.com", + "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", + "ips": [ + "154.47.29.176" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "46.199.75.105", + "46.199.75.106" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-002.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "46.199.75.107" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "46.199.75.100", + "46.199.75.101" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-003.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "46.199.75.102" + ] + }, + { + "vpn": "openvpn", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lca-320.windscribe.com", + "ips": [ + "85.190.230.21", + "85.190.230.22" + ] + }, + { + "vpn": "wireguard", + "region": "Cyprus", + "city": "Nicosia", + "hostname": "cy-004.whiskergalaxy.com", + "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", + "ips": [ + "85.190.230.23" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "185.246.210.1", + "185.246.210.2" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-002.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "185.246.210.3" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "149.40.61.225", + "149.40.61.226" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-004.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "149.40.61.227" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-338.windscribe.com", + "ips": [ + "149.40.61.193", + "149.40.61.194" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-006.whiskergalaxy.com", + "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", + "ips": [ + "149.40.61.195" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-88.windscribe.com", + "ips": [ + "185.216.35.66", + "185.216.35.67" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-007.whiskergalaxy.com", + "wgpubkey": "a599bjD8WzXg94xH1DfGBxW8yJ64EXMZq18elEfAwyk=", + "ips": [ + "185.216.35.68" + ] + }, + { + "vpn": "openvpn", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "prg-88.windscribe.com", + "ips": [ + "185.216.35.130", + "185.216.35.131" + ] + }, + { + "vpn": "wireguard", + "region": "Czech Republic", + "city": "Prague", + "hostname": "cz-008.whiskergalaxy.com", + "wgpubkey": "a599bjD8WzXg94xH1DfGBxW8yJ64EXMZq18elEfAwyk=", + "ips": [ + "185.216.35.132" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cph-153.windscribe.com", + "ips": [ + "185.245.84.34", + "185.245.84.35" + ] + }, + { + "vpn": "wireguard", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-005.whiskergalaxy.com", + "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", + "ips": [ + "185.245.84.36" + ] + }, + { + "vpn": "openvpn", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cph-153.windscribe.com", + "ips": [ + "185.245.84.50", + "185.245.84.51" + ] + }, + { + "vpn": "wireguard", + "region": "Denmark", + "city": "Copenhagen", + "hostname": "dk-006.whiskergalaxy.com", + "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", + "ips": [ + "185.245.84.52" + ] + }, + { + "vpn": "openvpn", + "region": "Ecuador", + "city": "Quito", + "hostname": "ec-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "uio-385.windscribe.com", + "ips": [ + "179.49.5.122", + "179.49.5.123" + ] + }, + { + "vpn": "wireguard", + "region": "Ecuador", + "city": "Quito", + "hostname": "ec-002.whiskergalaxy.com", + "wgpubkey": "nwpvJ7AtDjk77dpyL7qKkvwsWQL82Fqy3JEk/KR/iGw=", + "ips": [ + "179.49.5.124" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.122", + "165.231.141.123" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-006.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.124" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.130", + "165.231.141.131" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-007.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.132" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.138", + "165.231.141.139" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-008.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "165.231.141.140" + ] + }, + { + "vpn": "openvpn", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tll-299.windscribe.com", + "ips": [ + "165.231.141.74", + "196.196.122.227" + ] + }, + { + "vpn": "wireguard", + "region": "Estonia", + "city": "Tallinn", + "hostname": "ee-009.whiskergalaxy.com", + "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", + "ips": [ + "196.196.122.228" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "149.57.28.8", + "149.57.28.225" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-001.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "149.57.28.226" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "149.57.28.9", + "149.57.28.241" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-002.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "149.57.28.242" + ] + }, + { + "vpn": "openvpn", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfr-332.windscribe.com", + "ips": [ + "181.215.52.192", + "181.215.52.193" + ] + }, + { + "vpn": "wireguard", + "region": "Fake Antarctica", + "city": "Troll", + "hostname": "aq-003.whiskergalaxy.com", + "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", + "ips": [ + "181.215.52.194" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-98.windscribe.com", + "ips": [ + "196.244.192.202", + "196.244.192.203" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-006.whiskergalaxy.com", + "wgpubkey": "2LiGGjfWP64d7uVNpgV8n/lIg2iM62iz8ZXRHFd1Qw0=", + "ips": [ + "196.244.192.204" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-186.windscribe.com", + "ips": [ + "193.161.204.22", + "193.161.204.23" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-007.whiskergalaxy.com", + "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", + "ips": [ + "193.161.204.24" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-186.windscribe.com", + "ips": [ + "185.212.149.49", + "185.212.149.50" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-008.whiskergalaxy.com", + "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", + "ips": [ + "185.212.149.51" + ] + }, + { + "vpn": "openvpn", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hel-98.windscribe.com", + "ips": [ + "196.244.194.2", + "196.244.194.3" + ] + }, + { + "vpn": "wireguard", + "region": "Finland", + "city": "Helsinki", + "hostname": "fi-009.whiskergalaxy.com", + "wgpubkey": "2LiGGjfWP64d7uVNpgV8n/lIg2iM62iz8ZXRHFd1Qw0=", + "ips": [ + "196.244.194.4" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Marseille", + "hostname": "fr-024.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mrs-411.windscribe.com", + "ips": [ + "149.102.245.65", + "149.102.245.66" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Marseille", + "hostname": "fr-024.whiskergalaxy.com", + "wgpubkey": "Cqqx4g+EJG8C+CGRA/WCeMH7pixp9jLSXuadJCDPZ2g=", + "ips": [ + "149.102.245.67" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "84.17.42.33", + "84.17.42.37" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-008.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "84.17.42.35" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "84.17.42.1", + "84.17.42.2" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-009.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "84.17.42.3" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "45.89.174.34", + "45.89.174.35" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-011.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "45.89.174.36" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "188.241.83.66", + "188.241.83.67" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-012.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "188.241.83.68" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-342.windscribe.com", + "ips": [ + "138.199.47.220", + "138.199.47.221" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-016.whiskergalaxy.com", + "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", + "ips": [ + "138.199.47.222" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "146.70.105.2", + "146.70.105.3" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-021.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "146.70.105.4" + ] + }, + { + "vpn": "openvpn", + "region": "France", + "city": "Paris", + "hostname": "fr-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cdg-103.windscribe.com", + "ips": [ + "146.70.105.34", + "146.70.105.35" + ] + }, + { + "vpn": "wireguard", + "region": "France", + "city": "Paris", + "hostname": "fr-022.whiskergalaxy.com", + "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", + "ips": [ + "146.70.105.36" + ] + }, + { + "vpn": "openvpn", + "region": "Georgia", + "city": "Tbilisi", + "hostname": "ge-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tbs-387.windscribe.com", + "ips": [ + "195.54.178.210", + "195.54.178.211" + ] + }, + { + "vpn": "wireguard", + "region": "Georgia", + "city": "Tbilisi", + "hostname": "ge-002.whiskergalaxy.com", + "wgpubkey": "Jntc7e8Zxk9vNvq2dbOOwyoXsB9nybUMF1LRdCZZgWk=", + "ips": [ + "195.54.178.212" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.50", + "45.87.212.51" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-012.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.52" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.66", + "45.87.212.67" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-013.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.68" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "193.27.14.178", + "193.27.14.179" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-014.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "193.27.14.180" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "45.87.212.82", + "45.87.212.83" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-017.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "45.87.212.84" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "146.70.101.34", + "146.70.101.35" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-018.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "146.70.101.36" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "87.249.132.196", + "87.249.132.197" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-020.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "87.249.132.198" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-026.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-113.windscribe.com", + "ips": [ + "146.70.107.2", + "146.70.107.3" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-026.whiskergalaxy.com", + "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", + "ips": [ + "146.70.107.4" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-032.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "149.36.50.129", + "149.36.50.130" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-032.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "149.36.50.131" + ] + }, + { + "vpn": "openvpn", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-033.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fra-228.windscribe.com", + "ips": [ + "87.249.132.97", + "87.249.132.98" + ] + }, + { + "vpn": "wireguard", + "region": "Germany", + "city": "Frankfurt", + "hostname": "de-033.whiskergalaxy.com", + "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", + "ips": [ + "87.249.132.99" + ] + }, + { + "vpn": "openvpn", + "region": "Ghana", + "city": "Accra", + "hostname": "gh-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "acc-394.windscribe.com", + "ips": [ + "169.255.56.202", + "169.255.56.203" + ] + }, + { + "vpn": "wireguard", + "region": "Ghana", + "city": "Accra", + "hostname": "gh-001.whiskergalaxy.com", + "wgpubkey": "+ZYeVrDMZ+7Kpewr4IL/jRRpb2x3pjky+xwkY1wiUjM=", + "ips": [ + "169.255.56.204" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "city": "Athens", + "hostname": "gr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ath-247.windscribe.com", + "ips": [ + "149.22.85.65", + "149.22.85.66" + ] + }, + { + "vpn": "wireguard", + "region": "Greece", + "city": "Athens", + "hostname": "gr-009.whiskergalaxy.com", + "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", + "ips": [ + "149.22.85.67" + ] + }, + { + "vpn": "openvpn", + "region": "Greece", + "city": "Athens", + "hostname": "gr-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ath-247.windscribe.com", + "ips": [ + "149.22.85.78", + "149.22.85.79" + ] + }, + { + "vpn": "wireguard", + "region": "Greece", + "city": "Athens", + "hostname": "gr-010.whiskergalaxy.com", + "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", + "ips": [ + "149.22.85.80" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-189.windscribe.com", + "ips": [ + "84.17.57.113", + "84.17.57.114" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-006.whiskergalaxy.com", + "wgpubkey": "zi62xnrtbvAbaavB8MLoTF36BX/stxjfnGJ6mIsZYzg=", + "ips": [ + "84.17.57.115" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-189.windscribe.com", + "ips": [ + "149.40.54.129", + "149.40.54.130" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-010.whiskergalaxy.com", + "wgpubkey": "zi62xnrtbvAbaavB8MLoTF36BX/stxjfnGJ6mIsZYzg=", + "ips": [ + "149.40.54.131" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-26.windscribe.com", + "ips": [ + "146.70.9.226", + "146.70.9.227" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-013.whiskergalaxy.com", + "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", + "ips": [ + "146.70.9.228" + ] + }, + { + "vpn": "openvpn", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hkg-26.windscribe.com", + "ips": [ + "146.70.9.242", + "146.70.9.243" + ] + }, + { + "vpn": "wireguard", + "region": "Hong Kong", + "city": "Hong Kong", + "hostname": "hk-015.whiskergalaxy.com", + "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", + "ips": [ + "146.70.9.244" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bud-90.windscribe.com", + "ips": [ + "146.70.120.130", + "146.70.120.131" + ] + }, + { + "vpn": "wireguard", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-003.whiskergalaxy.com", + "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", + "ips": [ + "146.70.120.132" + ] + }, + { + "vpn": "openvpn", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bud-90.windscribe.com", + "ips": [ + "146.70.203.18", + "146.70.203.19" + ] + }, + { + "vpn": "wireguard", + "region": "Hungary", + "city": "Budapest", + "hostname": "hu-004.whiskergalaxy.com", + "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", + "ips": [ + "146.70.203.20" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kef-344.windscribe.com", + "ips": [ + "185.165.170.1", + "185.165.170.2" + ] + }, + { + "vpn": "wireguard", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-002.whiskergalaxy.com", + "wgpubkey": "ua7TUXkcSiiHeTyCok5b3PX9DkJ4l5yVvGlSmJ34WU8=", + "ips": [ + "185.165.170.3" + ] + }, + { + "vpn": "openvpn", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kef-121.windscribe.com", + "ips": [ + "45.133.192.194", + "45.133.192.195" + ] + }, + { + "vpn": "wireguard", + "region": "Iceland", + "city": "Reykjavik", + "hostname": "is-003.whiskergalaxy.com", + "wgpubkey": "8ZGAQUv1E/9pfVmPwasDo4g69PlAHIzlUf5pAmCJ7hk=", + "ips": [ + "45.133.192.196" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.210", + "165.231.253.211" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-009.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.212" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.242", + "165.231.253.243" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-010.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.244" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "165.231.253.66", + "165.231.253.67" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-012.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "165.231.253.68" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "Mumbai", + "hostname": "in-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bom-372.windscribe.com", + "ips": [ + "196.240.60.66", + "196.240.60.67" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "Mumbai", + "hostname": "in-013.whiskergalaxy.com", + "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", + "ips": [ + "196.240.60.68" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "New Delhi", + "hostname": "in-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "del-417.windscribe.com", + "ips": [ + "103.26.207.55", + "103.26.207.109" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "New Delhi", + "hostname": "in-014.whiskergalaxy.com", + "wgpubkey": "Ve/vQfFTt4NRr0RWG0muS7Gv0SpqaLdsk16mj33GUXA=", + "ips": [ + "103.26.207.110" + ] + }, + { + "vpn": "openvpn", + "region": "India", + "city": "New Delhi", + "hostname": "in-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "del-417.windscribe.com", + "ips": [ + "103.26.207.94", + "103.26.207.213" + ] + }, + { + "vpn": "wireguard", + "region": "India", + "city": "New Delhi", + "hostname": "in-015.whiskergalaxy.com", + "wgpubkey": "Ve/vQfFTt4NRr0RWG0muS7Gv0SpqaLdsk16mj33GUXA=", + "ips": [ + "103.26.207.214" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-391.windscribe.com", + "ips": [ + "202.74.239.10", + "202.74.239.11" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-007.whiskergalaxy.com", + "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", + "ips": [ + "202.74.239.12" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-391.windscribe.com", + "ips": [ + "202.74.239.90", + "202.74.239.91" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-008.whiskergalaxy.com", + "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", + "ips": [ + "202.74.239.92" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-416.windscribe.com", + "ips": [ + "103.87.68.50", + "103.87.68.51" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-009.whiskergalaxy.com", + "wgpubkey": "n+cx0HnDtLEjiK8TzHH2qhuBKKZvt1iWU/e0ba0jyRE=", + "ips": [ + "103.87.68.52" + ] + }, + { + "vpn": "openvpn", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cgk-416.windscribe.com", + "ips": [ + "103.87.68.146", + "103.87.68.147" + ] + }, + { + "vpn": "wireguard", + "region": "Indonesia", + "city": "Jakarta", + "hostname": "id-010.whiskergalaxy.com", + "wgpubkey": "n+cx0HnDtLEjiK8TzHH2qhuBKKZvt1iWU/e0ba0jyRE=", + "ips": [ + "103.87.68.148" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-370.windscribe.com", + "ips": [ + "23.92.127.34", + "23.92.127.35" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-003.whiskergalaxy.com", + "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", + "ips": [ + "23.92.127.36" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-370.windscribe.com", + "ips": [ + "5.157.13.146", + "5.157.13.147" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-004.whiskergalaxy.com", + "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", + "ips": [ + "5.157.13.148" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-73.windscribe.com", + "ips": [ + "185.104.217.66", + "185.104.217.67" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-008.whiskergalaxy.com", + "wgpubkey": "7V00BhJ4cAxsJmU8mEXbdUU5wljw67fGKs1oDhUYtl8=", + "ips": [ + "185.104.217.68" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-400.windscribe.com", + "ips": [ + "149.88.96.12", + "149.88.96.13" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-010.whiskergalaxy.com", + "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", + "ips": [ + "149.88.96.14" + ] + }, + { + "vpn": "openvpn", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dub-400.windscribe.com", + "ips": [ + "149.88.96.1", + "149.88.96.2" + ] + }, + { + "vpn": "wireguard", + "region": "Ireland", + "city": "Dublin", + "hostname": "ie-011.whiskergalaxy.com", + "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", + "ips": [ + "149.88.96.3" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tlv-218.windscribe.com", + "ips": [ + "185.191.205.2", + "185.191.205.3" + ] + }, + { + "vpn": "wireguard", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-005.whiskergalaxy.com", + "wgpubkey": "2tyuu2HcOljr/wndoswy2Vk9gqXgjaP/IRg3vXoqFig=", + "ips": [ + "185.191.205.4" + ] + }, + { + "vpn": "openvpn", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tlv-218.windscribe.com", + "ips": [ + "185.191.204.98", + "185.191.204.99" + ] + }, + { + "vpn": "wireguard", + "region": "Israel", + "city": "Ashdod", + "hostname": "il-006.whiskergalaxy.com", + "wgpubkey": "2tyuu2HcOljr/wndoswy2Vk9gqXgjaP/IRg3vXoqFig=", + "ips": [ + "185.191.204.100" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-318.windscribe.com", + "ips": [ + "84.17.59.65", + "84.17.59.66" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-004.whiskergalaxy.com", + "wgpubkey": "QI+u918O4tyAtoV37B6HVdiQeZoEUi0dWXhSsC3LiWQ=", + "ips": [ + "84.17.59.67" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-318.windscribe.com", + "ips": [ + "149.102.237.33", + "149.102.237.34" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-008.whiskergalaxy.com", + "wgpubkey": "QI+u918O4tyAtoV37B6HVdiQeZoEUi0dWXhSsC3LiWQ=", + "ips": [ + "149.102.237.35" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-110.windscribe.com", + "ips": [ + "185.183.105.130", + "185.183.105.131" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-009.whiskergalaxy.com", + "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", + "ips": [ + "185.183.105.132" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Milan", + "hostname": "it-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mxp-110.windscribe.com", + "ips": [ + "185.183.105.146", + "185.183.105.147" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Milan", + "hostname": "it-010.whiskergalaxy.com", + "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", + "ips": [ + "185.183.105.148" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Rome", + "hostname": "it-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fco-238.windscribe.com", + "ips": [ + "82.102.26.18", + "82.102.26.19" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Rome", + "hostname": "it-011.whiskergalaxy.com", + "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", + "ips": [ + "82.102.26.20" + ] + }, + { + "vpn": "openvpn", + "region": "Italy", + "city": "Rome", + "hostname": "it-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "fco-238.windscribe.com", + "ips": [ + "82.102.26.50", + "82.102.26.51" + ] + }, + { + "vpn": "wireguard", + "region": "Italy", + "city": "Rome", + "hostname": "it-012.whiskergalaxy.com", + "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", + "ips": [ + "82.102.26.52" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-148.windscribe.com", + "ips": [ + "138.199.22.161", + "138.199.22.162" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-006.whiskergalaxy.com", + "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", + "ips": [ + "138.199.22.163" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-148.windscribe.com", + "ips": [ + "143.244.40.225", + "143.244.40.226" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-007.whiskergalaxy.com", + "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", + "ips": [ + "143.244.40.227" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-287.windscribe.com", + "ips": [ + "37.120.210.66", + "37.120.210.67" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-009.whiskergalaxy.com", + "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", + "ips": [ + "37.120.210.68" + ] + }, + { + "vpn": "openvpn", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-287.windscribe.com", + "ips": [ + "37.120.210.146", + "37.120.210.147" + ] + }, + { + "vpn": "wireguard", + "region": "Japan", + "city": "Tokyo", + "hostname": "jp-010.whiskergalaxy.com", + "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", + "ips": [ + "37.120.210.148" + ] + }, + { + "vpn": "openvpn", + "region": "Kenya", + "city": "Nairobi", + "hostname": "ke-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "nbo-389.windscribe.com", + "ips": [ + "45.138.86.226", + "45.138.86.227" + ] + }, + { + "vpn": "wireguard", + "region": "Kenya", + "city": "Nairobi", + "hostname": "ke-001.whiskergalaxy.com", + "wgpubkey": "S/qPJPWnfwfb1pWIcKN8FH71j5dFt9eH2KbEeU1+QlE=", + "ips": [ + "45.138.86.228" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-398.windscribe.com", + "ips": [ + "185.145.245.88", + "185.145.245.96" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-011.whiskergalaxy.com", + "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", + "ips": [ + "185.145.245.98" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-398.windscribe.com", + "ips": [ + "185.145.245.89", + "185.145.245.97" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-012.whiskergalaxy.com", + "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", + "ips": [ + "185.145.245.99" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-254.windscribe.com", + "ips": [ + "109.248.147.66", + "109.248.147.67" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-013.whiskergalaxy.com", + "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", + "ips": [ + "109.248.147.68" + ] + }, + { + "vpn": "openvpn", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "rix-254.windscribe.com", + "ips": [ + "109.248.149.34", + "109.248.149.35" + ] + }, + { + "vpn": "wireguard", + "region": "Latvia", + "city": "Riga", + "hostname": "lv-014.whiskergalaxy.com", + "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", + "ips": [ + "109.248.149.36" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vno-378.windscribe.com", + "ips": [ + "37.156.216.146", + "37.156.216.147" + ] + }, + { + "vpn": "wireguard", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-004.whiskergalaxy.com", + "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", + "ips": [ + "37.156.216.148" + ] + }, + { + "vpn": "openvpn", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "vno-378.windscribe.com", + "ips": [ + "37.156.216.130", + "37.156.216.131" + ] + }, + { + "vpn": "wireguard", + "region": "Lithuania", + "city": "Vilnius", + "hostname": "lt-005.whiskergalaxy.com", + "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", + "ips": [ + "37.156.216.132" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lux-152.windscribe.com", + "ips": [ + "185.221.132.242", + "185.221.132.243" + ] + }, + { + "vpn": "wireguard", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-006.whiskergalaxy.com", + "wgpubkey": "BzMLell5uUM/d9aNGaGMog+GFH36s4dFO0WuQ6/VxCg=", + "ips": [ + "185.221.132.244" + ] + }, + { + "vpn": "openvpn", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lux-152.windscribe.com", + "ips": [ + "185.221.132.226", + "185.221.132.227" + ] + }, + { + "vpn": "wireguard", + "region": "Luxembourg", + "city": "Luxembourg", + "hostname": "lu-007.whiskergalaxy.com", + "wgpubkey": "BzMLell5uUM/d9aNGaGMog+GFH36s4dFO0WuQ6/VxCg=", + "ips": [ + "185.221.132.228" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.29", + "118.107.220.30" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-010.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.31" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.37", + "118.107.220.38" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-011.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.39" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.53", + "118.107.220.54" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-012.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.55" + ] + }, + { + "vpn": "openvpn", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kul-270.windscribe.com", + "ips": [ + "118.107.220.45", + "118.107.220.46" + ] + }, + { + "vpn": "wireguard", + "region": "Malaysia", + "city": "Kuala Lumpur", + "hostname": "my-013.whiskergalaxy.com", + "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", + "ips": [ + "118.107.220.47" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "qro-420.windscribe.com", + "ips": [ + "149.88.22.33", + "149.88.22.34" + ] + }, + { + "vpn": "wireguard", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-012.whiskergalaxy.com", + "wgpubkey": "V3tmL5CQsOEXUm6DwKAEvKpLZFMLdwI+6aCOIsakER8=", + "ips": [ + "149.88.22.35" + ] + }, + { + "vpn": "openvpn", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "qro-420.windscribe.com", + "ips": [ + "149.88.22.46", + "149.88.22.47" + ] + }, + { + "vpn": "wireguard", + "region": "Mexico", + "city": "Querétaro", + "hostname": "mx-013.whiskergalaxy.com", + "wgpubkey": "V3tmL5CQsOEXUm6DwKAEvKpLZFMLdwI+6aCOIsakER8=", + "ips": [ + "149.88.22.48" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kiv-210.windscribe.com", + "ips": [ + "178.175.134.186", + "178.175.134.187" + ] + }, + { + "vpn": "wireguard", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-003.whiskergalaxy.com", + "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", + "ips": [ + "178.175.134.188" + ] + }, + { + "vpn": "openvpn", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kiv-210.windscribe.com", + "ips": [ + "178.175.142.7", + "178.175.140.209" + ] + }, + { + "vpn": "wireguard", + "region": "Moldova", + "city": "Chisinau", + "hostname": "md-004.whiskergalaxy.com", + "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", + "ips": [ + "178.175.140.210" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "185.253.96.2", + "185.253.96.3" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-008.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "185.253.96.4" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "84.17.46.1", + "84.17.46.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-011.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "84.17.46.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-289.windscribe.com", + "ips": [ + "72.11.157.66", + "72.11.157.67" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-013.whiskergalaxy.com", + "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", + "ips": [ + "72.11.157.68" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-289.windscribe.com", + "ips": [ + "72.11.157.34", + "72.11.157.35" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-014.whiskergalaxy.com", + "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", + "ips": [ + "72.11.157.36" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "109.201.130.1", + "109.201.130.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-015.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "109.201.130.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "185.156.172.162", + "185.156.172.163" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-019.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "185.156.172.164" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "195.181.172.145", + "195.181.172.146" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-020.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "195.181.172.147" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-120.windscribe.com", + "ips": [ + "146.70.108.162", + "146.70.108.163" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-030.whiskergalaxy.com", + "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", + "ips": [ + "146.70.108.164" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-037.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "185.107.81.129", + "185.107.81.130" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-037.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "185.107.81.131" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-038.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-193.windscribe.com", + "ips": [ + "149.36.51.129", + "149.36.51.130" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-038.whiskergalaxy.com", + "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", + "ips": [ + "149.36.51.131" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-039.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "46.166.179.209", + "46.166.179.210" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-039.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "46.166.179.211" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "46.166.129.1", + "46.166.129.2" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-040.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "46.166.129.3" + ] + }, + { + "vpn": "openvpn", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-041.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ams-229.windscribe.com", + "ips": [ + "185.107.95.49", + "185.107.95.50" + ] + }, + { + "vpn": "wireguard", + "region": "Netherlands", + "city": "Amsterdam", + "hostname": "nl-041.whiskergalaxy.com", + "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", + "ips": [ + "185.107.95.51" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "akl-352.windscribe.com", + "ips": [ + "103.108.94.162", + "103.108.94.163" + ] + }, + { + "vpn": "wireguard", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-003.whiskergalaxy.com", + "wgpubkey": "el0He87GLmmywBmn7ErEiuKd5Bjc6Q4zWciL86rYcxw=", + "ips": [ + "103.108.94.164" + ] + }, + { + "vpn": "openvpn", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "akl-251.windscribe.com", + "ips": [ + "116.90.75.226", + "116.90.75.227" + ] + }, + { + "vpn": "wireguard", + "region": "New Zealand", + "city": "Auckland", + "hostname": "nz-004.whiskergalaxy.com", + "wgpubkey": "LxvdxRlnn73teVay3m0wY8tP1131yCbfnCAftD+p7VE=", + "ips": [ + "116.90.75.228" + ] + }, + { + "vpn": "openvpn", + "region": "North Macedonia", + "city": "Skopje", + "hostname": "mk-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "skp-339.windscribe.com", + "ips": [ + "185.225.28.50", + "185.225.28.51" + ] + }, + { + "vpn": "wireguard", + "region": "North Macedonia", + "city": "Skopje", + "hostname": "mk-003.whiskergalaxy.com", + "wgpubkey": "9J0kA4c4i7N/+6B+3j0zFkDTHocZNsw6eK6+sLZ1qCQ=", + "ips": [ + "185.225.28.52" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "185.206.225.130", + "185.206.225.131" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-003.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "185.206.225.132" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "37.120.203.66", + "37.120.203.67" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-006.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "37.120.203.68" + ] + }, + { + "vpn": "openvpn", + "region": "Norway", + "city": "Oslo", + "hostname": "no-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "osl-169.windscribe.com", + "ips": [ + "37.120.149.50", + "37.120.149.51" + ] + }, + { + "vpn": "wireguard", + "region": "Norway", + "city": "Oslo", + "hostname": "no-008.whiskergalaxy.com", + "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", + "ips": [ + "37.120.149.52" + ] + }, + { + "vpn": "openvpn", + "region": "Panama", + "city": "Panama City", + "hostname": "pa-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pty-358.windscribe.com", + "ips": [ + "138.186.142.202", + "138.186.142.203" + ] + }, + { + "vpn": "wireguard", + "region": "Panama", + "city": "Panama City", + "hostname": "pa-001.whiskergalaxy.com", + "wgpubkey": "3L8yhe+v7TzBeesOFxSdU2VUa8FG4PTuoiiUoV7DAGY=", + "ips": [ + "138.186.142.204" + ] + }, + { + "vpn": "openvpn", + "region": "Peru", + "city": "Lima", + "hostname": "pe-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lim-367.windscribe.com", + "ips": [ + "95.173.223.78", + "95.173.223.79" + ] + }, + { + "vpn": "wireguard", + "region": "Peru", + "city": "Lima", + "hostname": "pe-004.whiskergalaxy.com", + "wgpubkey": "ZrLVHs2FNXanFBtymCd64gZNNixH7k2K5F9+O+xpt0o=", + "ips": [ + "95.173.223.80" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mnl-365.windscribe.com", + "ips": [ + "128.1.209.254", + "129.227.97.114" + ] + }, + { + "vpn": "wireguard", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-006.whiskergalaxy.com", + "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", + "ips": [ + "129.227.97.115" + ] + }, + { + "vpn": "openvpn", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mnl-365.windscribe.com", + "ips": [ + "129.227.103.90", + "129.227.97.98" + ] + }, + { + "vpn": "wireguard", + "region": "Philippines", + "city": "Manila", + "hostname": "ph-007.whiskergalaxy.com", + "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", + "ips": [ + "129.227.97.99" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-309.windscribe.com", + "ips": [ + "84.17.55.97", + "84.17.55.98" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-004.whiskergalaxy.com", + "wgpubkey": "MYoOwWssF5fWZ+bOQINzfitdjwyqiHcJhr607wSAzEY=", + "ips": [ + "84.17.55.99" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-237.windscribe.com", + "ips": [ + "37.120.156.18", + "37.120.156.19" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-007.whiskergalaxy.com", + "wgpubkey": "aZkVfQ47eZjQXlFXaXR/joai25TTXOH0jk8JU4S+718=", + "ips": [ + "37.120.156.20" + ] + }, + { + "vpn": "openvpn", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "waw-237.windscribe.com", + "ips": [ + "37.120.156.34", + "37.120.156.35" + ] + }, + { + "vpn": "wireguard", + "region": "Poland", + "city": "Warsaw", + "hostname": "pl-008.whiskergalaxy.com", + "wgpubkey": "aZkVfQ47eZjQXlFXaXR/joai25TTXOH0jk8JU4S+718=", + "ips": [ + "37.120.156.36" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lis-249.windscribe.com", + "ips": [ + "149.22.86.1", + "149.22.86.2" + ] + }, + { + "vpn": "wireguard", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-004.whiskergalaxy.com", + "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", + "ips": [ + "149.22.86.3" + ] + }, + { + "vpn": "openvpn", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lis-249.windscribe.com", + "ips": [ + "149.22.86.14", + "149.22.86.15" + ] + }, + { + "vpn": "wireguard", + "region": "Portugal", + "city": "Lisbon", + "hostname": "pt-005.whiskergalaxy.com", + "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", + "ips": [ + "149.22.86.16" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "otp-105.windscribe.com", + "ips": [ + "91.207.102.146", + "91.207.102.147" + ] + }, + { + "vpn": "wireguard", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-008.whiskergalaxy.com", + "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", + "ips": [ + "91.207.102.148" + ] + }, + { + "vpn": "openvpn", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "otp-105.windscribe.com", + "ips": [ + "146.70.97.178", + "146.70.97.179" + ] + }, + { + "vpn": "wireguard", + "region": "Romania", + "city": "Bucharest", + "hostname": "ro-010.whiskergalaxy.com", + "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", + "ips": [ + "146.70.97.180" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "svo-346.windscribe.com", + "ips": [ + "95.143.177.98", + "95.143.177.101" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-021.whiskergalaxy.com", + "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", + "ips": [ + "95.143.177.99" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "svo-346.windscribe.com", + "ips": [ + "95.143.177.69", + "95.143.177.66" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Moscow", + "hostname": "ru-022.whiskergalaxy.com", + "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", + "ips": [ + "95.143.177.67" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-265.windscribe.com", + "ips": [ + "188.124.42.114", + "188.124.42.115" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-012.whiskergalaxy.com", + "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", + "ips": [ + "188.124.42.116" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-265.windscribe.com", + "ips": [ + "188.124.42.98", + "188.124.42.99" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-013.whiskergalaxy.com", + "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", + "ips": [ + "188.124.42.100" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-016.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.213", + "94.242.50.214" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-016.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.215" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.203", + "94.242.50.204" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-017.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.205" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.193", + "94.242.50.194" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-018.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.195" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.183", + "94.242.50.184" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-019.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.185" + ] + }, + { + "vpn": "openvpn", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "led-211.windscribe.com", + "ips": [ + "94.242.50.173", + "94.242.50.174" + ] + }, + { + "vpn": "wireguard", + "region": "Russia", + "city": "Saint Petersburg", + "hostname": "ru-020.whiskergalaxy.com", + "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", + "ips": [ + "94.242.50.175" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "beg-288.windscribe.com", + "ips": [ + "146.70.221.18", + "146.70.221.19" + ] + }, + { + "vpn": "wireguard", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-005.whiskergalaxy.com", + "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", + "ips": [ + "146.70.221.20" + ] + }, + { + "vpn": "openvpn", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "beg-288.windscribe.com", + "ips": [ + "146.70.221.34", + "146.70.221.35" + ] + }, + { + "vpn": "wireguard", + "region": "Serbia", + "city": "Belgrade", + "hostname": "rs-006.whiskergalaxy.com", + "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", + "ips": [ + "146.70.221.36" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-235.windscribe.com", + "ips": [ + "156.146.56.97", + "156.146.56.98" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-006.whiskergalaxy.com", + "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", + "ips": [ + "156.146.56.99" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-235.windscribe.com", + "ips": [ + "156.146.56.110", + "156.146.56.111" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-007.whiskergalaxy.com", + "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", + "ips": [ + "156.146.56.112" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-241.windscribe.com", + "ips": [ + "103.107.198.226", + "103.107.198.227" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-008.whiskergalaxy.com", + "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", + "ips": [ + "103.107.198.228" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-170.windscribe.com", + "ips": [ + "82.102.25.50", + "82.102.25.51" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-010.whiskergalaxy.com", + "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", + "ips": [ + "82.102.25.52" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-170.windscribe.com", + "ips": [ + "82.102.25.210", + "82.102.25.211" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-011.whiskergalaxy.com", + "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", + "ips": [ + "82.102.25.212" + ] + }, + { + "vpn": "openvpn", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sin-241.windscribe.com", + "ips": [ + "103.107.198.242", + "103.107.198.243" + ] + }, + { + "vpn": "wireguard", + "region": "Singapore", + "city": "Singapore", + "hostname": "sg-012.whiskergalaxy.com", + "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", + "ips": [ + "103.107.198.244" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bts-213.windscribe.com", + "ips": [ + "146.70.114.146", + "146.70.114.147" + ] + }, + { + "vpn": "wireguard", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-003.whiskergalaxy.com", + "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", + "ips": [ + "146.70.114.148" + ] + }, + { + "vpn": "openvpn", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bts-213.windscribe.com", + "ips": [ + "146.70.114.162", + "146.70.114.163" + ] + }, + { + "vpn": "wireguard", + "region": "Slovakia", + "city": "Bratislava", + "hostname": "sk-004.whiskergalaxy.com", + "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", + "ips": [ + "146.70.114.164" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.155.133", + "197.242.157.235" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-001.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.157.255" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.155.197", + "197.242.156.53" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-003.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.156.56" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-232.windscribe.com", + "ips": [ + "165.73.248.90", + "165.73.248.91" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-004.whiskergalaxy.com", + "wgpubkey": "stPvzj5yM1z5Qg9H3gMvAKNPJLU0X3SeUSJPg3wqDR8=", + "ips": [ + "165.73.248.92" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-164.windscribe.com", + "ips": [ + "197.242.159.23", + "197.242.159.199" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-006.whiskergalaxy.com", + "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", + "ips": [ + "197.242.159.229" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-232.windscribe.com", + "ips": [ + "108.181.120.26", + "108.181.120.27" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-008.whiskergalaxy.com", + "wgpubkey": "stPvzj5yM1z5Qg9H3gMvAKNPJLU0X3SeUSJPg3wqDR8=", + "ips": [ + "108.181.120.28" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-409.windscribe.com", + "ips": [ + "149.102.248.110", + "149.102.248.111" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-009.whiskergalaxy.com", + "wgpubkey": "YQMr8hKdHeoj5MMeVyUT5NeGshAbN2QmswaqHNrFjn4=", + "ips": [ + "149.102.248.112" + ] + }, + { + "vpn": "openvpn", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jnb-409.windscribe.com", + "ips": [ + "149.102.248.97", + "149.102.248.98" + ] + }, + { + "vpn": "wireguard", + "region": "South Africa", + "city": "Johannesburg", + "hostname": "za-010.whiskergalaxy.com", + "wgpubkey": "YQMr8hKdHeoj5MMeVyUT5NeGshAbN2QmswaqHNrFjn4=", + "ips": [ + "149.102.248.99" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "icn-362.windscribe.com", + "ips": [ + "45.133.194.210", + "45.133.194.211" + ] + }, + { + "vpn": "wireguard", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-009.whiskergalaxy.com", + "wgpubkey": "rtk1/cMCEyJw9xgs6v0ef0rsk2bwi+sI/zgbo+gLkko=", + "ips": [ + "45.133.194.212" + ] + }, + { + "vpn": "openvpn", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "icn-399.windscribe.com", + "ips": [ + "58.120.141.74", + "58.120.141.75" + ] + }, + { + "vpn": "wireguard", + "region": "South Korea", + "city": "Seoul", + "hostname": "kr-010.whiskergalaxy.com", + "wgpubkey": "4LAPQWjzxtuGHyHjij+ZiM3idLe3xY9IiYNFD/V9akM=", + "ips": [ + "58.120.141.76" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bcn-239.windscribe.com", + "ips": [ + "130.195.250.34", + "130.195.250.35" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-007.whiskergalaxy.com", + "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", + "ips": [ + "130.195.250.36" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bcn-239.windscribe.com", + "ips": [ + "130.195.250.18", + "130.195.250.19" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Barcelona", + "hostname": "es-008.whiskergalaxy.com", + "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", + "ips": [ + "130.195.250.20" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Madrid", + "hostname": "es-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mad-115.windscribe.com", + "ips": [ + "82.102.17.130", + "82.102.17.131" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Madrid", + "hostname": "es-005.whiskergalaxy.com", + "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", + "ips": [ + "82.102.17.132" + ] + }, + { + "vpn": "openvpn", + "region": "Spain", + "city": "Madrid", + "hostname": "es-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mad-115.windscribe.com", + "ips": [ + "82.102.17.178", + "82.102.17.179" + ] + }, + { + "vpn": "wireguard", + "region": "Spain", + "city": "Madrid", + "hostname": "es-006.whiskergalaxy.com", + "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", + "ips": [ + "82.102.17.180" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-234.windscribe.com", + "ips": [ + "79.142.76.197", + "79.142.76.198" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-002.whiskergalaxy.com", + "wgpubkey": "P5X43E/SgvnJtbrKnJwLFxqFoZGsCghW2SxlXvfdzm0=", + "ips": [ + "79.142.76.199" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-159.windscribe.com", + "ips": [ + "195.181.166.71", + "195.181.166.129" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-003.whiskergalaxy.com", + "wgpubkey": "HENIT1CTAKjPrhG4s64jPJSzEjtEZPRARxA3amm49WU=", + "ips": [ + "195.181.166.130" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-234.windscribe.com", + "ips": [ + "79.142.77.63", + "79.142.77.64" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-005.whiskergalaxy.com", + "wgpubkey": "P5X43E/SgvnJtbrKnJwLFxqFoZGsCghW2SxlXvfdzm0=", + "ips": [ + "79.142.77.65" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-159.windscribe.com", + "ips": [ + "149.50.216.65", + "149.50.216.66" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-006.whiskergalaxy.com", + "wgpubkey": "HENIT1CTAKjPrhG4s64jPJSzEjtEZPRARxA3amm49WU=", + "ips": [ + "149.50.216.67" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-30.windscribe.com", + "ips": [ + "146.70.242.130", + "146.70.242.131" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-007.whiskergalaxy.com", + "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", + "ips": [ + "146.70.242.132" + ] + }, + { + "vpn": "openvpn", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "arn-30.windscribe.com", + "ips": [ + "146.70.242.146", + "146.70.242.147" + ] + }, + { + "vpn": "wireguard", + "region": "Sweden", + "city": "Stockholm", + "hostname": "se-008.whiskergalaxy.com", + "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", + "ips": [ + "146.70.242.148" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-112.windscribe.com", + "ips": [ + "185.156.175.178", + "185.156.175.179" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-003.whiskergalaxy.com", + "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", + "ips": [ + "185.156.175.180" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-005.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "89.187.165.97", + "89.187.165.98" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-005.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "89.187.165.99" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "84.17.53.1", + "84.17.53.2" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-006.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "84.17.53.3" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-112.windscribe.com", + "ips": [ + "37.120.213.162", + "37.120.213.163" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-008.whiskergalaxy.com", + "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", + "ips": [ + "37.120.213.164" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-317.windscribe.com", + "ips": [ + "169.150.197.161", + "169.150.197.162" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-013.whiskergalaxy.com", + "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", + "ips": [ + "169.150.197.163" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-017.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-264.windscribe.com", + "ips": [ + "141.255.162.194", + "141.255.162.195" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-017.whiskergalaxy.com", + "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", + "ips": [ + "141.255.162.196" + ] + }, + { + "vpn": "openvpn", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "zrh-264.windscribe.com", + "ips": [ + "141.255.162.210", + "141.255.162.211" + ] + }, + { + "vpn": "wireguard", + "region": "Switzerland", + "city": "Zurich", + "hostname": "ch-018.whiskergalaxy.com", + "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", + "ips": [ + "141.255.162.212" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-008.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.29.76", + "103.4.29.77" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-008.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "103.4.29.78" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-009.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.160.11", + "185.189.160.12" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-009.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.160.13" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.30.197", + "185.189.160.27" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-010.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.161.50" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "103.4.30.203", + "185.189.160.32" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-011.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.161.51" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.163.157", + "185.189.163.162" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-012.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.163.176" + ] + }, + { + "vpn": "openvpn", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpe-314.windscribe.com", + "ips": [ + "185.189.163.211", + "185.189.163.214" + ] + }, + { + "vpn": "wireguard", + "region": "Taiwan", + "city": "Taipei", + "hostname": "tw-013.whiskergalaxy.com", + "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", + "ips": [ + "185.189.163.219" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-361.windscribe.com", + "ips": [ + "103.27.203.47", + "103.230.122.176" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-006.whiskergalaxy.com", + "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", + "ips": [ + "103.230.122.177" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-415.windscribe.com", + "ips": [ + "212.80.214.2", + "212.80.214.3" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-007.whiskergalaxy.com", + "wgpubkey": "jPRI236aNThUWlgrP2LY1HKCusk/ZIWiVIIV0u6bShU=", + "ips": [ + "212.80.214.4" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-415.windscribe.com", + "ips": [ + "45.154.27.207", + "45.154.27.3" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-010.whiskergalaxy.com", + "wgpubkey": "jPRI236aNThUWlgrP2LY1HKCusk/ZIWiVIIV0u6bShU=", + "ips": [ + "45.154.27.203" + ] + }, + { + "vpn": "openvpn", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bkk-361.windscribe.com", + "ips": [ + "103.27.203.46", + "116.206.126.48" + ] + }, + { + "vpn": "wireguard", + "region": "Thailand", + "city": "Bangkok", + "hostname": "th-015.whiskergalaxy.com", + "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", + "ips": [ + "116.206.126.49" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-018.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.132.34", + "89.252.132.35" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-018.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.132.36" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-405.windscribe.com", + "ips": [ + "45.136.155.225", + "45.136.155.226" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-020.whiskergalaxy.com", + "wgpubkey": "YQvL8lipIGjEE4qgpjMX3FrG+CnVNFyiGgg3wkvhSw4=", + "ips": [ + "45.136.155.227" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-405.windscribe.com", + "ips": [ + "149.102.229.193", + "149.102.229.194" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-021.whiskergalaxy.com", + "wgpubkey": "YQvL8lipIGjEE4qgpjMX3FrG+CnVNFyiGgg3wkvhSw4=", + "ips": [ + "149.102.229.195" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-029.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.132.18", + "89.252.132.19" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-029.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.132.20" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.133.211", + "89.252.133.212" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-030.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.133.213" + ] + }, + { + "vpn": "openvpn", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-031.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ist-250.windscribe.com", + "ips": [ + "89.252.133.237", + "89.252.133.238" + ] + }, + { + "vpn": "wireguard", + "region": "Turkey", + "city": "Istanbul", + "hostname": "tr-031.whiskergalaxy.com", + "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", + "ips": [ + "89.252.133.239" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.130", + "107.150.31.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-015.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.129.18.130", + "104.129.18.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-020.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.129.18.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-034.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "161.129.70.194", + "161.129.70.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-034.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "161.129.70.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.66", + "107.150.31.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-050.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-070.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.30.194", + "107.150.30.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-070.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.30.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "162.222.198.130", + "162.222.198.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-077.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "162.222.198.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-087.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.223.93.130", + "104.223.93.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-087.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.223.93.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-088.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "155.94.216.130", + "155.94.216.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-088.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "155.94.216.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-089.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "155.94.216.194", + "155.94.216.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-089.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "155.94.216.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-100.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.2", + "107.150.31.3" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-100.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-101.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "107.150.31.194", + "107.150.31.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-101.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "107.150.31.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-103.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-109.windscribe.com", + "ips": [ + "104.223.88.2", + "104.223.88.3" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-103.whiskergalaxy.com", + "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", + "ips": [ + "104.223.88.4" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-107.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "atl-331.windscribe.com", + "ips": [ + "154.47.28.129", + "154.47.28.130" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Atlanta", + "hostname": "us-central-107.whiskergalaxy.com", + "wgpubkey": "v8yTgxOMZjdZkCUoBVMUOiDBYgaNzQ9OfXc+uz2GUDc=", + "ips": [ + "154.47.28.131" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-029.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "198.55.125.194", + "198.55.125.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-029.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "198.55.125.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-036.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "204.44.112.66", + "204.44.112.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-036.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "204.44.112.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-037.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "204.44.112.130", + "204.44.112.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-037.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "204.44.112.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-328.windscribe.com", + "ips": [ + "172.241.115.46", + "172.241.131.129" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-045.whiskergalaxy.com", + "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", + "ips": [ + "172.241.131.130" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-055.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "206.217.139.18", + "206.217.139.19" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-055.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "206.217.139.20" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-328.windscribe.com", + "ips": [ + "172.241.113.18", + "172.241.26.78" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-057.whiskergalaxy.com", + "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", + "ips": [ + "172.241.26.79" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-060.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "198.55.126.130", + "198.55.126.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-060.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "198.55.126.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-067.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "104.223.98.194", + "104.223.98.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-067.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "104.223.98.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-072.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "162.218.120.66", + "162.218.120.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-072.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "162.218.120.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-078.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "155.94.248.66", + "155.94.248.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-078.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "155.94.248.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "192.161.189.130", + "192.161.189.131" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-079.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "192.161.189.132" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-080.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "192.161.188.194", + "192.161.188.195" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-080.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "192.161.188.196" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-081.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-86.windscribe.com", + "ips": [ + "155.94.249.66", + "155.94.249.67" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-081.whiskergalaxy.com", + "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", + "ips": [ + "155.94.249.68" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-095.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "206.217.134.114", + "206.217.134.115" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-095.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "206.217.134.116" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-096.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-192.windscribe.com", + "ips": [ + "23.95.42.210", + "23.95.42.211" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-096.whiskergalaxy.com", + "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", + "ips": [ + "23.95.42.212" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-104.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dfw-414.windscribe.com", + "ips": [ + "149.88.100.65", + "149.88.100.66" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Dallas", + "hostname": "us-central-104.whiskergalaxy.com", + "wgpubkey": "gSj19b2N8kfxHE9SuU2IS+FGZaOlL5p5b3xth9adhHE=", + "ips": [ + "149.88.100.67" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Denver", + "hostname": "us-central-106.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "den-145.windscribe.com", + "ips": [ + "95.173.221.1", + "95.173.221.2" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Denver", + "hostname": "us-central-106.whiskergalaxy.com", + "wgpubkey": "c31sdkhmVsucRVa6nSNNSiZ2UHHLdUhq5gvfdJxSnFw=", + "ips": [ + "95.173.221.3" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-097.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mci-371.windscribe.com", + "ips": [ + "74.80.181.131", + "74.80.181.132" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-097.whiskergalaxy.com", + "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", + "ips": [ + "74.80.181.133" + ] + }, + { + "vpn": "openvpn", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-098.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mci-371.windscribe.com", + "ips": [ + "74.80.181.146", + "74.80.181.147" + ] + }, + { + "vpn": "wireguard", + "region": "US Central", + "city": "Kansas City", + "hostname": "us-central-098.whiskergalaxy.com", + "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", + "ips": [ + "74.80.181.148" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "199.217.105.226", + "199.217.105.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-051.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "199.217.105.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-117.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.40.50.81", + "149.40.50.82" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-117.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.40.50.83" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-118.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.40.50.66", + "149.40.50.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-118.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.40.50.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-123.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "192.34.83.226", + "192.34.83.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-123.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "192.34.83.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-124.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-298.windscribe.com", + "ips": [ + "199.217.104.226", + "199.217.104.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-124.whiskergalaxy.com", + "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", + "ips": [ + "199.217.104.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Boston", + "hostname": "us-east-125.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "bos-408.windscribe.com", + "ips": [ + "149.88.108.1", + "149.88.108.2" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Boston", + "hostname": "us-east-125.whiskergalaxy.com", + "wgpubkey": "kggnERjnDsc9j4BQR+vA4IHsCtJqO1pZtFiXcKESWzw=", + "ips": [ + "149.88.108.3" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "buf-281.windscribe.com", + "ips": [ + "104.168.34.146", + "104.168.34.147" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-045.whiskergalaxy.com", + "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", + "ips": [ + "104.168.34.148" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-065.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "buf-281.windscribe.com", + "ips": [ + "198.12.64.34", + "198.12.64.35" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Buffalo", + "hostname": "us-east-065.whiskergalaxy.com", + "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", + "ips": [ + "198.12.64.36" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "clt-303.windscribe.com", + "ips": [ + "67.21.32.144", + "67.21.32.145" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-040.whiskergalaxy.com", + "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", + "ips": [ + "67.21.32.146" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-100.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "clt-303.windscribe.com", + "ips": [ + "192.158.226.14", + "192.158.226.15" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Charlotte", + "hostname": "us-east-100.whiskergalaxy.com", + "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", + "ips": [ + "192.158.226.16" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.50.226", + "68.235.50.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-015.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.50.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-019.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "23.226.141.194", + "23.226.141.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-019.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "23.226.141.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "167.160.172.2", + "167.160.172.3" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-022.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "167.160.172.4" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "107.150.29.130", + "107.150.29.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-053.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "107.150.29.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-071.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.35.11", + "68.235.35.12" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-071.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.35.13" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "68.235.43.203", + "68.235.43.204" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-077.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "68.235.43.205" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-086.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-63.windscribe.com", + "ips": [ + "208.77.22.99", + "208.77.22.100" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-086.whiskergalaxy.com", + "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", + "ips": [ + "208.77.22.101" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-101.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-130.windscribe.com", + "ips": [ + "107.150.28.130", + "107.150.28.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-101.whiskergalaxy.com", + "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", + "ips": [ + "107.150.28.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-128.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ord-323.windscribe.com", + "ips": [ + "154.47.25.65", + "154.47.25.66" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Chicago", + "hostname": "us-east-128.whiskergalaxy.com", + "wgpubkey": "5LYbbr320XMoXPrLsZex+2cDAMUOnzX5Htpcgb4Uc1c=", + "ips": [ + "154.47.25.67" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-112.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cle-146.windscribe.com", + "ips": [ + "104.244.209.34", + "104.244.209.35" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-112.whiskergalaxy.com", + "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", + "ips": [ + "104.244.209.36" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-114.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "cle-146.windscribe.com", + "ips": [ + "104.244.209.66", + "104.244.209.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Cleveland", + "hostname": "us-east-114.whiskergalaxy.com", + "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", + "ips": [ + "104.244.209.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dtw-368.windscribe.com", + "ips": [ + "104.244.210.50", + "104.244.210.51" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-079.whiskergalaxy.com", + "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", + "ips": [ + "104.244.210.52" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-098.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dtw-368.windscribe.com", + "ips": [ + "104.244.210.242", + "104.244.210.243" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Detroit", + "hostname": "us-east-098.whiskergalaxy.com", + "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", + "ips": [ + "104.244.210.244" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "173.44.36.66", + "173.44.36.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-006.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "173.44.36.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-028.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "104.223.127.194", + "104.223.127.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-028.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "104.223.127.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-067.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-140.windscribe.com", + "ips": [ + "86.106.87.82", + "86.106.87.83" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-067.whiskergalaxy.com", + "wgpubkey": "1S9LgDyVSo2X34ZG8ukQQ7vqL5RpmXszNe0SYNjiUws=", + "ips": [ + "86.106.87.84" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-097.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-206.windscribe.com", + "ips": [ + "173.44.43.130", + "173.44.43.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-097.whiskergalaxy.com", + "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", + "ips": [ + "173.44.43.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Miami", + "hostname": "us-east-129.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mia-326.windscribe.com", + "ips": [ + "149.34.248.65", + "149.34.248.66" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Miami", + "hostname": "us-east-129.whiskergalaxy.com", + "wgpubkey": "makkxzTeghSw9LGaFifz0C251aBeDCKhMmtJ8p0E6Uw=", + "ips": [ + "149.34.248.67" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "162.222.195.66", + "162.222.195.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-020.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "162.222.195.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-054.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "167.160.167.194", + "167.160.167.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-054.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "167.160.167.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-095.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "ewr-181.windscribe.com", + "ips": [ + "173.205.85.162", + "173.205.85.163" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New Jersey", + "hostname": "us-east-095.whiskergalaxy.com", + "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", + "ips": [ + "173.205.85.164" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "185.232.22.194", + "185.232.22.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-013.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "185.232.22.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-031.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "77.81.136.66", + "77.81.136.67" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-031.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "77.81.136.68" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-063.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "92.119.177.82", + "92.119.177.83" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-063.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "92.119.177.84" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-068.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "142.234.200.140", + "142.234.200.176" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-068.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "23.81.64.130" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-074.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-106.windscribe.com", + "ips": [ + "217.138.255.178", + "217.138.255.179" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-074.whiskergalaxy.com", + "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", + "ips": [ + "217.138.255.180" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-116.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-384.windscribe.com", + "ips": [ + "149.102.226.97", + "149.102.226.98" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-116.whiskergalaxy.com", + "wgpubkey": "VB4VC+CyLyFtYO86OsTV4Z17X/sa1t3pPqbJejI/Enc=", + "ips": [ + "149.102.226.99" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-119.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "142.234.204.65", + "142.234.204.1" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-119.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "142.234.204.2" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-120.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-384.windscribe.com", + "ips": [ + "149.88.21.129", + "149.88.21.130" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-120.whiskergalaxy.com", + "wgpubkey": "VB4VC+CyLyFtYO86OsTV4Z17X/sa1t3pPqbJejI/Enc=", + "ips": [ + "149.88.21.131" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "New York", + "hostname": "us-east-127.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "jfk-330.windscribe.com", + "ips": [ + "108.62.49.221", + "23.81.64.209" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "New York", + "hostname": "us-east-127.whiskergalaxy.com", + "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", + "ips": [ + "23.81.64.210" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-052.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mco-336.windscribe.com", + "ips": [ + "198.147.22.186", + "198.147.22.225" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-052.whiskergalaxy.com", + "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", + "ips": [ + "198.147.22.227" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-082.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "mco-336.windscribe.com", + "ips": [ + "66.115.182.130", + "66.115.182.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Orlando", + "hostname": "us-east-082.whiskergalaxy.com", + "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", + "ips": [ + "66.115.182.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-061.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-348.windscribe.com", + "ips": [ + "23.172.112.226", + "23.172.112.227" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-061.whiskergalaxy.com", + "wgpubkey": "oZSSjyLgPsssnrWYUZYiU5x1wF4wuuENQUoY5S4oeHc=", + "ips": [ + "23.172.112.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-121.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-413.windscribe.com", + "ips": [ + "23.148.146.178", + "23.146.243.194" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-121.whiskergalaxy.com", + "wgpubkey": "1Fy3ynW7Y8y0VTKH/J2IP5ETlXF/ATneNmZDhydyvxA=", + "ips": [ + "23.146.243.195" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-122.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phl-413.windscribe.com", + "ips": [ + "23.148.146.179", + "23.146.243.210" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Philadelphia", + "hostname": "us-east-122.whiskergalaxy.com", + "wgpubkey": "1Fy3ynW7Y8y0VTKH/J2IP5ETlXF/ATneNmZDhydyvxA=", + "ips": [ + "23.146.243.211" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-113.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sbn-388.windscribe.com", + "ips": [ + "74.80.180.194", + "74.80.180.195" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-113.whiskergalaxy.com", + "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", + "ips": [ + "74.80.180.196" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-115.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sbn-388.windscribe.com", + "ips": [ + "74.80.180.178", + "74.80.180.179" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "South Bend", + "hostname": "us-east-115.whiskergalaxy.com", + "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", + "ips": [ + "74.80.180.180" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Tampa", + "hostname": "us-east-110.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "tpa-349.windscribe.com", + "ips": [ + "38.95.13.130", + "38.95.13.131" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Tampa", + "hostname": "us-east-110.whiskergalaxy.com", + "wgpubkey": "jqf7HHmkBdzk1kkGLD20O/EzLHSFV2Bc7z4MeHcP7iA=", + "ips": [ + "38.95.13.132" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-089.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.247", + "198.7.56.226" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-089.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "198.7.56.228" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-090.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.248", + "198.7.56.231" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-090.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "207.244.91.131" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-092.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.232", + "207.244.91.143" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-092.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "207.244.91.144" + ] + }, + { + "vpn": "openvpn", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-093.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "was-324.windscribe.com", + "ips": [ + "198.7.56.230", + "198.7.56.238" + ] + }, + { + "vpn": "wireguard", + "region": "US East", + "city": "Washington DC", + "hostname": "us-east-093.whiskergalaxy.com", + "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", + "ips": [ + "198.7.56.239" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Bend", + "hostname": "us-west-038.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pdx-302.windscribe.com", + "ips": [ + "104.152.222.32", + "104.152.222.33" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Bend", + "hostname": "us-west-038.whiskergalaxy.com", + "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", + "ips": [ + "104.152.222.34" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Bend", + "hostname": "us-west-072.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "pdx-302.windscribe.com", + "ips": [ + "104.255.169.109", + "104.255.169.110" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Bend", + "hostname": "us-west-072.whiskergalaxy.com", + "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", + "ips": [ + "104.255.169.111" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-075.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "las-183.windscribe.com", + "ips": [ + "37.120.147.146", + "37.120.147.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-075.whiskergalaxy.com", + "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", + "ips": [ + "37.120.147.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-076.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "las-183.windscribe.com", + "ips": [ + "82.102.31.146", + "82.102.31.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Las Vegas", + "hostname": "us-west-076.whiskergalaxy.com", + "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", + "ips": [ + "82.102.31.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "185.236.200.34", + "185.236.200.35" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-004.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "185.236.200.36" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "216.45.53.130", + "216.45.53.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-015.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "216.45.53.132" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-027.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "212.103.49.66", + "212.103.49.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-027.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "212.103.49.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-040.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "89.187.185.33", + "89.187.185.34" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-040.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "89.187.185.35" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-044.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-321.windscribe.com", + "ips": [ + "192.3.20.50", + "192.3.20.51" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-044.whiskergalaxy.com", + "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", + "ips": [ + "192.3.20.52" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-047.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-327.windscribe.com", + "ips": [ + "23.19.68.138", + "172.241.214.202" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-047.whiskergalaxy.com", + "wgpubkey": "sgBIEKuocQBegrbXRmTVl6QvbhdXj2MQlIrhfEMf3RQ=", + "ips": [ + "172.241.214.203" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-055.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.3.66", + "104.129.3.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-055.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.3.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-059.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.3.162", + "104.129.3.163" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-059.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.3.164" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-060.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "217.138.217.50", + "217.138.217.51" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-060.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "217.138.217.52" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-063.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-321.windscribe.com", + "ips": [ + "198.23.242.146", + "198.23.242.147" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-063.whiskergalaxy.com", + "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", + "ips": [ + "198.23.242.148" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-065.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-107.windscribe.com", + "ips": [ + "217.138.217.210", + "217.138.217.211" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-065.whiskergalaxy.com", + "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", + "ips": [ + "217.138.217.212" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-066.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "89.187.187.97", + "89.187.187.98" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-066.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "89.187.187.99" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-069.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-310.windscribe.com", + "ips": [ + "185.152.67.225", + "185.152.67.226" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-069.whiskergalaxy.com", + "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", + "ips": [ + "185.152.67.227" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-070.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lax-180.windscribe.com", + "ips": [ + "104.129.4.66", + "104.129.4.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Los Angeles", + "hostname": "us-west-070.whiskergalaxy.com", + "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", + "ips": [ + "104.129.4.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-046.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phx-325.windscribe.com", + "ips": [ + "23.83.129.72", + "23.83.130.166" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-046.whiskergalaxy.com", + "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", + "ips": [ + "23.83.130.167" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-061.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "phx-325.windscribe.com", + "ips": [ + "23.83.129.65", + "23.83.131.187" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Phoenix", + "hostname": "us-west-061.whiskergalaxy.com", + "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", + "ips": [ + "23.83.184.129" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-048.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "172.241.250.137", + "172.241.250.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-048.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "172.241.250.171" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-053.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "209.58.129.83", + "209.58.129.121" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-053.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "209.58.129.122" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-054.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sfo-329.windscribe.com", + "ips": [ + "209.58.129.88", + "172.255.125.141" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Francisco", + "hostname": "us-west-054.whiskergalaxy.com", + "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", + "ips": [ + "172.255.125.161" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-078.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-337.windscribe.com", + "ips": [ + "149.50.212.206", + "149.50.212.207" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-078.whiskergalaxy.com", + "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", + "ips": [ + "149.50.212.208" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-079.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-337.windscribe.com", + "ips": [ + "149.50.212.193", + "149.50.212.194" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "San Jose", + "hostname": "us-west-079.whiskergalaxy.com", + "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", + "ips": [ + "149.50.212.195" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-050.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-333.windscribe.com", + "ips": [ + "167.88.60.226", + "167.88.60.227" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-050.whiskergalaxy.com", + "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", + "ips": [ + "167.88.60.228" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-051.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sjc-333.windscribe.com", + "ips": [ + "167.88.60.242", + "167.88.60.243" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Santa Clara", + "hostname": "us-west-051.whiskergalaxy.com", + "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", + "ips": [ + "167.88.60.244" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-043.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-221.windscribe.com", + "ips": [ + "23.94.74.98", + "23.94.74.99" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-043.whiskergalaxy.com", + "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", + "ips": [ + "23.94.74.100" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-056.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.66", + "104.129.56.67" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-056.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.68" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-057.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.130", + "104.129.56.131" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-057.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.132" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-062.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-221.windscribe.com", + "ips": [ + "198.12.116.194", + "198.12.116.195" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-062.whiskergalaxy.com", + "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", + "ips": [ + "198.12.116.196" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-071.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-290.windscribe.com", + "ips": [ + "104.129.56.2", + "104.129.56.3" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-071.whiskergalaxy.com", + "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", + "ips": [ + "104.129.56.4" + ] + }, + { + "vpn": "openvpn", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-077.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "sea-182.windscribe.com", + "ips": [ + "149.22.88.65", + "149.22.88.66" + ] + }, + { + "vpn": "wireguard", + "region": "US West", + "city": "Seattle", + "hostname": "us-west-077.whiskergalaxy.com", + "wgpubkey": "mPzcl2obsDyjjBl4tExF+gSle0jEhv9bHRZEi8D0PQA=", + "ips": [ + "149.22.88.67" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kbp-383.windscribe.com", + "ips": [ + "37.19.218.1", + "37.19.218.2" + ] + }, + { + "vpn": "wireguard", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-010.whiskergalaxy.com", + "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", + "ips": [ + "37.19.218.3" + ] + }, + { + "vpn": "openvpn", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "kbp-383.windscribe.com", + "ips": [ + "37.19.218.15", + "37.19.218.16" + ] + }, + { + "vpn": "wireguard", + "region": "Ukraine", + "city": "Kyiv", + "hostname": "ua-011.whiskergalaxy.com", + "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", + "ips": [ + "37.19.218.17" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dxb-304.windscribe.com", + "ips": [ + "146.70.191.98", + "146.70.191.99" + ] + }, + { + "vpn": "wireguard", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-002.whiskergalaxy.com", + "wgpubkey": "TKpGTxyjCr7+CiVhaYulaLZ7pnXEsg4135ZIlz99qwc=", + "ips": [ + "146.70.191.100" + ] + }, + { + "vpn": "openvpn", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "dxb-304.windscribe.com", + "ips": [ + "146.70.191.194", + "146.70.191.195" + ] + }, + { + "vpn": "wireguard", + "region": "United Arab Emirates", + "city": "Dubai", + "hostname": "ae-003.whiskergalaxy.com", + "wgpubkey": "TKpGTxyjCr7+CiVhaYulaLZ7pnXEsg4135ZIlz99qwc=", + "ips": [ + "146.70.191.196" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-026.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.242", + "193.36.118.243" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-026.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.244" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-030.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.226", + "193.36.118.227" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-030.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.228" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-043.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "edi-369.windscribe.com", + "ips": [ + "193.36.118.210", + "193.36.118.211" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Edinburgh", + "hostname": "uk-043.whiskergalaxy.com", + "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", + "ips": [ + "193.36.118.212" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "185.212.168.132", + "185.212.168.133" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-007.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "185.212.168.134" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-020.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.1", + "212.102.63.2" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-020.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.3" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-021.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.31", + "212.102.63.32" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-021.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.33" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-022.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "212.102.63.61", + "212.102.63.62" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-022.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "212.102.63.63" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-024.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "217.138.254.50", + "217.138.254.51" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-024.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "217.138.254.52" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-033.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-171.windscribe.com", + "ips": [ + "146.70.95.114", + "146.70.95.115" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-033.whiskergalaxy.com", + "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", + "ips": [ + "146.70.95.116" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-036.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-341.windscribe.com", + "ips": [ + "84.17.50.193", + "84.17.50.194" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-036.whiskergalaxy.com", + "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", + "ips": [ + "84.17.50.195" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-042.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-335.windscribe.com", + "ips": [ + "5.252.69.4", + "202.43.6.34" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "London", + "hostname": "uk-042.whiskergalaxy.com", + "wgpubkey": "qWSr7Tf40kvS+0kv4TbpSb6EevhSvn3kuXsjn2eWbA4=", + "ips": [ + "202.43.6.35" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-044.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.18", + "37.120.233.19" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-044.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.20" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-045.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.34", + "37.120.233.35" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-045.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.36" + ] + }, + { + "vpn": "openvpn", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-046.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "man-126.windscribe.com", + "ips": [ + "37.120.233.50", + "37.120.233.51" + ] + }, + { + "vpn": "wireguard", + "region": "United Kingdom", + "city": "Manchester", + "hostname": "uk-046.whiskergalaxy.com", + "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", + "ips": [ + "37.120.233.52" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "han-122.windscribe.com", + "ips": [ + "103.9.79.185", + "103.9.79.186" + ] + }, + { + "vpn": "wireguard", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-002.whiskergalaxy.com", + "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", + "ips": [ + "103.9.79.187" + ] + }, + { + "vpn": "openvpn", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "han-122.windscribe.com", + "ips": [ + "103.9.79.218", + "103.9.79.219" + ] + }, + { + "vpn": "wireguard", + "region": "Vietnam", + "city": "Hanoi", + "hostname": "vn-004.whiskergalaxy.com", + "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", + "ips": [ + "103.9.79.220" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-003.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-292.windscribe.com", + "ips": [ + "149.57.28.10", + "149.57.28.49" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-003.whiskergalaxy.com", + "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", + "ips": [ + "149.57.28.50" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-004.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "yyz-292.windscribe.com", + "ips": [ + "104.254.92.98", + "104.254.92.99" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX CA", + "city": "Toronto", + "hostname": "wf-ca-004.whiskergalaxy.com", + "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", + "ips": [ + "104.254.92.100" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX JP", + "city": "Tokyo", + "hostname": "wf-jp-002.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "hnd-291.windscribe.com", + "ips": [ + "103.135.244.3", + "5.181.235.67" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX JP", + "city": "Tokyo", + "hostname": "wf-jp-002.whiskergalaxy.com", + "wgpubkey": "RDqLEpYi8AT8yjjNQP12tsBvGxPekebtT0SC+gk2oAw=", + "ips": [ + "5.181.235.68" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-001.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "45.9.248.2", + "45.9.248.3" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-001.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "45.9.248.4" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-006.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "81.92.200.84", + "81.92.200.85" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-006.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "81.92.200.86" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-007.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "lhr-185.windscribe.com", + "ips": [ + "89.47.62.82", + "89.47.62.83" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX UK", + "city": "London", + "hostname": "wf-uk-007.whiskergalaxy.com", + "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", + "ips": [ + "89.47.62.84" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-010.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "146.70.25.2", + "146.70.25.3" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-010.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "146.70.25.4" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-011.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "146.70.25.66", + "146.70.25.67" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-011.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "146.70.25.68" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-012.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "185.232.22.130", + "185.232.22.131" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-012.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "185.232.22.132" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-013.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "217.138.206.210", + "217.138.206.211" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-013.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "217.138.206.212" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-014.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "77.81.136.98", + "77.81.136.99" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-014.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "77.81.136.100" + ] + }, + { + "vpn": "openvpn", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-015.whiskergalaxy.com", + "tcp": true, + "udp": true, + "x509": "wfus-178.windscribe.com", + "ips": [ + "38.132.101.210", + "38.132.101.211" + ] + }, + { + "vpn": "wireguard", + "region": "WINDFLIX US", + "city": "New York", + "hostname": "wf-us-015.whiskergalaxy.com", + "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", + "ips": [ + "38.132.101.212" + ] + } + ] + } +} diff --git a/invidious/invidious-vpn/haproxy.cfg b/invidious/invidious-vpn/haproxy.cfg new file mode 100644 index 0000000..55714dd --- /dev/null +++ b/invidious/invidious-vpn/haproxy.cfg @@ -0,0 +1,43 @@ +global + # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom + maxconn 8192 + # 777 perms for all sockets + unix-bind mode 777 + stats socket ipv4@0.0.0.0:8405 level admin + +resolvers docker + # To be able to use multiple replicas of invidious + # using domains + nameserver dns1 127.0.0.11:53 + +defaults + mode http + # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ + # Use another server if one takes too long to reply + retries 2 + option redispatch + timeout client 30s + timeout connect 30s + timeout server 120s + timeout queue 10s + http-reuse always + +# Prometheus for graphs +frontend prometheus + bind *:8404 + mode http + http-request use-service prometheus-exporter if { path /metrics } + no log + +frontend invidious + bind *:8001 + default_backend invidious + +backend invidious + balance roundrobin + server invidious-1-vpn gluetun:3000 check init-addr libc,none + server invidious-2-vpn gluetun:3001 check init-addr libc,none + server invidious-3-vpn gluetun:3002 check init-addr libc,none + server invidious-4-vpn gluetun:3003 check init-addr libc,none + server invidious-5-vpn gluetun:3004 check init-addr libc,none + server invidious-6-vpn gluetun:3005 check init-addr libc,none diff --git a/invidious/invidious-vpn/haproxy/haproxy.cfg b/invidious/invidious-vpn/haproxy/haproxy.cfg deleted file mode 100644 index 4cbb8a6..0000000 --- a/invidious/invidious-vpn/haproxy/haproxy.cfg +++ /dev/null @@ -1,149 +0,0 @@ -global - # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom - maxconn 16384 - # 777 perms for all sockets - unix-bind mode 777 - stats socket ipv4@0.0.0.0:8405 level admin - -resolvers docker - # To be able to use multiple replicas of invidious - # using domains - nameserver dns1 127.0.0.11:53 - -defaults - mode http - # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ - # Use another server if one takes too long to reply - retries 2 - option redispatch - timeout client 30s - timeout connect 5s - timeout server 30s - timeout queue 10s - http-reuse always - -# Prometheus for graphs -frontend prometheus - bind *:8404 - mode http - http-request use-service prometheus-exporter if { path /metrics } - no log - -frontend stats - mode http - bind *:8405 - stats enable - stats uri /stats - stats refresh 1s - stats admin if TRUE - -cache invidious-thumbnail-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 30min - max-age 1800 - process-vary on - -cache invidious-ggpht-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 1h - max-age 3600 - process-vary on - -cache invidious-sb-cache - # 128MB - total-max-size 128 - # 128kB - max-object-size 131072 - # 1h - max-age 86400 - process-vary on - -frontend invidious - http-request set-var(txn.ipath) path - bind *:8001 - default_backend invidious - -frontend invidious-tor - http-request set-var(txn.ipath) path - bind *:8002 - default_backend invidious-tor - -frontend invidious-i2p - http-request set-var(txn.ipath) path - bind *:8003 - default_backend invidious-i2p - -frontend http3-proxy - http-request set-var(txn.hpath) path - bind *:8004 - default_backend http3-proxy - -backend invidious - balance roundrobin - - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-1-vpn gluetun:3000 check init-addr libc,none - server invidious-2-vpn gluetun:3001 check init-addr libc,none - server invidious-3-vpn gluetun:3002 check init-addr libc,none - server invidious-4-vpn gluetun:3003 check init-addr libc,none - server invidious-5-vpn gluetun:3004 check init-addr libc,none - server invidious-6-vpn gluetun:3005 check init-addr libc,none - -backend invidious-tor - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-tor-vpn gluetun:3010 check init-addr libc,none - -backend invidious-i2p - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server invidious-i2p-vpn gluetun:3011 check init-addr libc,none - -backend http3-proxy - # Caches video thumbnails, profile pictures and others - http-request cache-use invidious-thumbnail-cache if { path_beg /vi/ } - http-response cache-store invidious-thumbnail-cache - http-request cache-use invidious-ggpht-cache if { path_beg /ggpht/ } - http-response cache-store invidious-ggpht-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl youtube_thumbnails var(txn.hpath) -m beg /vi/ - acl youtube_ggpht var(txn.hpath) -m beg /ggpht/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_ggpht - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_ggpht - - server http3-proxy-1-vpn gluetun:8080 check init-addr libc,none diff --git a/invidious/invidious/docker-compose.yml b/invidious/invidious/docker-compose.yml index 6ba6a61..3b79a30 100644 --- a/invidious/invidious/docker-compose.yml +++ b/invidious/invidious/docker-compose.yml @@ -1,23 +1,27 @@ -# Docker compose file for inv.nadeko.net +# Docker compose file for Backend 1 of inv.nadeko.net services: # INVIDIOUS CLEARNET invidious: env_file: + # Env file containing variables like TAG, INV_MEM_* - .env + # Env file containing INVIDIOUS_* variables + - ../.env image: "git.nadeko.net/fijxu/invidious:${TAG}" restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" + mem_limit: ${INV_MEM_LIMIT} + mem_reservation: ${INV_MEM_RESERVATION} + cpus: ${INV_CPU} # Limit to X% of the CPU deploy: - replicas: 6 + replicas: 4 volumes: - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - ./config.yml:/etc/invidious/config.yml:ro environment: INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" depends_on: - - inv_sig_helper + # - inv_sig_helper - haproxy healthcheck: test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 @@ -26,76 +30,78 @@ services: retries: 2 # INVIDIOUS TOR - invidious-tor: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - deploy: - replicas: 2 - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 + # invidious-tor: + # env_file: + # - .env + # - ../.env + # - ../.env-tor-i2p + # image: "git.nadeko.net/fijxu/invidious:${TAG}" + # restart: unless-stopped + # mem_limit: "${INV_MEM_LIMIT}" + # mem_reservation: "${INV_MEM_RESERVATION}" + # volumes: + # - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw + # - ./config.yml:/etc/invidious/config.yml:ro + # environment: + # INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" + # INVIDIOUS_DOMAIN: "inv.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion" + # INVIDIOUS_HTTPS_ONLY: false + # INVIDIOUS_HSTS: false + # depends_on: + # # - inv_sig_helper + # - haproxy + # healthcheck: + # test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 + # interval: 300s + # timeout: 5s + # retries: 2 # INVIDIOUS I2P - invidious-i2p: - env_file: - - .env - image: "git.nadeko.net/fijxu/invidious:${TAG}" - restart: unless-stopped - mem_limit: "${INV_MEM_LIMIT}" - mem_reservation: "${INV_MEM_RESERVATION}" - deploy: - replicas: 2 - volumes: - - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw - - ./config.yml:/etc/invidious/config.yml:ro - environment: - INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" - INVIDIOUS_DOMAIN: "inv.zzls.i2p" - INVIDIOUS_HTTPS_ONLY: false - INVIDIOUS_HSTS: false - depends_on: - - inv_sig_helper - - haproxy - healthcheck: - test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 - interval: 300s - timeout: 5s - retries: 2 - + # invidious-i2p: + # env_file: + # - .env + # - ../.env + # - ../.env-tor-i2p + # image: "git.nadeko.net/fijxu/invidious:${TAG}" + # restart: unless-stopped + # mem_limit: "${INV_MEM_LIMIT}" + # mem_reservation: "${INV_MEM_RESERVATION}" + # volumes: + # - /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw + # - ./config.yml:/etc/invidious/config.yml:ro + # environment: + # INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml" + # INVIDIOUS_DOMAIN: "inv.zzls.i2p" + # INVIDIOUS_HTTPS_ONLY: false + # INVIDIOUS_HSTS: false + # depends_on: + # # - inv_sig_helper + # - haproxy + # healthcheck: + # test: wget -nv --tries=1 --spider https://inv.nadeko.net/watch?v=mcYLzu_1cNc || exit 1 + # interval: 300s + # timeout: 5s + # retries: 2 + # # SIGNATURE HELPER - inv_sig_helper: - image: git.nadeko.net/fijxu/inv_sig_helper:latest - restart: unless-stopped - mem_limit: "512m" - init: true - command: ["--tcp", "0.0.0.0:12999"] - environment: - - RUST_LOG=info + # inv_sig_helper: + # image: git.nadeko.net/fijxu/inv_sig_helper:latest + # restart: unless-stopped + # mem_limit: "512m" + # init: true + # command: ["--tcp", "0.0.0.0:12999"] + # environment: + # - RUST_LOG=info - http3-proxy: - image: git.nadeko.net/fijxu/http3-proxy:latest - restart: unless-stopped - ports: - - "127.0.0.1:10061:8080" - environment: - DISABLE_WEBP: 1 + # http3-proxy: + # image: git.nadeko.net/fijxu/http3-ytproxy:latest + # restart: unless-stopped + # volumes: + # - /run/http3-proxy:/tmp:rw + # ports: + # - "127.0.0.1:10061:8080" + # environment: + # DISABLE_WEBP: 1 # Without depends because haproxy is smart haproxy: @@ -115,7 +121,17 @@ services: # STATS - "127.0.0.1:10065:8405" volumes: - - ./haproxy:/usr/local/etc/haproxy + - ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg + + ptgen: + image: git.nadeko.net/fijxu/youtube-po-token-generator:latest + cpus: 0.1 + restart: unless-stopped + environment: + - HOST=valkey + - RENEW_INTERVAL=60 + depends_on: + - haproxy networks: default: diff --git a/invidious/invidious/haproxy.cfg b/invidious/invidious/haproxy.cfg new file mode 100644 index 0000000..83c751c --- /dev/null +++ b/invidious/invidious/haproxy.cfg @@ -0,0 +1,39 @@ +global + # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom + maxconn 8192 + # 777 perms for all sockets + unix-bind mode 777 + stats socket ipv4@0.0.0.0:8405 level admin + +resolvers docker + # To be able to use multiple replicas of invidious + # using domains + nameserver dns1 127.0.0.11:53 + +defaults + mode http + # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ + # Use another server if one takes too long to reply + retries 2 + option redispatch + timeout client 30s + timeout connect 30s + timeout server 120s + timeout queue 10s + http-reuse always + +# Prometheus for graphs +frontend prometheus + bind *:8404 + mode http + http-request use-service prometheus-exporter if { path /metrics } + no log + +frontend invidious + bind *:8001 + default_backend invidious + +backend invidious + balance roundrobin + server-template invidious 8 invidious:3000 check resolvers docker init-addr libc,none + diff --git a/invidious/invidious/haproxy/haproxy.cfg b/invidious/invidious/haproxy/haproxy.cfg deleted file mode 100644 index 4f82532..0000000 --- a/invidious/invidious/haproxy/haproxy.cfg +++ /dev/null @@ -1,123 +0,0 @@ -global - # This because haproxy is dumb and likes to use the maxconnection from the kernel and that is super mega huge making haproxy oom - maxconn 16384 - # 777 perms for all sockets - unix-bind mode 777 - stats socket ipv4@0.0.0.0:8405 level admin - -resolvers docker - # To be able to use multiple replicas of invidious - # using domains - nameserver dns1 127.0.0.11:53 - -defaults - mode http - # https://www.haproxy.com/documentation/haproxy-configuration-tutorials/service-reliability/retries/ - # Use another server if one takes too long to reply - retries 2 - option redispatch - timeout client 30s - timeout connect 5s - timeout server 30s - timeout queue 10s - http-reuse always - -# Prometheus for graphs -frontend prometheus - bind *:8404 - mode http - http-request use-service prometheus-exporter if { path /metrics } - no log - -frontend stats - mode http - bind *:8405 - stats enable - stats uri /stats - stats refresh 1s - stats admin if TRUE - -cache invidious-thumbnail-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 30min - max-age 1800 - process-vary on - -cache invidious-ggpht-cache - # 96MB - total-max-size 96 - # 32kB - max-object-size 32768 - # 30min - max-age 3600 - process-vary on - -cache invidious-sb-cache - # 128MB - total-max-size 128 - # 128kB - max-object-size 131072 - # 1h - max-age 86400 - process-vary on - -frontend invidious - http-request set-var(txn.ipath) path - bind *:8001 - default_backend invidious - -frontend invidious-tor - bind *:8002 - default_backend invidious-tor - -frontend invidious-i2p - bind *:8003 - default_backend invidious-i2p - -frontend http3-proxy - http-request set-var(txn.path) path - bind *:8004 - default_backend http3-proxy - -backend invidious - balance roundrobin - - # Caches video storyboards - http-request cache-use invidious-sb-cache if { path_beg /sb/ } - http-response cache-store invidious-sb-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl sb var(txn.ipath) -m beg /sb/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } sb - http-response set-header X-Cache-Status MISS if { srv_id -m found } sb - - server-template invidious 8 invidious:3000 check resolvers docker init-addr libc,none - -backend invidious-tor - server-template invidious-tor 2 invidious-tor:3000 check resolvers docker init-addr libc,none - -backend invidious-i2p - server-template invidious-i2p 2 invidious-i2p:3000 check resolvers docker init-addr libc,none - -backend http3-proxy - # Caches video thumbnails, profile pictures and others - http-request cache-use invidious-thumbnail-cache if { path_beg /vi/ } - http-response cache-store invidious-thumbnail-cache - http-request cache-use invidious-ggpht-cache if { path_beg /ggpht/ } - http-response cache-store invidious-ggpht-cache - - # https://discourse.haproxy.org/t/http-response-set-header-with-condition-not-working/3108 - acl youtube_thumbnails var(txn.path) -m beg /vi/ - acl youtube_ggpht var(txn.path) -m beg /ggpht/ - - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_thumbnails - http-response set-header X-Cache-Status HIT if !{ srv_id -m found } youtube_ggpht - http-response set-header X-Cache-Status MISS if { srv_id -m found } youtube_ggpht - - server http3-proxy-1 http3-proxy:8080 check resolvers docker init-addr libc,none - server http3-proxy-2 http3-proxy:8080 check resolvers docker init-addr libc,none diff --git a/invidious/reload-config.sh b/invidious/reload-config.sh new file mode 100755 index 0000000..a79a1f7 --- /dev/null +++ b/invidious/reload-config.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +docker compose --file /home/services/invidious/invidious/docker-compose.yml kill -s HUP invidious invidious-tor +docker compose --file /home/services/invidious/invidious-vpn/docker-compose.yml kill -s HUP invidious invidious-2 invidious-3 invidious-4 invidious-tor ptgen +docker compose --file /home/services/invidious/invidious-vpn-2/docker-compose.yml kill -s HUP invidious invidious-2 invidious-3 invidious-4 invidious-tor ptgen +docker compose --file /home/services/invidious/invidious-external/docker-compose.yml kill -s HUP invidious invidious-tor diff --git a/invidious/restart-all-backends.sh b/invidious/restart-all-backends.sh new file mode 100755 index 0000000..a94ba7d --- /dev/null +++ b/invidious/restart-all-backends.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +docker compose --file /home/services/invidious/invidious/docker-compose.yml up -d --force-recreate invidious --remove-orphans +docker compose --file /home/services/invidious/invidious-vpn/docker-compose.yml up -d --force-recreate invidious invidious-2 invidious-3 invidious-4 ptgen --remove-orphans +docker compose --file /home/services/invidious/invidious-vpn-2/docker-compose.yml up -d --force-recreate invidious invidious-2 invidious-3 invidious-4 ptgen --remove-orphans +docker compose --file /home/services/invidious/invidious-external/docker-compose.yml up -d --force-recreate invidious --remove-orphans